Home
last modified time | relevance | path

Searched refs:cc (Results 1 – 25 of 73) sorted by relevance

123

/PHP-7.4/ext/mbstring/
H A Dphp_unicode.h122 #define php_unicode_is_digit(cc) php_unicode_is_prop1(cc, UC_ND) argument
125 #define php_unicode_is_blank(cc) php_unicode_is_prop1(cc, UC_ZS) argument
151 #define php_unicode_is_rtl(cc) php_unicode_is_prop1(cc, UC_R) argument
152 #define php_unicode_is_ltr(cc) php_unicode_is_prop1(cc, UC_L) argument
165 #define php_unicode_is_dash(cc) php_unicode_is_prop1(cc, UC_PD) argument
166 #define php_unicode_is_math(cc) php_unicode_is_prop1(cc, UC_SM) argument
174 #define php_unicode_is_lsep(cc) php_unicode_is_prop1(cc, UC_ZL) argument
175 #define php_unicode_is_psep(cc) php_unicode_is_prop1(cc, UC_ZP) argument
184 #define php_unicode_is_han(cc) (((cc) >= 0x4e00 && (cc) <= 0x9fff) ||\ argument
185 ((cc) >= 0xf900 && (cc) <= 0xfaff))
[all …]
/PHP-7.4/ext/pcre/pcre2lib/
H A Dpcre2_pattern_info.c273 PCRE2_SPTR cc; in pcre2_callout_enumerate() local
300 switch (*cc) in pcre2_callout_enumerate()
361 cc += PRIV(OP_lengths)[*cc]; in pcre2_callout_enumerate()
363 if (utf && HAS_EXTRALEN(cc[-1])) cc += GET_EXTRALEN(cc[-1]); in pcre2_callout_enumerate()
380 cc += PRIV(OP_lengths)[*cc]; in pcre2_callout_enumerate()
382 if (cc[-1] == OP_PROP || cc[-1] == OP_NOTPROP) cc += 2; in pcre2_callout_enumerate()
388 cc += GET(cc, 1); in pcre2_callout_enumerate()
397 cc += PRIV(OP_lengths)[*cc] + cc[1]; in pcre2_callout_enumerate()
409 cc += PRIV(OP_lengths)[*cc]; in pcre2_callout_enumerate()
422 cc += GET(cc, 1 + 2*LINK_SIZE); in pcre2_callout_enumerate()
[all …]
H A Dpcre2_study.c158 cs = cc + GET(cc, 1); in find_minlength()
190 do cc += GET(cc, 1); while (*cc == OP_ALT); in find_minlength()
212 do cc += GET(cc, 1); while (*cc == OP_ALT); in find_minlength()
239 nextbranch = cc + GET(cc, 1); in find_minlength()
253 do cc += GET(cc, 1); while (*cc == OP_ALT); in find_minlength()
276 cc += PRIV(OP_lengths)[*cc]; in find_minlength()
289 cc += PRIV(OP_lengths)[*cc]; in find_minlength()
290 do cc += GET(cc, 1); while (*cc == OP_ALT); in find_minlength()
323 cc += (cc[1] == OP_PROP || cc[1] == OP_NOTPROP)? 4 : 2; in find_minlength()
399 if (cc[1] == OP_PROP || cc[1] == OP_NOTPROP) cc += 2; in find_minlength()
[all …]
H A Dpcre2_jit_compile.c835 do cc += GET(cc, 1); while (*cc == OP_ALT); in bracketend()
847 cc += GET(cc, 1); in no_alternatives()
5468 cc += GET(cc, 1); in scan_prefix()
9593 cc += GET(cc, 1); in compile_assert_matchingpath()
9780 cc += GET(cc, 1); in compile_assert_matchingpath()
10189 cc += GET(cc, 1); in compile_bracket_matchingpath()
10585 cc += GET(cc, 1); in compile_bracket_matchingpath()
10854 cc += GET(cc, 1); in compile_bracketpos_matchingpath()
12395 cc += GET(cc, 1); in compile_bracket_backtrackingpath()
13228 cc += GET(cc, 1); in compile_recurse()
[all …]
/PHP-7.4/ext/hash/
H A Dhash_ripemd.c218 aa = dd; dd = cc; cc = bb; bb = tmp; in RIPEMD128Transform()
225 aa = dd; dd = cc; cc = bb; bb = tmp; in RIPEMD128Transform()
232 aa = dd; dd = cc; cc = bb; bb = tmp; in RIPEMD128Transform()
239 aa = dd; dd = cc; cc = bb; bb = tmp; in RIPEMD128Transform()
309 aa = dd; dd = cc; cc = bb; bb = tmp; in RIPEMD256Transform()
317 aa = dd; dd = cc; cc = bb; bb = tmp; in RIPEMD256Transform()
325 aa = dd; dd = cc; cc = bb; bb = tmp; in RIPEMD256Transform()
327 tmp = c; c = cc; cc = tmp; in RIPEMD256Transform()
333 aa = dd; dd = cc; cc = bb; bb = tmp; in RIPEMD256Transform()
407 aa = ee; ee = dd; dd = ROL(10, cc); cc = bb; bb = tmp; in RIPEMD160Transform()
[all …]
/PHP-7.4/ext/pcre/tests/
H A Dungreedy.phpt6 var_dump(preg_match('/<.*>/', '<aa> <bb> <cc>', $m));
9 var_dump(preg_match('/<.*>/U', '<aa> <bb> <cc>', $m));
12 var_dump(preg_match('/(?U)<.*>/', '<aa> <bb> <cc>', $m));
20 string(14) "<aa> <bb> <cc>"
/PHP-7.4/main/
H A Dsnprintf.c1221 int cc; in strx_printv() local
1251 int cc; in ap_php_slprintf() local
1261 return cc; in ap_php_slprintf()
1267 int cc; in ap_php_vslprintf() local
1274 return cc; in ap_php_vslprintf()
1280 int cc; in ap_php_snprintf() local
1292 int cc; in ap_php_vsnprintf() local
1302 int cc; in ap_php_vasprintf() local
1319 return cc; in ap_php_vasprintf()
1325 int cc; in ap_php_asprintf() local
[all …]
/PHP-7.4/Zend/tests/
H A Dclosure_024.phpt9 $cc = clone $c;
12 echo $cc(10)."\n";
17 echo $cc(10)."\n";
H A Dget_class_methods_003.phpt9 static function cc();
26 static function cc() { }
47 string(2) "cc"
55 string(2) "cc"
H A Dget_class_vars_007.phpt9 static protected $c, $cc;
38 ["cc"]=>
H A Dget_class_vars_003.phpt15 static protected $cc = 6;
47 ["cc"]=>
H A Dget_class_vars_002.phpt15 static protected $cc = 6;
40 ["cc"]=>
H A Dget_class_vars_001.phpt15 static protected $cc = 6;
/PHP-7.4/ext/standard/tests/array/
H A Dbug36975.phpt5 $a = array('aa', 'aa', 'bb', 'bb', 'cc', 'cc');
39 string(2) "cc"
41 string(2) "cc"
/PHP-7.4/ext/filter/tests/
H A D033.phpt17 …om http://a.b.c 1.2.3.4 123 123abc<>() O'Henry 하퍼 aa:bb:cc:dd:ee:ff
21 … aa:bb:cc:dd:ee:ff
22 …om http://a.b.c 1.2.3.4 123 123abc() O&#39;Henry 하퍼 aa:bb:cc:dd:ee:ff
23 …om http://a.b.c 1.2.3.4 123 123abc() O&#39;Henry 하퍼 aa:bb:cc:dd:ee:ff
25 …om http://a.b.c 1.2.3.4 123 123abc&#60;&#62;() O&#39;Henry 하퍼 aa:bb:cc:dd:ee:ff
26 …om http://a.b.c 1.2.3.4 123 123abc&lt;&gt;() O&#039;Henry 하퍼 aa:bb:cc:dd:ee:ff
27 …om http://a.b.c 1.2.3.4 123 123abc<>() O'Henry 하퍼 aa:bb:cc:dd:ee:ff
29 … http://a.b.c 1.2.3.4 123 123abc<>() O'Henry aa:bb:cc:dd:ee:ff
52 …om http://a.b.c 1.2.3.4 123 123abc<>() O\'Henry 하퍼 aa:bb:cc:dd:ee:ff
53 …om http://a.b.c 1.2.3.4 123 123abc<>() O\'Henry 하퍼 aa:bb:cc:dd:ee:ff
H A D040.phpt20 var_dump(filter_has_var(INPUT_GET, "cc"));
21 var_dump(filter_has_var(-1, "cc"));
22 var_dump(filter_has_var(0, "cc"));
23 var_dump(filter_has_var("", "cc"));
/PHP-7.4/ext/reflection/tests/
H A Dbug43926.phpt23 $cc = $rc->newInstance();
32 print("Is? A ". ($ra->isInstance($cc) ? 'true' : 'false') .", instanceof: ". (($cc instanceof A) ? …
33 print("Is? C ". ($rc->isInstance($cc) ? 'true' : 'false') .", instanceof: ". (($cc instanceof C) ? …
34 print("Is? D ". ($rd->isInstance($cc) ? 'true' : 'false') .", instanceof: ". (($cc instanceof D) ? …
35 print("Is? E ". ($re->isInstance($cc) ? 'true' : 'false') .", instanceof: ". (($cc instanceof E) ? …
/PHP-7.4/ext/mysqli/tests/
H A Dbug73949.phpt13 class cc{
20 while($db= mysqli_fetch_object($res,'cc',$t)){}
/PHP-7.4/ext/imap/tests/
H A Dbug45705_2.phpt16 'cc' => 'John Doe <john@example.com>',
35 ["cc"]=>
49 ["cc"]=>
H A Dbug31142_1.phpt14 $envelope["cc"] = "bar@example.com";
40 cc: bar@example.com
H A Dbug40854.phpt13 $envelope["cc"] = "bar@example.com";
38 cc: bar@example.com
/PHP-7.4/ext/standard/
H A Dflock_compat.c181 register char cc = *cp; in inet_aton() local
183 switch (cc) { in inet_aton()
194 acc = acc * 10 + (cc - '0'); in inet_aton()
/PHP-7.4/sapi/phpdbg/
H A Dphpdbg_out.c130 int cc = 0; in format_converter() local
805 return (cc); in format_converter()
810 int cc; in strx_printv() local
833 *ccp = cc; in strx_printv()
838 int cc; in phpdbg_xml_vsnprintf() local
841 return (cc); in phpdbg_xml_vsnprintf()
846 int cc; in phpdbg_xml_vasprintf() local
854 if (cc >= 0) { in phpdbg_xml_vasprintf()
855 *buf = emalloc(++cc); in phpdbg_xml_vasprintf()
856 if ((cc = phpdbg_xml_vsnprintf(*buf, cc, format, escape_xml, ap)) < 0) { in phpdbg_xml_vasprintf()
[all …]
/PHP-7.4/tests/classes/
H A Dconstants_basic_003.phpt11 const cc = C::MY_CONST;
22 var_dump(B::cc);
/PHP-7.4/ext/oci8/tests/
H A Ddrcp_connection_class.phpt17 ini_set('oci8.connection_class',"New cc");
29 The New oci8.connection_class is New cc

Completed in 82 milliseconds

123