Home
last modified time | relevance | path

Searched refs:FALSE (Results 1 – 25 of 1231) sorted by relevance

12345678910>>...50

/PHP-5.3/ext/standard/tests/general_functions/
H A Dis_resource_basic.phpt45 echo $types[$i]. " test returns FALSE\n";
56 echo " FALSE\n";
66 echo " FALSE\n";
76 bool=false test returns FALSE
77 bool=true test returns FALSE
78 integer test returns FALSE
79 double test returns FALSE
80 string test returns FALSE
81 array test returns FALSE
82 NULL test returns FALSE
[all …]
H A Dvar_export_basic4.phpt24 "\"FALSE\"" => "FALSE",
39 var_export( $str, FALSE);
106 -- Iteration: "FALSE" --
107 'FALSE'
108 'FALSE'
109 string(7) "'FALSE'"
/PHP-5.3/ext/mbstring/tests/
H A Dmb_strpos.phpt54 ($r === FALSE) ? print "OK_OUT_RANGE\n" : print "NG_OUT_RANGE\n";
56 ($r === FALSE) ? print "OK_OUT_RANGE\n" : print "NG_OUT_RANGE\n";
68 ($r === FALSE) ? print "OK_STR\n" : print "NG_STR\n";
70 ($r === FALSE) ? print "OK_NEWLINE\n" : print "NG_NEWLINE\n";
83 ($r === FALSE) ? print "OK_STR\n" : print "NG_STR\n";
85 ($r === FALSE) ? print "OK_NEWLINE\n" : print "NG_NEWLINE\n";
97 ($r === FALSE) ? print "OK_STR\n" : print "NG_STR\n";
99 ($r === FALSE) ? print "OK_NEWLINE\n" : print "NG_NEWLINE\n";
106 ($r === FALSE) ? print("OK_NULL\n") : print("NG_NULL\n");
108 ($r === FALSE) ? print("OK_ARRAY\n") : print("NG_ARRAY\n");
[all …]
H A Dmb_stripos.phpt57 ($r === FALSE) ? print "OK_OUT_RANGE\n" : print "NG_OUT_RANGE\n";
59 ($r === FALSE) ? print "OK_OUT_RANGE\n" : print "NG_OUT_RANGE\n";
71 ($r === FALSE) ? print "OK_STR\n" : print "NG_STR\n";
73 ($r === FALSE) ? print "OK_NEWLINE\n" : print "NG_NEWLINE\n";
86 ($r === FALSE) ? print "OK_STR\n" : print "NG_STR\n";
88 ($r === FALSE) ? print "OK_NEWLINE\n" : print "NG_NEWLINE\n";
100 ($r === FALSE) ? print "OK_STR\n" : print "NG_STR\n";
102 ($r === FALSE) ? print "OK_NEWLINE\n" : print "NG_NEWLINE\n";
109 ($r === FALSE) ? print("OK_NULL\n") : print("NG_NULL\n");
111 ($r === FALSE) ? print("OK_ARRAY\n") : print("NG_ARRAY\n");
[all …]
/PHP-5.3/ext/intl/tests/
H A Ddateformat_is_set_lenient.phpt28 $res_str .= "FALSE\n";
38 $res_str .= "FALSE\n";
46 $res_str .= "FALSE\n";
52 $isLenient = FALSE;
57 $res_str .= "FALSE\n";
65 $res_str .= "FALSE\n";
86 Setting IntlDateFormatter with lenient =FALSE
87 After call to is_lenient : lenient= FALSE
/PHP-5.3/ext/soap/interop/
H A Dtest.utility.php57 if (($f1 == 'false' || $f1 === FALSE || $f1 == 0) &&
58 ($f2 == 'false' || $f2 === FALSE || $f2 == 0)) return TRUE;
59 return FALSE;
70 $ok = FALSE;
80 if (gettype($ar1) != 'array' || gettype($ar2) != 'array') return FALSE;
81 if (count($ar1) != count($ar2)) return FALSE;
83 if (!array_key_exists($k,$ar2)) return FALSE;
84 if (!compare($v,$ar2[$k])) return FALSE;
90 if (gettype($obj1) != 'object' || gettype($obj2) != 'object') return FALSE;
/PHP-5.3/ext/standard/tests/strings/
H A Dstr_replace_variation2.phpt15 $subject = "Hello, world,0120333.3445-1.234567 NULL TRUE FALSE\000
47 FALSE,
48 "FALSE",
72 string(177) "Hello, world,0120333.3445-1.234567 NULL TRUE FALSE
79 string(177) "Hello, world,0120333.3445-1.234567 NULL TRUE FALSE
86 string(182) "Hello, world,0120333.3445-1.234567 NULL TRUE FALSE
93 string(191) "Hello, world,0120333.3445-1.234567 NULL TRUE FALSE
100 string(182) "Hello, world,0120333.3445-1.234567 NULL TRUE FALSE
107 string(191) "Hello, world,0120333.3445-1.234567 NULL TRUE FALSE
121 string(189) "Hello, world,0120333.3445FOUND67 NULL TRUE FALSE
[all …]
/PHP-5.3/ext/standard/tests/array/
H A Darray_slice_variation7.phpt129 $preserve_keys = FALSE
151 $preserve_keys = FALSE
169 $preserve_keys = FALSE
183 $preserve_keys = FALSE
195 $preserve_keys = FALSE
209 $preserve_keys = FALSE
225 $preserve_keys = FALSE
239 $preserve_keys = FALSE
251 $preserve_keys = FALSE
267 $preserve_keys = FALSE
[all …]
/PHP-5.3/ext/session/tests/
H A Dsession_set_cookie_params_variation5.phpt21 var_dump(session_set_cookie_params(3600, "/path", "blah", FALSE, FALSE));
25 var_dump(session_set_cookie_params(3600, "/path", "blah", FALSE, TRUE));
29 var_dump(session_set_cookie_params(3600, "/path", "blah", FALSE, FALSE));
/PHP-5.3/ext/mysqli/tests/
H A Dbug62046.phpt15 if (FALSE === ($stmt = $link->prepare('SELECT 42'))) {
18 if (FALSE === $stmt->execute()) {
21 if (FALSE === $stmt->store_result()) {
25 if (FALSE === $stmt->bind_result($one)) {
28 if (FALSE === $stmt->reset()) {
/PHP-5.3/ext/standard/tests/file/
H A D004.phpt11 echo file_put_contents("TEST1", file_get_contents(__FILE__)) !== FALSE ? 'OK' : 'FAIL';
17 if ($int === $old_int && $ret !== FALSE && md5($int) == md5_file("TEST2")) {
27 if ($int === $old_int && $ret !== FALSE && md5($int) == md5_file("TEST3")) {
36 if ($ret !== FALSE && md5(__FILE__) == md5_file("TEST4")) {
45 if ($ret !== FALSE && @md5(implode('', $_SERVER)) == md5_file("TEST5")) {
/PHP-5.3/ext/mbstring/oniguruma/enc/
H A Diso8859_1.c105 return FALSE; in iso_8859_1_is_mbc_ambiguous()
110 return (v != 0 ? TRUE : FALSE); in iso_8859_1_is_mbc_ambiguous()
112 return FALSE; in iso_8859_1_is_mbc_ambiguous()
121 return FALSE; in iso_8859_1_is_code_ctype()
H A Diso8859_13.c141 return FALSE; in is_mbc_ambiguous()
146 return (v != 0 ? TRUE : FALSE); in is_mbc_ambiguous()
148 return FALSE; in is_mbc_ambiguous()
157 return FALSE; in is_code_ctype()
H A Diso8859_16.c141 return FALSE; in is_mbc_ambiguous()
146 return (v != 0 ? TRUE : FALSE); in is_mbc_ambiguous()
148 return FALSE; in is_mbc_ambiguous()
157 return FALSE; in is_code_ctype()
H A Diso8859_2.c142 return FALSE; in iso_8859_2_is_mbc_ambiguous()
147 return (v != 0 ? TRUE : FALSE); in iso_8859_2_is_mbc_ambiguous()
149 return FALSE; in iso_8859_2_is_mbc_ambiguous()
262 return FALSE; in iso_8859_2_is_code_ctype()
H A Diso8859_3.c142 return FALSE; in iso_8859_3_is_mbc_ambiguous()
147 return (v != 0 ? TRUE : FALSE); in iso_8859_3_is_mbc_ambiguous()
149 return FALSE; in iso_8859_3_is_mbc_ambiguous()
158 return FALSE; in iso_8859_3_is_code_ctype()
H A Diso8859_7.c141 return FALSE; in iso_8859_7_is_mbc_ambiguous()
146 return (v != 0 ? TRUE : FALSE); in iso_8859_7_is_mbc_ambiguous()
148 return FALSE; in iso_8859_7_is_mbc_ambiguous()
157 return FALSE; in iso_8859_7_is_code_ctype()
H A Diso8859_10.c142 return FALSE; in iso_8859_10_is_mbc_ambiguous()
147 return (v != 0 ? TRUE : FALSE); in iso_8859_10_is_mbc_ambiguous()
149 return FALSE; in iso_8859_10_is_mbc_ambiguous()
158 return FALSE; in iso_8859_10_is_code_ctype()
H A Diso8859_14.c141 return FALSE; in is_mbc_ambiguous()
146 return (v != 0 ? TRUE : FALSE); in is_mbc_ambiguous()
148 return FALSE; in is_mbc_ambiguous()
157 return FALSE; in is_code_ctype()
H A Diso8859_4.c142 return FALSE; in iso_8859_4_is_mbc_ambiguous()
147 return (v != 0 ? TRUE : FALSE); in iso_8859_4_is_mbc_ambiguous()
149 return FALSE; in iso_8859_4_is_mbc_ambiguous()
158 return FALSE; in iso_8859_4_is_code_ctype()
H A Diso8859_9.c142 return FALSE; in iso_8859_9_is_mbc_ambiguous()
147 return (v != 0 ? TRUE : FALSE); in iso_8859_9_is_mbc_ambiguous()
149 return FALSE; in iso_8859_9_is_mbc_ambiguous()
158 return FALSE; in iso_8859_9_is_code_ctype()
/PHP-5.3/ext/gd/libgd/
H A Dgdkanji.c34 #ifdef FALSE
35 #undef FALSE
39 #define FALSE 0 macro
252 int daku = FALSE; in han2zen()
253 int handaku = FALSE; in han2zen()
401 hankaku = FALSE; in do_convert()
406 jisx0208 = FALSE; in do_convert()
490 kanji = FALSE; in do_check_and_conv()
503 kanji = FALSE; in do_check_and_conv()
508 kanji = FALSE; in do_check_and_conv()
[all …]
/PHP-5.3/ext/soap/
H A Dphp_packet_soap.c47 return FALSE; in parse_packet_soap()
52 return FALSE; in parse_packet_soap()
71 return FALSE; in parse_packet_soap()
79 return FALSE; in parse_packet_soap()
87 return FALSE; in parse_packet_soap()
92 return FALSE; in parse_packet_soap()
96 return FALSE; in parse_packet_soap()
128 return FALSE; in parse_packet_soap()
136 return FALSE; in parse_packet_soap()
154 return FALSE; in parse_packet_soap()
[all …]
/PHP-5.3/sapi/isapi/stresstest/
H A Dstresstest.cpp115 return FALSE; in CompareFiles()
120 return FALSE; in CompareFiles()
164 return FALSE; in CompareStringWithFile()
209 return FALSE; in ReadGlobalEnvironment()
376 return FALSE; in ParseTestFile()
609 ok = FALSE; in IsapiThread()
676 context.waitEvent = CreateEvent(NULL, FALSE, FALSE, NULL); in stress_main()
746 return FALSE; in GetServerVariable()
751 return FALSE; in GetServerVariable()
770 return FALSE; in ReadClient()
[all …]
/PHP-5.3/ext/pcre/pcrelib/
H A Dpcre_newline.c97 default: return FALSE; in PRIV()
127 default: return FALSE; in PRIV()
176 default: return FALSE; in PRIV()
206 default: return FALSE; in PRIV()

Completed in 78 milliseconds

12345678910>>...50