Home
last modified time | relevance | path

Searched refs:ch (Results 101 – 125 of 161) sorted by relevance

1234567

/PHP-5.4/ext/pcre/pcrelib/
H A Dpcre_internal.h2778 #define GET_UCD(ch) (PRIV(ucd_records) + \ argument
2779 PRIV(ucd_stage2)[PRIV(ucd_stage1)[(int)(ch) / UCD_BLOCK_SIZE] * \
2780 UCD_BLOCK_SIZE + (int)(ch) % UCD_BLOCK_SIZE])
2782 #define UCD_CHARTYPE(ch) GET_UCD(ch)->chartype argument
2783 #define UCD_SCRIPT(ch) GET_UCD(ch)->script argument
2784 #define UCD_CATEGORY(ch) PRIV(ucp_gentype)[UCD_CHARTYPE(ch)] argument
2785 #define UCD_GRAPHBREAK(ch) GET_UCD(ch)->gbprop argument
2786 #define UCD_CASESET(ch) GET_UCD(ch)->caseset argument
2787 #define UCD_OTHERCASE(ch) ((pcre_uint32)((int)ch + (int)(GET_UCD(ch)->other_case))) argument
/PHP-5.4/ext/standard/tests/array/
H A Duasort_variation3.phpt50 and speci@! ch@r..\ncheck\talso
103 and speci@! ch@r..
H A Dusort_variation3.phpt39 and speci@! ch@r..\ncheck\talso
/PHP-5.4/ext/ftp/
H A Dftp.c893 int ch; in ftp_put() local
939 if (ch == '\n' && type == FTPTYPE_ASCII) { in ftp_put()
944 *ptr++ = ch; in ftp_put()
1617 int ch, lastch; in ftp_genlist() local
1686 while ((ch = php_stream_getc(tmpstream)) != EOF) { in ftp_genlist()
1687 if (ch == '\n' && lastch == '\r') { in ftp_genlist()
1691 *text++ = ch; in ftp_genlist()
1693 lastch = ch; in ftp_genlist()
1888 int ch; in ftp_nb_continue_write() local
1899 if (ch == '\n' && ftp->type == FTPTYPE_ASCII) { in ftp_nb_continue_write()
[all …]
/PHP-5.4/ext/standard/tests/strings/
H A Dchunk_split_variation4.phpt136 , ch
150 ch
H A Dchunk_split_variation6.phpt59 string(46) "This co):(ntains ):(@ # $ %):( ^ & ch):(ars):("
73 string(55) "Testing):( invali):(d \k an):(d \m es):(cape ch):(ar):("
H A Dchunk_split_variation7.phpt61 ch????ars????"
69 string(69) "Testi????ng in????valid???? \k a????nd \m???? esca????pe ch????ar????"
/PHP-5.4/ext/com_dotnet/tests/
H A Dbug66431_0.phpt10 $text= "Xin chào cộng đồng PHP";
H A Dbug66431_1.phpt17 $text= "Xin chào cộng đồng PHP";
/PHP-5.4/ext/mbstring/tests/
H A Dmb_eregi_replace.phpt16 "я"=>"ya","ч"=>"ch","с"=>"c","м"=>"m","и"=>"i","т"=>"t",
/PHP-5.4/ext/standard/
H A Dvar_unserializer.c214 unsigned char ch = 0; in unserialize_str() local
219 ch = (ch << 4) + (**p -'0'); in unserialize_str()
221 ch = (ch << 4) + (**p -'a'+10); in unserialize_str()
223 ch = (ch << 4) + (**p -'A'+10); in unserialize_str()
229 str[i] = (char)ch; in unserialize_str()
H A Dphp_smart_str.h96 #define smart_str_appendc_ex(dest, ch, what) do { \ argument
100 ((unsigned char *) (dest)->c)[(dest)->len - 1] = (ch); \
H A Dvar_unserializer.re212 unsigned char ch = 0;
217 ch = (ch << 4) + (**p -'0');
219 ch = (ch << 4) + (**p -'a'+10);
221 ch = (ch << 4) + (**p -'A'+10);
227 str[i] = (char)ch;
H A Darray.c1264 int i, ch; in php_valid_var_name() local
1273 (ch < 65 /* A */ || /* Z */ ch > 90) && in php_valid_var_name()
1274 (ch < 97 /* a */ || /* z */ ch > 122) && in php_valid_var_name()
1275 (ch < 127 /* 0x7f */ || /* 0xff */ ch > 255) in php_valid_var_name()
1285 (ch < 48 /* 0 */ || /* 9 */ ch > 57) && in php_valid_var_name()
1286 (ch < 65 /* A */ || /* Z */ ch > 90) && in php_valid_var_name()
1287 (ch < 97 /* a */ || /* z */ ch > 122) && in php_valid_var_name()
1288 (ch < 127 /* 0x7f */ || /* 0xff */ ch > 255) in php_valid_var_name()
1674 unsigned char ch = *low; in PHP_FUNCTION() local
1680 for (; ch >= *high; ch -= (unsigned int)lstep) { in PHP_FUNCTION()
[all …]
/PHP-5.4/Zend/
H A Dzend_ini_scanner.l120 #define EAT_TRAILING_WHITESPACE_EX(ch) \ argument
122 (ch != 'X' && yytext[yyleng - 1] == ch) || \
/PHP-5.4/ext/curl/tests/
H A Dcurl_basic_017.phpt9 /* Prototype : bool curl_multi_exec(resource ch)
H A Dcurl_basic_018.phpt9 /* Prototype : bool curl_setopt(resource ch, int option, mixed value)
/PHP-5.4/ext/ctype/tests/
H A Dctype_print_variation3.phpt34 ")speci@! ch@r$(",
H A Dctype_alnum_variation3.phpt33 ")speci@! ch@r$(",
H A Dctype_alpha_variation3.phpt34 ")speci@! ch@r$(",
H A Dctype_digit_variation3.phpt33 ")speci@! ch@r$(",
H A Dctype_lower_variation3.phpt34 ")speci@! ch@r$(",
H A Dctype_space_variation3.phpt34 ")speci@! ch@r$(",
H A Dctype_upper_variation3.phpt33 ")speci@! ch@r$(",
H A Dctype_xdigit_variation3.phpt34 ")speci@! ch@r$(",

Completed in 59 milliseconds

1234567