Home
last modified time | relevance | path

Searched refs:from (Results 1 – 25 of 1619) sorted by relevance

12345678910>>...65

/PHP-7.2/ext/oci8/tests/
H A Dimp_res_7.phpt28 open c1 for select 1 from dual;
30 open c1 for select 2 from dual;
32 open c1 for select 3 from dual;
34 open c1 for select 4 from dual;
36 open c1 for select 5 from dual;
38 open c1 for select 6 from dual;
40 open c1 for select 7 from dual;
42 open c1 for select 8 from dual;
44 open c1 for select 9 from dual;
46 open c1 for select 10 from dual;
[all …]
/PHP-7.2/ext/mbstring/libmbfl/tests/strcut.tests/
H A Diso2022jp.exp3 global spawn_id from length
4 set from $_from
17 set test "asciish characters ($from, $length)"
23 set test "non-asciish characters ($from, $length)"
33 set test "asciish characters ($from, $length)"
39 set test "non-asciish characters ($from, $length)"
49 set test "asciish characters ($from, $length)"
55 set test "non-asciish characters ($from, $length)"
65 set test "asciish characters ($from, $length)"
71 set test "non-asciish characters ($from, $length)"
[all …]
H A Dujis.exp3 global spawn_id from length
4 set from $_from
17 set test "asciish characters ($from, $length)"
23 set test "non-asciish characters ($from, $length)"
32 set test "asciish characters ($from, $length)"
38 set test "non-asciish characters ($from, $length)"
47 set test "asciish characters ($from, $length)"
53 set test "non-asciish characters ($from, $length)"
62 set test "asciish characters ($from, $length)"
68 set test "non-asciish characters ($from, $length)"
[all …]
H A Dutf8.exp3 global spawn_id from length
4 set from $_from
17 set test "asciish characters ($from, $length)"
23 set test "non-asciish characters ($from, $length)"
32 set test "asciish characters ($from, $length)"
38 set test "non-asciish characters ($from, $length)"
47 set test "asciish characters ($from, $length)"
53 set test "non-asciish characters ($from, $length)"
62 set test "asciish characters ($from, $length)"
68 set test "non-asciish characters ($from, $length)"
[all …]
/PHP-7.2/ext/reflection/tests/
H A DReflectionClass_getConstants_basic.phpt6 const a = 'hello from C';
13 const a = 'hello from F';
26 Constants from class C:
29 string(12) "hello from C"
31 Constants from class D:
34 string(12) "hello from C"
36 Constants from class E:
39 string(12) "hello from C"
41 Constants from class F:
44 string(12) "hello from F"
[all …]
/PHP-7.2/tests/lang/
H A Dbug24951.phpt12 echo "Hello from t1 1 ";
13 echo "Hello from t1 2 ";
19 echo "Hello from t2 1 ";
21 echo "Hello from t2 2 ";
27 echo "Hello from t3 1 ";
29 echo "Hello from t3 2 ";
38 [Hello from t1 1 Hello from t1 2 ]
40 [Hello from t2 1 Hello from t2 2 ]
42 Hello from t3 2 ]
/PHP-7.2/Zend/tests/generators/
H A Drecursive_yield_from.phpt2 Check if recursion with yield from works
6 function from($a = 0) {
9 yield from from($a + 3);
10 yield from from($a + 6);
16 yield from from();
H A Dyield_from_array.phpt2 yielding values from an array
5 function from() {
7 yield from []; // must not yield anything
8 yield from [1,2];
12 yield from from();
H A Dbasic_yield_from_proxying.phpt2 Basic test if yield from works
5 function from() {
6 yield "from" => 1;
12 yield from from();
29 string(4) "from"
37 string(4) "from"
H A Dbasic_yield_from_exception_handling.phpt2 Exceptions in linear yield from setup
5 function from($off) {
8 } catch (Exception $e) { print "catch in from()\n$e\n"; }
17 yield from from(0);
19 yield from from(2);
39 catch in from()
49 catch in from()
H A Dyield_from_deep_recursion.phpt2 Deep recursion with yield from
7 function from($i) {
13 yield from gen(++$i);
16 yield from from(++$i);
/PHP-7.2/ext/standard/tests/array/
H A Darray_column_variant_objects.phpt59 echo "-- last_name column from recordset, keyed by value from id column --\n";
62 echo "-- last_name column from recordset, keyed by value from first_name column --\n";
73 echo "-- last_name column from recordset, keyed by value from id column --\n";
76 echo "-- last_name column from recordset, keyed by value from first_name column --\n";
83 -- first_name column from recordset --
92 -- id column from recordset --
101 -- last_name column from recordset, keyed by value from id column --
110 -- last_name column from recordset, keyed by value from first_name column --
138 -- id column from recordset --
147 -- last_name column from recordset, keyed by value from id column --
[all …]
/PHP-7.2/ext/date/tests/
H A Dbug52342.phpt6 $from = new DateTime();
7 $from->setTime(0, 0, 0);
8 $from->setISODate(2010, 28, 1); //Montag der 28ten Woche 2010
10 echo $from->format('d.m.Y H:i'), "\n"; //A
11 echo $from->getTimestamp(), "\n"; //B
12 echo date('d.m.Y H:i', $from->getTimestamp()), "\n"; //C
14 $from->add(new DateInterval('P0D'));
15 echo $from->getTimestamp(), "\n"; //B
16 echo date('d.m.Y H:i', $from->getTimestamp()), "\n"; //C
/PHP-7.2/ext/standard/tests/class_object/
H A Dget_class_methods_basic_002.phpt21 echo "Accessing C from C:\n";
23 echo "Accessing D from C:\n";
81 Accessing C from C:
92 Accessing D from C:
109 Accessing X from C:
116 Accessing C from D:
125 Accessing D from D:
142 Accessing X from D:
149 Accessing C from X:
156 Accessing D from X:
[all …]
/PHP-7.2/Zend/tests/
H A Dbug29210.phpt22 echo "test_func1 isn't callable from inside\n";
72 echo "test_func1 isn't callable from outside\n";
77 echo "test_func2 isn't callable from outside\n";
82 echo "test_func3 isn't callable from outside\n";
87 echo "test_func4 isn't callable from outside\n";
97 test_func1 isn't callable from outside
98 test_func2 isn't callable from outside
99 test_func3 isn't callable from outside
100 test_func4 isn't callable from outside
101 test_func1 isn't callable from child
[all …]
H A Dbug46246.phpt9 echo 'Hello from '.get_class($this)."\n";
24 echo 'Overridden hello from '.get_class($this)."\n";
35 Hello from A
36 Hello from A
37 Hello from A
38 Hello from B
39 Hello from B
40 Hello from B
/PHP-7.2/ext/standard/tests/file/
H A Dfread_basic.phpt109 Reading 1024 bytes from file, expecting 1024 bytes ... OK
116 Reading 1030 bytes from file, expecting 1024 bytes ... OK
123 Reading 1000 bytes from file, expecting 1000 bytes ... OK
131 Reading 1024 bytes from file, expecting 1024 bytes ... OK
138 Reading 1030 bytes from file, expecting 1024 bytes ... OK
145 Reading 1000 bytes from file, expecting 1000 bytes ... OK
153 Reading 1024 bytes from file, expecting 1024 bytes ... OK
160 Reading 1030 bytes from file, expecting 1024 bytes ... OK
167 Reading 1000 bytes from file, expecting 1000 bytes ... OK
175 Reading 1024 bytes from file, expecting 1024 bytes ... OK
[all …]
H A Dfread_variation2.phpt82 // read from file, by giving the file actual size,
114 Reading 1024 bytes from file, expecting 0 bytes ... OK
121 Reading 1000 bytes from file, expecting 0 bytes ... OK
129 Reading 1024 bytes from file, expecting 0 bytes ... OK
136 Reading 1000 bytes from file, expecting 0 bytes ... OK
144 Reading 1024 bytes from file, expecting 0 bytes ... OK
151 Reading 1000 bytes from file, expecting 0 bytes ... OK
159 Reading 1024 bytes from file, expecting 0 bytes ... OK
166 Reading 1000 bytes from file, expecting 0 bytes ... OK
174 Reading 1024 bytes from file, expecting 0 bytes ... OK
[all …]
/PHP-7.2/ext/gd/libgd/
H A Dgdkanji.c394 if (from[i] == ESC) in do_convert()
397 if (from[i] == '$') in do_convert()
416 to[j++] = from[i] + 128; in do_convert()
423 to[j++] = from[i]; in do_convert()
431 p1 = from[i]; in do_convert()
441 p2 = from[++i]; in do_convert()
457 ustrcpy (to, from); in do_convert()
488 ustrcpy (tmp, from); in do_check_and_conv()
493 ustrcpy (tmp, from); in do_check_and_conv()
501 ustrcpy (tmp, from); in do_check_and_conv()
[all …]
/PHP-7.2/ext/pdo_dblib/tests/
H A Dbatch_stmt_transaction.phpt17 "select * from #php_pdo;" .
21 "select * from #php_pdo;" .
22 "delete from #php_pdo;" .
26 // check results from the create table
30 // check results from the first insert
34 // check results from the select
42 // check results from the update
46 // check results from rollback
50 // check results from the select
55 // check results from the delete
[all …]
H A Dbatch_stmt_ins_sel_up_del.phpt17 "select * from #php_pdo;" .
19 "delete from #php_pdo;" .
20 "select * from #php_pdo;" .
24 // check results from the create table
28 // check results from the first insert
32 // check results from the select
36 // check results from the update
40 // check results from the delete
44 // check results from the select
48 // check results from the drop
H A Dbatch_stmt_try.phpt17 "select * from #php_pdo;" .
24 "select * from #php_pdo;" .
25 "delete from #php_pdo;" .
29 // check results from the create table
33 // check results from the first insert
37 // check results from the select
41 // check results from try
45 // check results from the update
59 // check results from the select
64 // check results from the delete
[all …]
/PHP-7.2/ext/pcre/pcrelib/testdata/
H A Dtestoutput21-166 Compiled pattern loaded from testsaved8
8 Error -28 from pcre16_fullinfo(0)
11 %-- Generated from:
23 Compiled pattern loaded from testsaved16LE-1
24 Study data loaded from testsaved16LE-1
56 Compiled pattern loaded from testsaved16BE-1
57 Study data loaded from testsaved16BE-1
90 Study data loaded from testsaved32LE-1
91 Error -28 from pcre16_fullinfo(0)
96 Study data loaded from testsaved32BE-1
[all …]
H A Dtestoutput21-326 Compiled pattern loaded from testsaved8
8 Error -28 from pcre32_fullinfo(0)
11 %-- Generated from:
23 Compiled pattern loaded from testsaved16LE-1
24 Study data loaded from testsaved16LE-1
25 Error -28 from pcre32_fullinfo(0)
29 Compiled pattern loaded from testsaved16BE-1
30 Study data loaded from testsaved16BE-1
31 Error -28 from pcre32_fullinfo(0)
36 Study data loaded from testsaved32LE-1
[all …]
/PHP-7.2/ext/mbstring/oniguruma/src/
H A Dregext.c96 conv_encoding(OnigEncoding from, OnigEncoding to, const UChar* s, const UChar* end,
102 if (from == ONIG_ENCODING_ASCII || from == ONIG_ENCODING_ISO_8859_1) {
109 else if (from == ONIG_ENCODING_UTF16_LE) {
119 if (from == ONIG_ENCODING_ASCII || from == ONIG_ENCODING_ISO_8859_1) {
126 else if (from == ONIG_ENCODING_UTF16_BE) {
131 if (from == ONIG_ENCODING_ASCII || from == ONIG_ENCODING_ISO_8859_1) {
138 else if (from == ONIG_ENCODING_UTF32_LE) {
148 if (from == ONIG_ENCODING_ASCII || from == ONIG_ENCODING_ISO_8859_1) {
155 else if (from == ONIG_ENCODING_UTF32_BE) {

Completed in 38 milliseconds

12345678910>>...65