Home
last modified time | relevance | path

Searched refs:f2 (Results 1 – 25 of 94) sorted by relevance

1234

/PHP-7.1/main/
H A Dmergesort.c148 q = f2; in php_mergesort()
153 b = f2, t = l2; in php_mergesort()
213 if (f2 < l2) { in php_mergesort()
292 for (f2 = f1 + size2; f2 < last; f2 += size2) { in setup()
293 if ((cmp(f2, f2+ size) > 0) != sense) in setup()
304 l2 = f2; in setup()
305 for (f2 = f1 + size2; f2 < l2; f2 += size2) { in setup()
306 if ((cmp(f2-size, f2) > 0) != sense) { in setup()
310 f1 = f2; in setup()
315 f1 = f2; in setup()
[all …]
/PHP-7.1/ext/soap/interop/
H A Dtest.utility.php29 function date_compare($f1,$f2) argument
31 return soap_datetime_to_timestamp($f1) == soap_datetime_to_timestamp($f2);
34 function hex_compare($f1, $f2) argument
36 return strcasecmp($f1,$f2) == 0;
39 function number_compare($f1, $f2) argument
43 preg_match('/.*?\.(.*)/',$f2,$m2);
48 $f2 = round($f2, $d);
49 return $f1 == $f2;
53 function boolean_compare($f1, $f2) argument
56 ($f2 == 'true' || $f2 === TRUE || $f2 != 0)) return TRUE;
[all …]
/PHP-7.1/tests/classes/
H A Dtype_hinting_004.phpt17 echo "in f2;\n";
35 call_user_func('f2');
157 in f2;
158 in f2;
159 in f2;
168 in C::f2 (static);
169 in C::f2 (static);
170 in C::f2 (static);
179 in C::f2 (instance);
180 in C::f2 (instance);
[all …]
H A Dtype_hinting_003.phpt14 static function f2(array $ar = NULL)
34 Test::f2(NULL);
35 Test::f2();
47 Test::f2()
49 Test::f2()
H A Dvisibility_002a.phpt11 public function f2() {}
21 public function f2() {}
27 protected function f2() {}
33 Fatal error: Access level to fail::f2() must be public (as in class same) in %s on line %d
H A Dvisibility_002b.phpt11 public function f2() {}
21 public function f2() {}
27 private function f2() {}
33 Fatal error: Access level to fail::f2() must be public (as in class same) in %s on line %d
H A Dvisibility_002c.phpt11 public function f2() {}
21 public function f2() {}
27 function f2() {}
H A Dvisibility_003a.phpt11 public function f2() {}
21 public function f2() {}
H A Dvisibility_003c.phpt11 public function f2() {}
21 public function f2() {}
H A Dvisibility_004a.phpt11 public function f2() {}
21 public function f2() {}
/PHP-7.1/ext/zlib/tests/
H A Dzlib_wrapper_ftruncate_basic.phpt12 $f2 = "zlib_wrapper_ftruncate_basic.txt.gz";
13 copy($f, $f2);
15 $h = gzopen($f2, "r");
18 unlink($f2);
20 $h = gzopen($f2, "w");
23 unlink($f2);
/PHP-7.1/ext/standard/tests/assert/
H A Dassert_basic2.phpt11 function f2()
13 echo "f2 called\n";
24 var_dump($o= assert_options(ASSERT_CALLBACK, "f2"));
34 string(2) "f2"
35 f2 called
H A Dassert_variation.phpt15 function f2()
17 echo "f2 called\n";
37 var_dump($rv = ini_set("assert.callback","f2"));
80 assert_options(ASSERT_CALLBACK) => [f2]
81 ini.get("assert.callback") => [f2]
82 f2 called
86 string(2) "f2"
88 ini.get("assert.callback") => [f2]
95 ini.get("assert.callback") => [f2]
106 ini.get("assert.callback") => [f2]
[all …]
/PHP-7.1/Zend/tests/
H A Dgc_030.phpt16 $f2 = new foo;
17 $f1->foo = $f2;
18 $f2->foo = $f1;
19 unset($f1, $f2);
H A D009.phpt19 $f2 = new foo2;
22 $f2->bar();
28 var_dump(get_class($f2));
H A Dns_035.phpt13 function f2($x = \ArrayObject::STD_PROP_LIST) {
19 f2();
H A Dbug34062.phpt6 function f2() { echo "here\n"; }
16 f2(0, 0, 0); // Won't crash if less than 3 zeros here
H A Dns_034.phpt13 function f2($x=B\Foo::C) {
23 f2();
/PHP-7.1/tests/basic/
H A Denable_post_data_reading_06.phpt95 $f2 = fopen("php://input", "r");
97 while (!feof($f1) && !feof($f2)) {
98 echo fgets($f1), fgets($f2);
H A Denable_post_data_reading_05.phpt14 $f2 = fopen("php://input", "r");
16 while (!feof($f1) && !feof($f2)) {
17 echo fgetc($f1), fgetc($f2);
/PHP-7.1/ext/spl/tests/
H A Dbug61697.phpt7 function f2($class) { echo "f2: [[$class]]\n"; }
10 spl_autoload_register('f2');
/PHP-7.1/Zend/tests/generators/
H A Dbacktrace.phpt10 function f2($arg1, $arg2) {
19 $gen = f2('foo', 'bar');
25 #1 f2(foo, bar)
/PHP-7.1/ext/oci8/tests/
H A Dlob_043.phpt42 function f2($c)
50 echo "f2 ended\n";
63 $r = f2($c);
87 f2 ended
/PHP-7.1/ext/reflection/tests/
H A DReflectionObject_isInstantiable_basic.phpt18 abstract function f2();
22 function f2() {}
/PHP-7.1/ext/pgsql/tests/
H A D10pg_convert_json_array.phpt18 'jsn'=>'{"f1":1,"f2":"foo"}',
35 string(22) "E'{"f1":1,"f2":"foo"}'"

Completed in 35 milliseconds

1234