Searched refs:category (Results 1 - 6 of 6) sorted by relevance
| /PHP_TRUNK/ext/phar/tests/zip/files/ |
| H A D | corrupt_zipmaker.php.inc | 24 * @category File Formats
|
| /PHP_TRUNK/ext/gettext/ |
| H A D | gettext.c | 50 ZEND_ARG_INFO(0, category) 81 ZEND_ARG_INFO(0, category) 223 /* {{{ proto string dcgettext(string domain_name, string msgid, long category) 224 Return the translation of msgid for domain_name and category, or msgid unaltered if a translation does not exist */ 229 long category; local 231 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "ssl", &domain, &domain_len, &msgid, &msgid_len, &category) == FAILURE) { 238 msgstr = dcgettext(domain, msgid, category); 328 /* {{{ proto string dcngettext (string domain, string msgid1, string msgid2, int n, int category) 334 long count, category; local 339 &msgid1, &msgid1_len, &msgid2, &msgid2_len, &count, &category) [all...] |
| /PHP_TRUNK/ext/pcre/pcrelib/ |
| H A D | pcre_exec.c | 4145 int category; local 4152 category = UCD_CATEGORY(c); 4153 if ((category == ucp_L || category == ucp_N) == prop_fail_result) 4193 int category; local 4200 category = UCD_CATEGORY(c); 4201 if ((category == ucp_L || category == ucp_N || c == CHAR_UNDERSCORE) 4879 int category; local 4889 category 4936 int category; local 5379 int category; local 5433 int category; local [all...] |
| /PHP_TRUNK/ext/standard/ |
| H A D | string.c | 4326 /* {{{ proto string setlocale(mixed category, string locale [, string ...]) 4345 char *category; local 4347 php_error_docref(NULL TSRMLS_CC, E_DEPRECATED, "Passing locale category name as string is deprecated. Use the LC_* -constants instead"); 4350 category = Z_STRVAL_PP(pcategory); 4352 if (!strcasecmp("LC_ALL", category)) { 4354 } else if (!strcasecmp("LC_COLLATE", category)) { 4356 } else if (!strcasecmp("LC_CTYPE", category)) { 4359 } else if (!strcasecmp("LC_MESSAGES", category)) { 4362 } else if (!strcasecmp("LC_MONETARY", category)) { 4364 } else if (!strcasecmp("LC_NUMERIC", category)) { [all...] |
| H A D | basic_functions.c | 2399 ZEND_ARG_INFO(0, category)
|
| /PHP_TRUNK/main/streams/ |
| H A D | streams.c | 2229 zval *category, *copied_val; local 2237 MAKE_STD_ZVAL(category); 2238 array_init(category); 2239 if (FAILURE == zend_hash_update(Z_ARRVAL_P(context->options), (char*)wrappername, strlen(wrappername)+1, (void**)&category, sizeof(zval *), NULL)) { 2243 wrapperhash = &category;
|
Completed in 27 milliseconds