/php-src/ext/standard/tests/strings/ |
H A D | setlocale_error.phpt | 16 echo "\n-- Testing setlocale() function with invalid locale array, 'category' = LC_ALL --\n"; 21 echo "\n-- Testing setlocale() function with invalid multiple locales, 'category' = LC_ALL --\n"; 25 echo "\n-- Testing setlocale() function with locale name too long, 'category' = LC_ALL --"; 34 -- Testing setlocale() function with invalid locale array, 'category' = LC_ALL -- 37 -- Testing setlocale() function with invalid multiple locales, 'category' = LC_ALL -- 40 -- Testing setlocale() function with locale name too long, 'category' = LC_ALL --
|
H A D | bug68636.phpt | 2 Bug #68636 (setlocale no longer returns current value per category).
|
H A D | setlocale_variation3.phpt | 31 echo "Setting system locale, category = LC_ALL and locale = 0\n"; 97 Setting system locale, category = LC_ALL and locale = 0
|
H A D | setlocale_variation4.phpt | 30 echo "Setting system locale, category = LC_ALL and locale = null\n"; 95 Setting system locale, category = LC_ALL and locale = null
|
H A D | setlocale_variation5.phpt | 32 echo "Setting system locale, category = LC_ALL and locale = \"\"\n"; 99 Setting system locale, category = LC_ALL and locale = ""
|
H A D | setlocale_basic3.phpt | 62 …echo "-- Testing setlocale() by giving 'category' as LC_ALL & multiple locales(en_US.utf8, Ko_KR.u… 88 -- Testing setlocale() by giving 'category' as LC_ALL & multiple locales(en_US.utf8, Ko_KR.utf8, zh…
|
H A D | setlocale_variation1.phpt | 61 …echo "-- Testing setlocale() by giving 'category' as LC_ALL & multiple locales(en_US.invalid, en_U… 87 -- Testing setlocale() by giving 'category' as LC_ALL & multiple locales(en_US.invalid, en_US.utf8,…
|
H A D | setlocale_basic2.phpt | 85 echo "-- Testing setlocale() : 'category' argument as LC_ALL & 'locale' argument as an array --\n"; 114 -- Testing setlocale() : 'category' argument as LC_ALL & 'locale' argument as an array --
|
/php-src/ext/gettext/ |
H A D | gettext.c | 68 #define PHP_DCGETTEXT_CATEGORY_CHECK(_arg_num, category) \ argument 69 if (category == LC_ALL) { \ 157 zend_long category; in PHP_FUNCTION() local 162 Z_PARAM_LONG(category) in PHP_FUNCTION() 167 PHP_DCGETTEXT_CATEGORY_CHECK(3, category) in PHP_FUNCTION() 169 msgstr = dcgettext(ZSTR_VAL(domain), ZSTR_VAL(msgid), category); in PHP_FUNCTION() 269 zend_long count, category; in PHP_FUNCTION() local 278 Z_PARAM_LONG(category) in PHP_FUNCTION() 284 PHP_DCGETTEXT_CATEGORY_CHECK(5, category) in PHP_FUNCTION() 286 msgstr = dcngettext(ZSTR_VAL(domain), ZSTR_VAL(msgid1), ZSTR_VAL(msgid2), count, category); in PHP_FUNCTION()
|
H A D | gettext.stub.php | 18 function dcgettext(string $domain, string $message, int $category): string {} argument 35 function dcngettext(string $domain, string $singular, string $plural, int $count, int $category): s… argument
|
H A D | gettext_arginfo.h | 22 ZEND_ARG_TYPE_INFO(0, category, IS_LONG, 0) 53 ZEND_ARG_TYPE_INFO(0, category, IS_LONG, 0)
|
/php-src/ext/dom/tests/ |
H A D | DOMAttr_name_basic_001.phpt | 10 $attr = new DOMAttr('category', 'books'); 14 category
|
H A D | DOMAttr_value_basic_001.phpt | 10 $attr = new DOMAttr('category');
|
H A D | DOMAttr_value_basic_002.phpt | 10 $attr = new DOMAttr('category');
|
H A D | gh14652.phpt | 9 $attr = new DOMAttr('category', 'books');
|
H A D | DOMAttr_ownerElement_error_001.phpt | 14 $attr = $root->setAttribute('category', 'books');
|
/php-src/ext/gettext/tests/ |
H A D | dcgettext_lcall.phpt | 20 dcgettext(): Argument #3 ($category) cannot be LC_ALL 21 dcngettext(): Argument #5 ($category) cannot be LC_ALL
|
H A D | 44938.phpt | 10 $category = "cat";
|
/php-src/Zend/tests/ |
H A D | bug60138.phpt | 6 $category =& $tree[0];
|
H A D | bug39438.phpt | 17 'category' => 'plugin',
|
/php-src/ext/mysqli/tests/ |
H A D | mysqli_constants_categories.phpt | 2 Constants exported by ext/mysqli - checking category - PHP bug not mysqli bug (check from time to t…
|
/php-src/ext/pcre/pcre2lib/ |
H A D | pcre2_match.c | 2826 int category; in match() local 2834 if ((category == ucp_L || category == ucp_N) == notmatch) in match() 2871 int chartype, category; in match() local 2880 if ((category == ucp_L || category == ucp_N || in match() 3632 int category; in match() local 3643 if ((category == ucp_L || category == ucp_N) == (Lctype == OP_NOTPROP)) in match() 3683 int chartype, category; in match() local 4223 int category; in match() local 4232 if ((category == ucp_L || category == ucp_N) == notmatch) in match() 6287 prev_is_word = (category == ucp_L || category == ucp_N || in match() [all …]
|
H A D | pcre2_dfa_match.c | 1123 int category = PRIV(ucp_gentype)[chartype]; in internal_dfa_match() local 1124 left_word = (category == ucp_L || category == ucp_N || in internal_dfa_match() 1148 int category = PRIV(ucp_gentype)[chartype]; in internal_dfa_match() local 1149 right_word = (category == ucp_L || category == ucp_N || in internal_dfa_match()
|
/php-src/ext/mbstring/tests/ |
H A D | cp932_encoding.phpt | 72 /* Everything from 0xED00-0xEEFF falls in this unfortunate category
|
/php-src/main/streams/ |
H A D | streams.c | 2418 zval category; local 2423 array_init(&category); 2424 …nd_hash_str_update(Z_ARRVAL(context->options), (char*)wrappername, strlen(wrappername), &category);
|