Home
last modified time | relevance | path

Searched refs:ch (Results 126 – 150 of 169) sorted by relevance

1234567

/PHP-8.1/Zend/
H A Dzend_smart_str.h116 static zend_always_inline void smart_str_appendc_ex(smart_str *dest, char ch, bool persistent) { in smart_str_appendc_ex() argument
118 ZSTR_VAL(dest->s)[new_len - 1] = ch; in smart_str_appendc_ex()
H A Dzend_ini_scanner.l126 #define EAT_TRAILING_WHITESPACE_EX(ch) \ argument
128 (ch != 'X' && yytext[yyleng - 1] == ch) || \
/PHP-8.1/ext/standard/tests/array/
H A Dusort_variation3.phpt34 and speci@! ch@r..\ncheck\talso
/PHP-8.1/ext/com_dotnet/tests/
H A Dbug66431_1.phpt17 $text= "Xin chào cộng đồng PHP";
/PHP-8.1/ext/ctype/tests/
H A Dctype_alnum_variation3.phpt28 ")speci@! ch@r$(",
H A Dctype_print_variation3.phpt29 ")speci@! ch@r$(",
H A Dctype_alpha_variation3.phpt29 ")speci@! ch@r$(",
H A Dctype_digit_variation3.phpt28 ")speci@! ch@r$(",
H A Dctype_lower_variation3.phpt29 ")speci@! ch@r$(",
H A Dctype_punct_variation3.phpt29 ")speci@! ch@r$(",
H A Dctype_space_variation3.phpt29 ")speci@! ch@r$(",
H A Dctype_upper_variation3.phpt28 ")speci@! ch@r$(",
H A Dctype_xdigit_variation3.phpt29 ")speci@! ch@r$(",
H A Dctype_graph_variation3.phpt29 ")speci@! ch@r$(",
H A Dctype_cntrl_variation3.phpt29 ")speci@! ch@r$(",
/PHP-8.1/ext/pcre/pcre2lib/
H A Dpcre2_printint.c710 PCRE2_UCHAR ch; in pcre2_printint() local
711 while ((ch = *ccode++) != XCL_END) in pcre2_printint()
716 switch(ch) in pcre2_printint()
752 if (ch == XCL_RANGE) in pcre2_printint()
H A Dpcre2_match.c1055 uint32_t ch; in match() local
1059 if (ch == fc) in match()
1065 if (ch > 127) in match()
1066 ch = UCD_OTHERCASE(ch); in match()
1068 ch = (mb->fcc)[ch]; in match()
1077 uint32_t ch; in match() local
1079 ch = Fecode[1]; in match()
1082 if (ch == fc) in match()
1089 ch = UCD_OTHERCASE(ch); in match()
1091 ch = (mb->fcc)[ch]; in match()
[all …]
/PHP-8.1/sapi/litespeed/
H A Dlsapilib.c2246 if ((ch != *p )||(( *p == '_' )&&( ch != '-'))) in GetHeaderVar()
2425 char ch = *pKey++; in LSAPI_ForeachHeader_r() local
2426 if ( ch == '-' ) in LSAPI_ForeachHeader_r()
2540 if (( ch == '\n' )||( ch == '\r' )) in LSAPI_AppendRespHeader2_r()
2550 if (( ch == '\n' )||( ch == '\r' )) in LSAPI_AppendRespHeader2_r()
2589 char ch = *(pBuf + len - 1 ); in LSAPI_AppendRespHeader_r() local
2590 if (( ch == '\n' )||( ch == '\r' )) in LSAPI_AppendRespHeader_r()
3997 char ch; in LSAPI_Init_Env_Parameters() local
4033 ch = *(p + strlen(p) - 1); in LSAPI_Init_Env_Parameters()
4034 if ( ch == 'G' || ch == 'g' ) in LSAPI_Init_Env_Parameters()
[all …]
/PHP-8.1/ext/ffi/
H A Dffi.c4408 Z_PARAM_LONG(ch) in ZEND_METHOD()
5857 value = val->ch;
6263 length = len->ch;
7076 val->ch = val->ch OP op2->ch; \
7134 val->ch = val->ch OP op2->ch; \
7204 val->i64 = val->ch OP op2->ch; \
7501 val->ch = -val->ch;
7515 val->ch = ~val->ch;
7705 val->ch = '\b';
7729 val->ch = n;
[all …]
/PHP-8.1/ext/mbstring/tests/
H A Dmb_chr_ord.phpt8 for($ch = 1; $ch < 80000; $ch++) {
9 $str = mb_chr($ch);
11 echo "ERROR($ch)\n";
14 if ($ch != mb_ord($str)) {
15 echo "REAL ERROR($ch)\n";
/PHP-8.1/ext/standard/tests/strings/
H A Dstr_split_variation3.phpt144 string(7) "cape ch"
/PHP-8.1/ext/hash/tests/
H A Dfnv132.phpt39 array( "ch", "6e772a5c" ),
55 array( "ch\0", "4197aed4" ),
122 array( "http://www.fourmilab.ch/gravitation/orbits/", "12e6dffe" ),
H A Dfnv164.phpt39 array( "ch", "08326507b4eb341c" ),
55 array( "ch\0", "d8d5c8186ba98b94" ),
122 array( "http://www.fourmilab.ch/gravitation/orbits/", "d47e8d8a2333c6de" ),
/PHP-8.1/ext/standard/
H A Dvar_unserializer.re342 unsigned char ch = 0;
347 ch = (ch << 4) + (**p -'0');
349 ch = (ch << 4) + (**p -'a'+10);
351 ch = (ch << 4) + (**p -'A'+10);
357 ZSTR_VAL(str)[i] = (char)ch;
/PHP-8.1/win32/
H A Dglob.c881 g_strchr(str, ch) in g_strchr() argument
883 int ch;
886 if (*str == ch)

Completed in 84 milliseconds

1234567