Home
last modified time | relevance | path

Searched refs:code (Results 1 – 25 of 2549) sorted by relevance

12345678910>>...102

/PHP-5.5/ext/ctype/tests/
H A Dctype_alpha_variation2.phpt9 * Source code: ext/ctype/ctype.c
32 character code 65 is alphabetic
33 character code 66 is alphabetic
34 character code 67 is alphabetic
35 character code 68 is alphabetic
36 character code 69 is alphabetic
37 character code 70 is alphabetic
38 character code 71 is alphabetic
39 character code 72 is alphabetic
40 character code 73 is alphabetic
[all …]
H A Dctype_print_variation2.phpt9 * Source code: ext/ctype/ctype.c
32 character code 32 is a printable character
33 character code 33 is a printable character
34 character code 34 is a printable character
35 character code 35 is a printable character
36 character code 36 is a printable character
37 character code 37 is a printable character
38 character code 38 is a printable character
39 character code 39 is a printable character
40 character code 40 is a printable character
[all …]
H A Dctype_graph_variation2.phpt9 * Source code: ext/ctype/ctype.c
32 character code 33 is a printable character
33 character code 34 is a printable character
34 character code 35 is a printable character
35 character code 36 is a printable character
36 character code 37 is a printable character
37 character code 38 is a printable character
38 character code 39 is a printable character
39 character code 40 is a printable character
40 character code 41 is a printable character
[all …]
H A Dctype_alnum_variation2.phpt9 * Source code: ext/ctype/ctype.c
32 character code 48 is alpha numeric
33 character code 49 is alpha numeric
34 character code 50 is alpha numeric
35 character code 51 is alpha numeric
36 character code 52 is alpha numeric
37 character code 53 is alpha numeric
38 character code 54 is alpha numeric
39 character code 55 is alpha numeric
40 character code 56 is alpha numeric
[all …]
H A Dctype_punct_variation2.phpt10 * Source code: ext/ctype/ctype.c
33 character code 33 is punctuation
34 character code 34 is punctuation
35 character code 35 is punctuation
36 character code 36 is punctuation
37 character code 37 is punctuation
38 character code 38 is punctuation
39 character code 39 is punctuation
40 character code 40 is punctuation
41 character code 41 is punctuation
[all …]
H A Dctype_cntrl_variation2.phpt9 * Source code: ext/ctype/ctype.c
32 character code 0 is control character
33 character code 1 is control character
34 character code 2 is control character
35 character code 3 is control character
36 character code 4 is control character
37 character code 5 is control character
38 character code 6 is control character
39 character code 7 is control character
40 character code 8 is control character
[all …]
H A Dctype_upper_variation2.phpt9 * Source code: ext/ctype/ctype.c
31 character code 65 is a uppercase character
32 character code 66 is a uppercase character
33 character code 67 is a uppercase character
34 character code 68 is a uppercase character
35 character code 69 is a uppercase character
36 character code 70 is a uppercase character
37 character code 71 is a uppercase character
38 character code 72 is a uppercase character
39 character code 73 is a uppercase character
[all …]
H A Dctype_lower_variation2.phpt9 * Source code: ext/ctype/ctype.c
32 character code 97 is a lower case character
33 character code 98 is a lower case character
34 character code 99 is a lower case character
35 character code 100 is a lower case character
36 character code 101 is a lower case character
37 character code 102 is a lower case character
38 character code 103 is a lower case character
39 character code 104 is a lower case character
40 character code 105 is a lower case character
[all …]
H A Dctype_xdigit_variation2.phpt9 * Source code: ext/ctype/ctype.c
32 character code 48 is a hexadecimal 'digit'
33 character code 49 is a hexadecimal 'digit'
34 character code 50 is a hexadecimal 'digit'
35 character code 51 is a hexadecimal 'digit'
36 character code 52 is a hexadecimal 'digit'
37 character code 53 is a hexadecimal 'digit'
38 character code 54 is a hexadecimal 'digit'
39 character code 55 is a hexadecimal 'digit'
40 character code 56 is a hexadecimal 'digit'
[all …]
H A Dctype_digit_variation2.phpt9 * Source code: ext/ctype/ctype.c
32 character code 48 is a numeric digit
33 character code 49 is a numeric digit
34 character code 50 is a numeric digit
35 character code 51 is a numeric digit
36 character code 52 is a numeric digit
37 character code 53 is a numeric digit
38 character code 54 is a numeric digit
39 character code 55 is a numeric digit
40 character code 56 is a numeric digit
[all …]
/PHP-5.5/ext/mbstring/oniguruma/enc/
H A Dutf8.c121 code_to_mbclen(OnigCodePoint code) in code_to_mbclen() argument
140 #define UTF8_TRAILS(code, shift) (UChar )((((code) >> (shift)) & 0x3f) | 0x80) in code_to_mbc() argument
141 #define UTF8_TRAIL0(code) (UChar )(((code) & 0x3f) | 0x80) in code_to_mbc() argument
143 if ((code & 0xffffff80) == 0) { in code_to_mbc()
144 *buf = (UChar )code; in code_to_mbc()
150 if ((code & 0xfffff800) == 0) { in code_to_mbc()
155 *p++ = UTF8_TRAILS(code, 6); in code_to_mbc()
159 *p++ = UTF8_TRAILS(code, 12); in code_to_mbc()
160 *p++ = UTF8_TRAILS(code, 6); in code_to_mbc()
164 *p++ = UTF8_TRAILS(code, 18); in code_to_mbc()
[all …]
H A Diso8859_1.c32 #define ENC_IS_ISO_8859_1_CTYPE(code,ctype) \ argument
126 items[1].code[0] = (OnigCodePoint )0xdf; in get_case_fold_codes_by_str()
156 items[0].code[0] = (OnigCodePoint )'s'; in get_case_fold_codes_by_str()
157 items[0].code[1] = (OnigCodePoint )'s'; in get_case_fold_codes_by_str()
161 items[1].code[0] = (OnigCodePoint )'S'; in get_case_fold_codes_by_str()
162 items[1].code[1] = (OnigCodePoint )'S'; in get_case_fold_codes_by_str()
166 items[2].code[0] = (OnigCodePoint )'s'; in get_case_fold_codes_by_str()
167 items[2].code[1] = (OnigCodePoint )'S'; in get_case_fold_codes_by_str()
171 items[3].code[0] = (OnigCodePoint )'S'; in get_case_fold_codes_by_str()
172 items[3].code[1] = (OnigCodePoint )'s'; in get_case_fold_codes_by_str()
[all …]
H A Dunicode.c11031 code = p11->to.code[j];
11072 code = p11->to.code[j];
11207 items[0].code[0] = to->code[0];
11210 code = to->code[0];
11216 items[n].code[0] = to->code[i];
11253 if (z2->code[i] == code) continue;
11257 items[n].code[0] = z2->code[i];
11283 items[n].code[0] = z2->code[i];
11298 items[n].code[0] = to->code[i];
11325 items[n].code[0] = z2->code[i];
[all …]
H A Deuc_jp.c78 code_to_mbclen(OnigCodePoint code) in code_to_mbclen() argument
89 code_to_mbc_first(OnigCodePoint code)
93 if ((code & 0xff0000) != 0) {
94 first = (code >> 16) & 0xff;
96 else if ((code & 0xff00) != 0) {
97 first = (code >> 8) & 0xff;
100 return (int )code;
111 if ((code & 0xff0000) != 0) *p++ = (UChar )(((code >> 16) & 0xff)); in code_to_mbc()
112 if ((code & 0xff00) != 0) *p++ = (UChar )(((code >> 8) & 0xff)); in code_to_mbc()
113 *p++ = (UChar )(code & 0xff); in code_to_mbc()
[all …]
H A Dsjis.c80 code_to_mbclen(OnigCodePoint code) in code_to_mbclen() argument
82 if (code < 256) { in code_to_mbclen()
83 if (EncLen_SJIS[(int )code] == 1) in code_to_mbclen()
88 else if (code <= 0xffff) { in code_to_mbclen()
115 code_to_mbc(OnigCodePoint code, UChar *buf) in code_to_mbc() argument
119 if ((code & 0xff00) != 0) *p++ = (UChar )(((code >> 8) & 0xff)); in code_to_mbc()
120 *p++ = (UChar )(code & 0xff); in code_to_mbc()
166 if (code < 128)
167 return ONIGENC_IS_ASCII_CODE_CTYPE(code, ctype);
259 if (code < 128) in is_code_ctype()
[all …]
H A Dutf16_be.c80 OnigCodePoint code; in utf16be_mbc_to_code() local
88 code = p[0] * 256 + p[1]; in utf16be_mbc_to_code()
90 return code; in utf16be_mbc_to_code()
94 utf16be_code_to_mbclen(OnigCodePoint code) in utf16be_code_to_mbclen() argument
96 return (code > 0xffff ? 4 : 2); in utf16be_code_to_mbclen()
104 if (code > 0xffff) { in utf16be_code_to_mbc()
107 plane = (code >> 16) - 1; in utf16be_code_to_mbc()
109 high = (code & 0xff00) >> 8; in utf16be_code_to_mbc()
112 *p = (UChar )(code & 0xff); in utf16be_code_to_mbc()
116 *p++ = (UChar )((code & 0xff00) >> 8); in utf16be_code_to_mbc()
[all …]
H A Dutf16_le.c52 utf16le_code_to_mbclen(OnigCodePoint code) in utf16le_code_to_mbclen() argument
54 return (code > 0xffff ? 4 : 2); in utf16le_code_to_mbclen()
86 OnigCodePoint code; in utf16le_mbc_to_code() local
96 code = c1 * 256 + p[0]; in utf16le_mbc_to_code()
98 return code; in utf16le_mbc_to_code()
106 if (code > 0xffff) { in utf16le_code_to_mbc()
109 plane = (code >> 16) - 1; in utf16le_code_to_mbc()
110 high = (code & 0xff00) >> 8; in utf16le_code_to_mbc()
114 *p++ = (UChar )(code & 0xff); in utf16le_code_to_mbc()
119 *p++ = (UChar )(code & 0xff); in utf16le_code_to_mbc()
[all …]
/PHP-5.5/ext/com_dotnet/tests/
H A Dvariants.phpt77 code 80020005
83 code 80020005
88 code 80020005
93 code 80020005
98 code 80020005
103 code 80020005
108 code 80020005
113 code 80020005
118 code 80020005
123 code 80020005
[all …]
/PHP-5.5/ext/standard/
H A Dsoundex.c32 int i, _small, str_len, code, last; in PHP_FUNCTION() local
77 code = toupper((int)(unsigned char)str[i]); in PHP_FUNCTION()
78 if (code >= 'A' && code <= 'Z') { in PHP_FUNCTION()
81 soundex[_small++] = code; in PHP_FUNCTION()
82 last = soundex_table[code - 'A']; in PHP_FUNCTION()
88 code = soundex_table[code - 'A']; in PHP_FUNCTION()
89 if (code != last) { in PHP_FUNCTION()
90 if (code != 0) { in PHP_FUNCTION()
91 soundex[_small++] = code; in PHP_FUNCTION()
93 last = code; in PHP_FUNCTION()
/PHP-5.5/ext/mbstring/
H A Dphp_unicode.c94 else if (code >= _ucprop_ranges[m] && code <= _ucprop_ranges[m + 1]) in prop_lookup()
136 if (code > _uccase_map[m]) in case_lookup()
144 return code; in case_lookup()
149 if (code == 0x0069L) { in php_turkish_toupper()
157 if (code == 0x0049L) { in php_turkish_tolower()
168 if (php_unicode_is_upper(code)) in php_unicode_toupper()
169 return code; in php_unicode_toupper()
199 if (php_unicode_is_lower(code)) in php_unicode_tolower()
200 return code; in php_unicode_tolower()
230 if (php_unicode_is_title(code)) in php_unicode_totitle()
[all …]
/PHP-5.5/ext/mbstring/oniguruma/
H A Dregenc.c397 OnigCodePoint code; in onigenc_ascii_apply_all_case_fold() local
451 OnigCodePoint code; in onigenc_apply_all_case_fold_with_map() local
458 code = map[i].to; in onigenc_apply_all_case_fold_with_map()
462 code = map[i].from; in onigenc_apply_all_case_fold_with_map()
539 items[0].code[0] = map[i].to; in onigenc_get_case_fold_codes_by_str_with_map()
616 *buf = (UChar )(code & 0xff); in onigenc_single_byte_code_to_mbc()
722 if ((code & 0xff00) != 0) { in onigenc_mb2_code_to_mbc()
725 *p++ = (UChar )(code & 0xff); in onigenc_mb2_code_to_mbc()
748 *p++ = (UChar )(code & 0xff); in onigenc_mb4_code_to_mbc()
795 if (code < 128) in onigenc_mb2_is_code_ctype()
[all …]
/PHP-5.5/ext/pcre/pcrelib/
H A Dpcre_compile.c1679 do code += GET(code, 1); while (*code == OP_ALT); in first_significant_code()
2145 code += code[1]; in PRIV()
2290 code += code[1]; in find_recurse()
2415 do code += GET(code, 1); while (*code == OP_ALT); in could_be_empty_branch()
2488 do code += GET(code, 1); while (*code == OP_ALT); in could_be_empty_branch()
2499 do code += GET(code, 1); while (*code == OP_ALT); in could_be_empty_branch()
2734 code += code[1]; in could_be_empty_branch()
3163 do code += GET(code, 1); while (*code == OP_ALT); in compare_opcodes()
3800 code += GET(code, 1); in auto_possessify()
3808 code += code[1]; in auto_possessify()
[all …]
H A Dpcre_get.c70 pcre_get_stringnumber(const pcre *code, const char *stringname) in pcre_get_stringnumber() argument
73 pcre16_get_stringnumber(const pcre16 *code, PCRE_SPTR16 stringname) in pcre_get_stringnumber()
76 pcre32_get_stringnumber(const pcre32 *code, PCRE_SPTR32 stringname) in pcre_get_stringnumber()
270 const REAL_PCRE *re = (const REAL_PCRE *)code; in get_first_set()
283 return pcre_get_stringnumber(code, stringname); in get_first_set()
287 return pcre16_get_stringnumber(code, stringname); in get_first_set()
291 return pcre32_get_stringnumber(code, stringname); in get_first_set()
390 pcre_copy_named_substring(const pcre *code, const char *subject, in pcre_copy_named_substring() argument
405 int n = get_first_set(code, stringname, ovector); in pcre_copy_named_substring()
607 pcre_get_named_substring(const pcre *code, const char *subject, in pcre_get_named_substring() argument
[all …]
/PHP-5.5/ext/pdo_mysql/tests/
H A Dpdo_mysql_attr_errmode.phpt48 if ($code != '42000')
49 printf("[005] Expecting SQL code 42000 got '%s'\n", $code);
50 if ($code !== $info[0])
52 $code, $info[0]);
64 if ($code != '42000')
65 printf("[009] Expecting SQL code 42000 got '%s'\n", $code);
68 $code, $info[0]);
84 printf("[013] Expecting SQL code 42000 got '%s'\n", $code);
87 $code, $info[0]);
122 printf("[021] Expecting SQL code 42000 got '%s'\n", $code);
[all …]
/PHP-5.5/ext/pcre/pcrelib/testdata/
H A Dtestoutput11-168 Memory allocation (code space): 24
19 Memory allocation (code space): 38
34 Memory allocation (code space): 36
49 Memory allocation (code space): 46
59 Memory allocation (code space): 10
72 Memory allocation (code space): 14
85 Memory allocation (code space): 14
94 Memory allocation (code space): 14
103 Memory allocation (code space): 20
113 Memory allocation (code space): 26
[all …]

Completed in 252 milliseconds

12345678910>>...102