Home
last modified time | relevance | path

Searched refs:TRUE (Results 1 – 25 of 564) sorted by relevance

12345678910>>...23

/php-src/ext/pcre/pcre2lib/
H A Dpcre2_newline.c95 return TRUE; in PRIV()
99 return TRUE; in PRIV()
116 return TRUE; in PRIV()
120 return TRUE; in PRIV()
126 return TRUE; in PRIV()
131 return TRUE; in PRIV()
138 return TRUE; in PRIV()
191 return TRUE; in PRIV()
195 return TRUE; in PRIV()
207 return TRUE; in PRIV()
[all …]
H A Dpcre2_chkdint.c71 if (__builtin_mul_overflow(a, b, &m)) return TRUE; in PRIV()
84 if (sizeof(m) > sizeof(*r) && m > (INT64_OR_DOUBLE)PCRE2_SIZE_MAX) return TRUE; in PRIV()
87 if (m > PCRE2_SIZE_MAX) return TRUE; in PRIV()
/php-src/ext/standard/tests/strings/
H A Dmd5raw.phpt5 echo bin2hex(md5("", TRUE))."\n";
6 echo bin2hex(md5("a", TRUE))."\n";
7 echo bin2hex(md5("abc", TRUE))."\n";
8 echo bin2hex(md5("message digest", TRUE))."\n";
9 echo bin2hex(md5("abcdefghijklmnopqrstuvwxyz", TRUE))."\n";
10 echo bin2hex(md5("ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789", TRUE))."\n";
11 …d5("12345678901234567890123456789012345678901234567890123456789012345678901234567890", TRUE))."\n";
H A Dsha1raw.phpt5 echo bin2hex(sha1("abc", TRUE))."\n";
6 echo bin2hex(sha1("abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq", TRUE))."\n";
7 echo bin2hex(sha1("a", TRUE))."\n";
8 echo bin2hex(sha1("0123456701234567012345670123456701234567012345670123456701234567", TRUE))."\n";
H A Dstr_replace_variation2.phpt13 $subject = "Hello, world,0120333.3445-1.234567 NULL TRUE FALSE\000
40 TRUE,
41 "TRUE",
68 string(181) "Hello, world,0120333.3445-1.234567 NULL TRUE FALSE%0
75 string(181) "Hello, world,0120333.3445-1.234567 NULL TRUE FALSE%0
82 string(186) "Hello, world,0120333.3445-1.234567 NULL TRUE FALSE%0
89 string(195) "Hello, world,0120333.3445-1.234567 NULL TRUE FALSE%0
96 string(186) "Hello, world,0120333.3445-1.234567 NULL TRUE FALSE%0
103 string(195) "Hello, world,0120333.3445-1.234567 NULL TRUE FALSE%0
117 string(193) "Hello, world,0120333.3445FOUND67 NULL TRUE FALSE%0
[all …]
H A Dvsprintf_basic4.phpt12 $arg1 = array(TRUE);
13 $arg2 = array(TRUE,FALSE);
14 $arg3 = array(TRUE,FALSE,TRUE);
H A Dvprintf_basic4.phpt12 $arg1 = array(TRUE);
13 $arg2 = array(TRUE,FALSE);
14 $arg3 = array(TRUE,FALSE,TRUE);
H A Dstrstr.phpt21 "Hello world,012033 -3.3445 NULL TRUE FALSE\0 abcd\xxyz \x000 octal\n
41 TRUE,
42 "TRUE",
193 string(66) "-3.3445 NULL TRUE FALSE%0 abcd\xxyz %00 octal
198 string(66) "-3.3445 NULL TRUE FALSE%0 abcd\xxyz %00 octal
203 string(66) "-3.3445 NULL TRUE FALSE%0 abcd\xxyz %00 octal
208 string(66) "-3.3445 NULL TRUE FALSE%0 abcd\xxyz %00 octal
213 string(54) "NULL TRUE FALSE%0 abcd\xxyz %00 octal
228 string(72) "12033 -3.3445 NULL TRUE FALSE%0 abcd\xxyz %00 octal
233 string(49) "TRUE FALSE%0 abcd\xxyz %00 octal
[all …]
H A Dvfprintf_basic4.phpt12 $arg1 = array(TRUE);
13 $arg2 = array(TRUE,FALSE);
14 $arg3 = array(TRUE,FALSE,TRUE);
/php-src/ext/intl/tests/
H A Ddateformat_is_set_lenient.phpt25 $res_str .= "TRUE\n";
32 $isLenient = TRUE;
35 $res_str .= "TRUE\n";
43 $res_str .= "TRUE\n";
54 $res_str .= "TRUE\n";
62 $res_str .= "TRUE\n";
80 After call to get_lenient : lenient= TRUE
82 Setting IntlDateFormatter with lenient = TRUE
83 After call to is_lenient : lenient= TRUE
/php-src/ext/session/tests/user_session_module/
H A Dbug71162.phpt14 return TRUE;
18 return TRUE;
27 return TRUE;
31 return TRUE;
35 return TRUE;
43 return TRUE;
48 return TRUE;
/php-src/ext/standard/tests/array/
H A Darray_slice_variation7.phpt52 TRUE => 'uppert',
100 $preserve_keys = TRUE
124 $preserve_keys = TRUE
136 $preserve_keys = TRUE
148 $preserve_keys = TRUE
164 $preserve_keys = TRUE
180 $preserve_keys = TRUE
192 $preserve_keys = TRUE
204 $preserve_keys = TRUE
224 $preserve_keys = TRUE
[all …]
H A Dbug41686.phpt10 array_slice($a, 1, 2, TRUE),
11 array_slice($a, 1, NULL, TRUE),
13 array_slice($b, 1, 2, TRUE),
14 array_slice($b, 1, NULL, TRUE)
H A Darray_search_variation4.phpt26 var_dump( array_search("Good", array(0,"hello"), TRUE) );
31 var_dump( array_search(0, array("this")),TRUE );
36 var_dump( array_search("this", array(0), TRUE) );
40 array("a"=> TRUE, "b"=> TRUE,
41 array("c"=> TRUE, "d"=>TRUE)
48 var_dump( array_search('123abc', array(123), TRUE) ); // false in strict mode
H A Din_array_variation4.phpt28 var_dump( in_array("Good", array(0,"hello"), TRUE) );
33 var_dump( in_array(0, array("this")),TRUE );
38 var_dump( in_array("this", array(0), TRUE) );
42 array("a"=> TRUE, "b"=> TRUE,
43 array("c"=> TRUE, "d"=>TRUE)
50 var_dump( in_array('123abc', array(123), TRUE) ); // false in strict mode
H A Darray_keys_variation_004.phpt8 TRUE => TRUE,
21 $values = array(TRUE, FALSE, 1, 0, -1, "1", "0", "-1", NULL, array(), "php", "");
23 var_dump(array_keys($types_arr, $value, TRUE));
H A D007.phpt8 echo '$a='.var_export($a,TRUE).";\n";
9 echo '$b='.var_export($b,TRUE).";\n";
10 echo '$c='.var_export($c,TRUE).";\n";
44 echo '$a='.var_export($a,TRUE).";\n";
45 echo '$b='.var_export($b,TRUE).";\n";
46 echo '$c='.var_export($c,TRUE).";\n";
82 echo '$a='.var_export($a,TRUE).";\n";
83 echo '$b='.var_export($b,TRUE).";\n";
84 echo '$c='.var_export($c,TRUE).";\n";
99 echo '$a='.var_export($a,TRUE).";\n";
[all …]
/php-src/win32/build/
H A Ddeplister.c31 return TRUE; in StatusRoutine()
35 return TRUE; in StatusRoutine()
37 return TRUE; in StatusRoutine()
/php-src/ext/ldap/tests/
H A Dldap_controls.phpt24 …[['oid' => LDAP_CONTROL_ASSERT, 'iscritical' => TRUE, 'value' => ['filter' => '(objectClass=organi…
27 …[['oid' => LDAP_CONTROL_ASSERT, 'iscritical' => TRUE, 'value' => ['filter' => '(objectClass=organi…
29 …[['oid' => LDAP_CONTROL_ASSERT, 'iscritical' => TRUE, 'value' => ['filter' => '(!(description=*))'…
33 …[['oid' => LDAP_CONTROL_ASSERT, 'iscritical' => TRUE, 'value' => ['filter' => '(!(description=*))'…
36 …ldap_delete($link, "o=test,$base", [['oid' => LDAP_CONTROL_ASSERT, 'iscritical' => TRUE, 'value' =…
39 …p_rename($link, "o=test,$base", "o=test2", "", TRUE, [['oid' => LDAP_CONTROL_ASSERT, 'iscritical' …
41 …test,$base", "o", "test", [['oid' => LDAP_CONTROL_ASSERT, 'iscritical' => TRUE, 'value' => ['filte…
42 …test,$base", "o", "test", [['oid' => LDAP_CONTROL_ASSERT, 'iscritical' => TRUE, 'value' => ['filte…
50 …[['oid' => LDAP_CONTROL_VALUESRETURNFILTER, 'iscritical' => TRUE, 'value' => ['filter' => '(l=*her…
/php-src/ext/standard/tests/general_functions/
H A Dvar_export_basic2.phpt10 "TRUE" => TRUE,
25 var_dump( var_export( $bool_value, TRUE) );
40 -- Iteration: TRUE --
/php-src/ext/curl/tests/
H A Dbug46711.phpt10 CURLOPT_AUTOREFERER => TRUE,
11 CURLOPT_BINARYTRANSFER => TRUE
14 curl_setopt( $ch, CURLOPT_AUTOREFERER , TRUE );
/php-src/ext/mbstring/tests/
H A Dmb_check_encoding.phpt10 $arr = [1234, 12.34, TRUE, FALSE, NULL, $str, 'key'=>$str, $str=>'val'];
15 $arr1 = [1234, 12.34, TRUE, FALSE, NULL, 'key'=>$str, $str=>'val'];
16 $arr2 = [1234, 12.34, TRUE, FALSE, NULL, $str=>'val'];
/php-src/Zend/tests/
H A Dconcat_003.phpt11 $time = microtime(TRUE);
27 $time = microtime(TRUE);
34 $t = microtime(TRUE) - $time;
/php-src/win32/
H A Dconsole.c30 result = TRUE; in php_win32_console_fileno_is_console()
50 result = TRUE; in php_win32_console_fileno_has_vt100()
80 result = TRUE; in php_win32_console_fileno_set_vt100()
84 result = TRUE; in php_win32_console_fileno_set_vt100()
/php-src/ext/hash/tests/
H A Dhash_pbkdf2_basic.phpt10 echo "sha1(raw): " . bin2hex(hash_pbkdf2('sha1', 'password', 'salt', 1, 20, TRUE))."\n";
12 …('sha1', 'passwordPASSWORDpassword', 'saltSALTsaltSALTsaltSALTsaltSALTsalt', 4096, 25, TRUE))."\n";
15 echo "sha256(raw): " . bin2hex(hash_pbkdf2('sha256', 'password', 'salt', 1, 20, TRUE))."\n";
17 …sha256', 'passwordPASSWORDpassword', 'saltSALTsaltSALTsaltSALTsaltSALTsalt', 4096, 40, TRUE))."\n";

Completed in 38 milliseconds

12345678910>>...23