Home
last modified time | relevance | path

Searched refs:ch (Results 1 – 25 of 168) sorted by last modified time

1234567

/PHP-5.5/win32/
H A Dglob.c889 g_strchr(str, ch) in g_strchr() argument
891 int ch;
894 if (*str == ch)
/PHP-5.5/scripts/dev/generate-phpt/tests/
H A DgtIfClassHasMethodTest.php12 $ch = new gtIfClassHasMethod();
13 $this->assertTrue($ch->check($clo));
20 $ch = new gtIfClassHasMethod();
21 $this->assertFalse($ch->check($clo));
28 $ch = new gtIfClassHasMethod();
29 $this->assertTrue($ch->check($clo));
36 $ch = new gtIfClassHasMethod();
37 $this->assertEquals($ch->getMessage(), gtText::get('methodNotSpecified'));
H A DgtIsSpecifiedFunctionOrMethodTest.php12 $ch = new gtIsSpecifiedFunctionOrMethod();
13 $this->assertTrue($ch->check($clo));
20 $ch = new gtIsSpecifiedFunctionOrMethod();
21 $this->assertTrue($ch->check($clo));
28 $ch = new gtIsSpecifiedFunctionOrMethod();
29 $this->assertFalse($ch->check($clo));
37 $ch = new gtIsSpecifiedFunctionOrMethod();
38 $this->assertEquals($ch->getMessage(), gtText::get('functionOrMethodNotSpecified'));
H A DgtIsSpecifiedTestTypeTest.php12 $ch = new gtIsSpecifiedTestType();
13 $this->assertTrue($ch->check($clo));
20 $ch = new gtIsSpecifiedTestType();
21 $this->assertFalse($ch->check($clo));
28 $ch = new gtIsSpecifiedtestType();
29 $this->assertEquals($ch->getMessage(), gtText::get('testTypeNotSpecified'));
H A DgtIsValidClassTest.php12 $ch = new gtIsValidClass();
13 $this->assertTrue($ch->check($clo));
20 $ch = new gtIsValidClass();
21 $this->assertFalse($ch->check($clo));
28 $ch = new gtIsValidClass();
29 $this->assertTrue($ch->check($clo));
36 $ch = new gtIsvalidClass();
37 $this->assertEquals($ch->getMessage(), gtText::get('unknownClass'));
H A DgtIsValidFunctionTest.php12 $ch = new gtIsValidFunction();
13 $this->assertTrue($ch->check($clo));
20 $ch = new gtIsValidFunction();
21 $this->assertFalse($ch->check($clo));
28 $ch = new gtIsValidFunction();
29 $this->assertTrue($ch->check($clo));
36 $ch = new gtIsvalidFunction();
37 $this->assertEquals($ch->getMessage(), gtText::get('unknownFunction'));
H A DgtIsValidMethodTest.php12 $ch = new gtIsValidMethod();
13 $this->assertTrue($ch->check($clo));
20 $ch = new gtIsValidMethod();
21 $this->assertFalse($ch->check($clo));
28 $ch = new gtIsValidMethod();
29 $this->assertTrue($ch->check($clo));
36 $ch = new gtIsvalidMethod();
37 $this->assertEquals($ch->getMessage(), gtText::get('unknownMethod'));
/PHP-5.5/sapi/litespeed/
H A Dlsapi_main.c517 char ch; in lsapi_chdir_primary_script() local
530 ch = *p; in lsapi_chdir_primary_script()
538 *p = ch; in lsapi_chdir_primary_script()
H A Dlsapilib.c1870 char ch = toupper( *pKey ); in GetHeaderVar() local
1871 if ((ch != *p )||(( *p == '_' )&&( ch != '-'))) in GetHeaderVar()
2048 char ch = *pKey++; in LSAPI_ForeachHeader_r() local
2049 if ( ch == '-' ) in LSAPI_ForeachHeader_r()
2052 *p++ = toupper( ch ); in LSAPI_ForeachHeader_r()
2165 char ch = *(pHeaderName + nameLen - 1 ); in LSAPI_AppendRespHeader2_r() local
2166 if (( ch == '\n' )||( ch == '\r' )) in LSAPI_AppendRespHeader2_r()
2175 char ch = *(pHeaderValue + valLen - 1 ); in LSAPI_AppendRespHeader2_r() local
2176 if (( ch == '\n' )||( ch == '\r' )) in LSAPI_AppendRespHeader2_r()
2216 char ch = *(pBuf + len - 1 ); in LSAPI_AppendRespHeader_r() local
[all …]
/PHP-5.5/sapi/cli/
H A Dphp_http_parser.c390 if (ch == CR || ch == LF) in php_http_parser_execute()
462 if (ch < '1' || ch > '9') goto error; in php_http_parser_execute()
475 if (ch < '0' || ch > '9') goto error; in php_http_parser_execute()
510 if (ch < '0' || ch > '9') { in php_http_parser_execute()
523 if (ch < '0' || ch > '9') { in php_http_parser_execute()
568 if (ch == CR || ch == LF) in php_http_parser_execute()
648 if (ch == '/' || ch == '*') { in php_http_parser_execute()
678 } else if ('0' <= ch && ch <= '9') { in php_http_parser_execute()
700 if ((ch >= '0' && ch <= '9') || ch == '.' || ch == '-') break; in php_http_parser_execute()
725 if (ch >= '0' && ch <= '9') break; in php_http_parser_execute()
[all …]
/PHP-5.5/main/
H A Dsnprintf.c569 #define PAD( width, len, ch ) do \ argument
571 INS_CHAR( ch, sp, bep, cc ) ; \
581 #define PREFIX( str, length, ch ) *--str = ch ; length++ ; has_prefix = YES argument
H A Dspprintf.c138 #define INS_CHAR_NR(xbuf, ch) do { \ argument
139 smart_str_appendc(xbuf, ch); \
146 #define INS_CHAR(xbuf, ch) \ argument
147 INS_CHAR_NR(xbuf, ch)
153 #define PAD(xbuf, count, ch) do { \ argument
157 memset(xbuf->c + xbuf->len, ch, (count)); \
/PHP-5.5/
H A Dltmain.sh5017 (((ch) == DIR_SEPARATOR) || ((ch) == DIR_SEPARATOR_2))
/PHP-5.5/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 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;
/PHP-5.5/ext/standard/tests/strings/
H A Dstrrchr_variation5.phpt39 ch
53 ch
H A Dstr_split_variation3.phpt152 string(7) "cape ch"
H A Dstr_split_variation4.phpt115 string(5) " & ch"
179 string(5) "pe ch"
186 string(5) "to ch"
H A Dchunk_split_variation10.phpt42 ') speci@! ch@r$ (' //string with special chars
59 string(82) "This is t o test ch unk_split () with v arious 's ingle quo ted' endi ng string . "
65 string(118) "This is t@#$%^o test ch@#$%^unk_split@#$%^() with v@#$%^arious 's@#$%^ingle quo@#$%^te…
67 string(91) "This is t\to test ch\tunk_split\t() with v\tarious 's\tingle quo\tted' endi\tng string\…
69 string(91) "This is t\no test ch\nunk_split\n() with v\narious 's\ningle quo\nted' endi\nng string\…
71 string(91) "This is t\ro test ch\runk_split\r() with v\rarious 's\ringle quo\rted' endi\rng string\…
73 string(109) "This is t\r\no test ch\r\nunk_split\r\n() with v\r\narious 's\r\ningle quo\r\nted' end…
75 string(91) "This is t\0o test ch\0unk_split\0() with v\0arious 's\0ingle quo\0ted' endi\0ng string\…
79 string(118) "This is t(MSG)o test ch(MSG)unk_split(MSG)() with v(MSG)arious 's(MSG)ingle quo(MSG)te…
83 string(217) "This is t) numbers 1234 (o test ch) numbers 1234 (unk_split) numbers 1234 (() with v) …
[all …]
H A Dchunk_split_variation11.phpt22 sPeci@! ch@r$ :) & numbers 222.This is \k wrong escape char.
35 ")speci@! ch@r$(", //String with special chars
51 sPeci@! ch@r$ :) & numbers 222.This is \k wrong escape char."
55 s Peci@! ch@r$ :) & number s 222. This i s \k w rong e scape char. "
59 saPeci@!a ch@r$a :) & anumberas 222.aThis ias \k warong eascape achar.a"
63 sENDINGPeci@!ENDING ch@r$ENDING :) & ENDINGnumberENDINGs 222.ENDINGThis iENDINGs \k wENDINGrong eEN…
77 ch@r$
90 s123Peci@!123 ch@r$123 :) & 123number123s 222.123This i123s \k w123rong e123scape 123char.123"
92 string(398) "This i)speci@! ch@r$(s here)speci@! ch@r$(doc st)speci@! ch@r$(ring w)speci@! ch@r$(it…
93 .)speci@! ch@r$(It als)speci@! ch@r$(o cont)speci@! ch@r$(ains
[all …]
H A Dchunk_split_variation12.phpt20 $str = "This is str to check with heredoc ending.This\tcontains,\nspeci@! ch@r$ __with wrong \k esc…
90 speci@! ch@r$ __with wrong \k escape char 222."
93 speci@! ch@r$ __with wrong \k escape char 222."
96 specai@! ch@r$ a__with wroang \k escaape char 22a2.a"
99 specThis is simple heredoc stringi@! ch@r$ This is simple heredoc string__with wroThis is simple he…
114 heredoci@! ch@r$ This is to check chunk_split
127 specThis checks with $, %, &, charsi@! ch@r$ This checks with $, %, &, chars__with wroThis checks w…
136 white space charsi@! ch@r$ This checks and
144 spec"To check " in heredoc".I'm sure it'll \work!i@! ch@r$ "To check " in heredoc".I'm sure it'll \…
H A Dchunk_split_variation2.phpt94 string(28) "This is ch*uklen vari*ation*"
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????"

Completed in 80 milliseconds

1234567