Lines Matching refs:msgid
111 zend_string *msgid; in PHP_FUNCTION() local
114 Z_PARAM_STR(msgid) in PHP_FUNCTION()
117 PHP_GETTEXT_LENGTH_CHECK(1, ZSTR_LEN(msgid)) in PHP_FUNCTION()
118 msgstr = gettext(ZSTR_VAL(msgid)); in PHP_FUNCTION()
120 if (msgstr != ZSTR_VAL(msgid)) { in PHP_FUNCTION()
123 RETURN_STR_COPY(msgid); in PHP_FUNCTION()
132 zend_string *domain, *msgid; in PHP_FUNCTION() local
136 Z_PARAM_STR(msgid) in PHP_FUNCTION()
140 PHP_GETTEXT_LENGTH_CHECK(2, ZSTR_LEN(msgid)) in PHP_FUNCTION()
142 msgstr = dgettext(ZSTR_VAL(domain), ZSTR_VAL(msgid)); in PHP_FUNCTION()
144 if (msgstr != ZSTR_VAL(msgid)) { in PHP_FUNCTION()
147 RETURN_STR_COPY(msgid); in PHP_FUNCTION()
156 zend_string *domain, *msgid; in PHP_FUNCTION() local
161 Z_PARAM_STR(msgid) in PHP_FUNCTION()
166 PHP_GETTEXT_LENGTH_CHECK(2, ZSTR_LEN(msgid)) in PHP_FUNCTION()
169 msgstr = dcgettext(ZSTR_VAL(domain), ZSTR_VAL(msgid), category); in PHP_FUNCTION()
171 if (msgstr != ZSTR_VAL(msgid)) { in PHP_FUNCTION()
174 RETURN_STR_COPY(msgid); in PHP_FUNCTION()