Home
last modified time | relevance | path

Searched refs:all (Results 1 – 25 of 624) sorted by relevance

12345678910>>...25

/php-src/ext/standard/tests/math/
H A Dpow_basic2.phpt10 echo "\n-- The following all result in INF --\n";
15 echo "\n\n-- The following all result in 0 --\n";
21 echo "\n\n-- The following all result in -0 --\n";
24 echo "\n\n-- The following all result in -INF --\n";
30 -- The following all result in INF --
36 -- The following all result in 0 --
43 -- The following all result in -0 --
47 -- The following all result in -INF --
/php-src/Zend/tests/
H A Dgh11171.phpt5 $all = ['test'];
6 foreach ($all as &$item) {
7 $all += [$item];
9 var_dump($all);
/php-src/tests/classes/
H A Dstatic_properties_004.phpt12 echo "\nChanging one changes all the others:\n";
13 D::$p = 'changed.all';
27 Changing one changes all the others:
28 string(11) "changed.all"
29 string(11) "changed.all"
30 string(11) "changed.all"
/php-src/ext/intl/tests/
H A Didn_uts46_basic.phpt15 echo "all ok, no details:", "\n";
19 echo "all ok, no details, transitional:", "\n";
22 echo "all ok, with details:", "\n";
32 all ok, no details:
34 all ok, no details, transitional:
36 all ok, with details:
/php-src/Zend/tests/generators/
H A Dyield_from_multi_tree_exception.phpt23 $all = array();
24 $all[] = $gens[0][0] = from($levels);
28 $all[] = $gens[$level][$i] = gen($gens[$level-1][$i >> 1], $level);
34 foreach ($all as $gen) {
43 unset($all[array_search($gen, $all)]);
/php-src/ext/date/tests/
H A Dgettimeofday_basic.phpt9 // Initialise all required variables
12 // Calling gettimeofday() with all possible arguments
18 // Initialise all required variables
21 // Calling gettimeofday() with all possible arguments
H A Dcheckdate_basic1.phpt10 echo "-- The following are all valid dates --\n";
20 echo "-- The following are all invalid dates --\n";
31 -- The following are all valid dates --
40 -- The following are all invalid dates --
/php-src/ext/standard/tests/strings/
H A Dchunk_split_basic.phpt6 * Testing chunk_split() for basic functionality by passing all possible
13 // Initialise all required variables
18 // Calling chunk_split() with all possible arguments
19 echo "-- Testing chunk_split() with all possible arguments --\n";
36 -- Testing chunk_split() with all possible arguments --
H A Dsetlocale_variation2.phpt2 Test setlocale() function : usage variations - Setting all available locales in the platform
15 /* setlocale() to set all available locales in the system and check the success count */
29 // run the command 'locale -a' to fetch all locales available in the system
40 // return all the locale found in the system, except for broken one
44 // gather all the locales installed in the system
51 echo "-- Test setlocale() with all available locale in the system --\n";
52 // gather all locales installed in the system(stored $all_system_locales),
84 -- Test setlocale() with all available locale in the system --
H A Dstr_split_basic.phpt7 // Initialise all required variables
11 // Calling str_split() with all possible arguments
12 echo "-- With all possible arguments --\n";
27 -- With all possible arguments --
/php-src/ext/mbstring/tests/
H A Dsjis2004_encoding.phpt15 /* Read in the table of all characters in SJIS-2004 */
45 echo "SJIS-2004 verification and conversion works for all valid characters\n";
51 echo "SJIS-2004 verification and conversion rejects all invalid characters\n";
54 echo "Unicode -> SJIS-2004 conversion works on all valid characters\n";
58 echo "Unicode -> SJIS-2004 conversion works on all invalid characters\n";
74 SJIS-2004 verification and conversion works for all valid characters
75 SJIS-2004 verification and conversion rejects all invalid characters
76 Unicode -> SJIS-2004 conversion works on all valid characters
77 Unicode -> SJIS-2004 conversion works on all invalid characters
H A Deucjp_2004_encoding.phpt59 echo "EUC-JP-2004 verification and conversion works for all valid characters\n";
64 echo "EUC-JP-2004 verification and conversion rejects all invalid characters\n";
67 echo "Unicode -> EUC-JP-2004 conversion works on all valid characters\n";
71 echo "Unicode -> EUC-JP-2004 conversion works on all invalid characters\n";
81 EUC-JP-2004 verification and conversion works for all valid characters
82 EUC-JP-2004 verification and conversion rejects all invalid characters
83 Unicode -> EUC-JP-2004 conversion works on all valid characters
84 Unicode -> EUC-JP-2004 conversion works on all invalid characters
H A Deucjp_encoding.phpt15 /* Read in the table of all characters in EUC-JP */
59 echo "Encoding verification and conversion work for all valid characters\n";
63 echo "Encoding verification and conversion work for all invalid characters\n";
69 echo "Unicode -> EUC-JP conversion works on all valid characters\n";
78 echo "Unicode -> EUC-JP conversion works on all invalid characters\n";
88 Encoding verification and conversion work for all valid characters
89 Encoding verification and conversion work for all invalid characters
91 Unicode -> EUC-JP conversion works on all valid characters
92 Unicode -> EUC-JP conversion works on all invalid characters
H A Dsjis_encoding.phpt15 /* Read in the table of all characters in Shift-JIS */
72 echo "SJIS verification and conversion works on all valid characters\n";
78 echo "SJIS verification and conversion works on all invalid characters\n";
81 echo "Unicode -> SJIS conversion works on all valid characters\n";
85 echo "Unicode -> SJIS conversion works on all invalid characters\n";
99 SJIS verification and conversion works on all valid characters
100 SJIS verification and conversion works on all invalid characters
101 Unicode -> SJIS conversion works on all valid characters
102 Unicode -> SJIS conversion works on all invalid characters
/php-src/ext/standard/
H A Dhtml.h47 PHPAPI zend_string *php_escape_html_entities(const unsigned char *old, size_t oldlen, int all, int …
48 PHPAPI zend_string *php_escape_html_entities_ex(const unsigned char *old, size_t oldlen, int all, i…
49 PHPAPI zend_string *php_unescape_html_entities(zend_string *str, int all, int flags, const char *hi…
H A Dhtml.c56 #define LIMIT_ALL(all, doctype, charset) do { \ argument
57 (all) = (all) && !CHARSET_PARTIAL_SUPPORT((charset)) && ((doctype) != ENT_HTML_DOC_XML1); \
823 int all, in traverse_for_entities() argument
861 if (!all && (code > 63U || in traverse_for_entities()
934 if (all) { in unescape_inverse_map()
964 if (all) { in determine_entity_table()
991 if (all) { in php_unescape_html_entities()
1122 LIMIT_ALL(all, doctype, charset); in php_escape_html_entities_ex()
1449 zend_long all = PHP_HTML_SPECIALCHARS, in PHP_FUNCTION() local
1464 Z_PARAM_LONG(all) in PHP_FUNCTION()
[all …]
/php-src/ext/zlib/tests/
H A Dgzopen_basic.phpt10 // Initialise all required variables
15 // Calling gzopen() with all possible arguments
30 all I know is that you can realize it
36 all I know is that you can realize it
H A Dreadgzfile_variation12.phpt27 all I know is that you can realize it
34 all I know is that you can realize it
41 all I know is that you can realize it
48 all I know is that you can realize it
H A Dreadgzfile_variation9.phpt26 all I know is that you can realize it
33 all I know is that you can realize it
40 all I know is that you can realize it
47 all I know is that you can realize it
/php-src/ext/standard/tests/array/
H A Darray_multisort_basic2.phpt7 // Initialise all required variables
11 echo "\n-- Testing array_multisort() function with all normal arguments --\n";
19 -- Testing array_multisort() function with all normal arguments --
H A Darray_multisort_basic1.phpt7 // Initialise all required variables
11 echo "\n-- Testing array_multisort() function with all normal arguments --\n";
24 -- Testing array_multisort() function with all normal arguments --
H A Darray_column_variant.phpt11 echo "-- pass null as second parameter to get back all columns indexed by third parameter --\n";
14 echo "-- pass null as second parameter and bogus third param to get back zero-indexed array of all
23 -- pass null as second parameter to get back all columns indexed by third parameter --
44 -- pass null as second parameter and bogus third param to get back zero-indexed array of all column…
/php-src/ext/zend_test/tests/
H A Dinternal-call-internal-static-return.phpt13 case ThanksFor = "all the fish";
18 var_dump(zend_call_method(IntIntStaticString::class, "from", "all the fish"));
19 var_dump(zend_call_method(IntIntStaticString::class, "tryFrom", "all the fish"));
/php-src/ext/standard/tests/mail/
H A Dmail_basic6.phpt25 // Calling mail() with all additional headers
35 // Calling mail() with all additional headers
46 // Calling mail() with all additional headers
57 // Calling mail() with all additional headers
67 // Calling mail() with all additional headers
77 // Calling mail() with all additional headers
87 // Calling mail() with all additional headers
97 // Calling mail() with all additional headers
107 // Calling mail() with all additional headers
117 // Calling mail() with all additional headers
[all …]
/php-src/Zend/tests/weakrefs/
H A Dweakrefs_006.phpt9 global $w, $all;
12 $all[] = $v;
17 $all = [];

Completed in 52 milliseconds

12345678910>>...25