Searched refs:toupper (Results 1 – 22 of 22) sorted by relevance
/PHP-8.2/ext/standard/ |
H A D | metaphone.c | 81 #define ENCODE(c) (isalpha(c) ? _codes[((toupper(c)) - 'A')] : 0) 105 #define Next_Letter (toupper(word[w_idx+1])) 107 #define Curr_Letter (toupper(word[w_idx])) 109 #define Look_Back_Letter(n) (w_idx >= n ? toupper(word[w_idx-n]) : '\0') 113 #define After_Next_Letter (Next_Letter != '\0' ? toupper(word[w_idx+2]) \ 115 #define Look_Ahead_Letter(n) (toupper(Lookahead((char *) word+w_idx, n)))
|
H A D | strnatcmp.c | 150 ca = toupper((int)(unsigned char)ca); in strnatcmp_ex() 151 cb = toupper((int)(unsigned char)cb); in strnatcmp_ex()
|
H A D | soundex.c | 70 code = toupper((int)(unsigned char)str[i]); in PHP_FUNCTION()
|
/PHP-8.2/ext/standard/tests/filters/ |
H A D | basic.phpt | 7 $filters = array("string.rot13", "string.toupper", "string.tolower"); 33 filter: string.toupper 41 filter: string.toupper
|
H A D | bug81475.phpt | 6 stream_filter_append($stdout, 'string.toupper');
|
/PHP-8.2/ext/opcache/tests/ |
H A D | bug64482.phpt | 12 include 'php://filter/read=string.toupper/resource=bug64482.inc';
|
/PHP-8.2/ext/standard/tests/streams/ |
H A D | bug46147.phpt | 8 stream_filter_append($fp, "string.toupper");
|
H A D | bug78902.phpt | 20 stream_filter_append($fp, "string.toupper");
|
/PHP-8.2/ext/standard/tests/file/ |
H A D | bug27619.phpt | 13 stream_filter_append($fp, "string.toupper");
|
/PHP-8.2/ext/pcre/pcre2lib/ |
H A D | pcre2_maketables.c | 101 for (i = 0; i < 256; i++) *p++ = islower(i)? toupper(i) : tolower(i);
|
H A D | pcre2_printint.c | 308 fprintf(f, "%s%s %s%c%s%s", before, OP_names[*code], sc, toupper(s[0]), s+1, after); in print_prop() 776 fprintf(f, "\\%c{%c%s}", (not? 'P':'p'), toupper(s[0]), s+1); in pcre2_printint()
|
/PHP-8.2/Zend/ |
H A D | zend_virtual_cwd.c | 198 cwd[0] = toupper(cwd[0]); in virtual_cwd_main_cwd_init() 276 retval[0] = toupper(retval[0]); in virtual_getcwd_ex() 1118 resolved_path[start] = toupper(resolved_path[start]); in virtual_file_ex() 1126 resolved_path[start] = toupper(resolved_path[start]); in virtual_file_ex() 1132 resolved_path[0] = toupper(resolved_path[0]); in virtual_file_ex()
|
/PHP-8.2/ext/date/lib/ |
H A D | timelib.c | 129 tm->tz_abbr[i] = toupper(tz_abbr[i]); in timelib_time_tz_abbr_update()
|
/PHP-8.2/ext/intl/uchar/ |
H A D | uchar.c | 608 IC_CHAR_METHOD_CHAR(toupper)
|
H A D | uchar.stub.php | 3560 public static function toupper(int|string $codepoint): int|string|null {} function in IntlChar
|
H A D | uchar_arginfo.h | 246 ZEND_METHOD(IntlChar, toupper); 310 ZEND_ME(IntlChar, toupper, arginfo_class_IntlChar_toupper, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
|
/PHP-8.2/ext/fileinfo/libmagic/ |
H A D | compress.c | 786 *ubuf = toupper(*ubuf); in filter_error()
|
H A D | softmagic.c | 1954 if ((v = toupper(*b++) - *a++) != '\0') in file_strncmp()
|
/PHP-8.2/sapi/litespeed/ |
H A D | lsapilib.c | 2215 char ch = toupper( *pKey ); in GetHeaderVar() 2399 *p++ = toupper( ch ); in LSAPI_ForeachHeader_r()
|
/PHP-8.2/ext/pdo/ |
H A D | pdo_stmt.c | 151 *s = toupper(*s); in pdo_stmt_describe_columns()
|
/PHP-8.2/sapi/cli/ |
H A D | php_cli_server.c | 658 key[i] = toupper(key[i]); in sapi_cli_server_register_entry_cb()
|
/PHP-8.2/ext/opcache/jit/dynasm/ |
H A D | minilua.c | 7032 luaL_addchar(&b,toupper(uchar(s[i])));
|
Completed in 112 milliseconds