Home
last modified time | relevance | path

Searched refs:from (Results 76 – 100 of 1496) sorted by relevance

12345678910>>...60

/PHP-5.6/ext/oci8/tests/
H A Dimp_res_close.phpt28 open c1 for select 1 from dual union all select 2 from dual order by 1;
30 open c1 for select 3 from dual union all select 4 from dual order by 1;
32 open c1 for select 5 from dual union all select 6 from dual order by 1;
H A Dimp_res_get_all.phpt25 open c1 for select 1 from dual union all select 2 from dual;
27 open c1 for select 3 from dual union all select 4 from dual;
29 open c1 for select 5 from dual union all select 6 from dual;
H A Dimp_res_get_close_1.phpt28 open c1 for select 1 from dual union all select 2 from dual;
30 open c1 for select 3 from dual union all select 4 from dual;
32 open c1 for select 5 from dual union all select 6 from dual;
H A Dimp_res_get_5.phpt2 Oracle Database 12c Implicit Result Sets: oci_get_implicit_resultset: get from wrong statement
34 open c1 for select 1 from dual union all select 2 from dual;
36 open c1 for select 3 from dual union all select 4 from dual;
38 open c1 for select 5 from dual union all select 6 from dual;
/PHP-5.6/ext/sysvsem/tests/
H A Dsysv.phpt61 echo "Fail to retrieve Var 1 from Shared memory $shm_id, return value=$var1.\n";
69 echo "Fail to retrieve Var 2 from Shared memory $shm_id, return value=$var2.\n";
80 // remove shared memory segmant from SysV
82 echo "Shared memory successfully removed from SysV.\n";
84 echo "Fail to remove $shm_id shared memory from SysV.\n";
89 echo "semaphore removed successfully from SysV.\n";
91 echo "Fail to remove $sem_id semaphore from SysV.\n";
110 Shared memory successfully removed from SysV.
111 semaphore removed successfully from SysV.
/PHP-5.6/ext/zip/lib/
H A Dzip_extra_field.c156 _zip_ef_merge(struct zip_extra_field *to, struct zip_extra_field *from) in _zip_ef_merge() argument
162 return from; in _zip_ef_merge()
167 for (; from; from=ef2) { in _zip_ef_merge()
168 ef2 = from->next; in _zip_ef_merge()
172 … if (tt->id == from->id && tt->size == from->size && memcmp(tt->data, from->data, tt->size) == 0) { in _zip_ef_merge()
173 tt->flags |= (from->flags & ZIP_EF_BOTH); in _zip_ef_merge()
179 from->next = NULL; in _zip_ef_merge()
181 _zip_ef_free(from); in _zip_ef_merge()
183 tail = tail->next = from; in _zip_ef_merge()
/PHP-5.6/ext/pcre/pcrelib/sljit/
H A DsljitConfigInternal.h292 #define SLJIT_CACHE_FLUSH(from, to) argument
300 #define SLJIT_CACHE_FLUSH(from, to) \ argument
301 sys_icache_invalidate((char*)(from), (char*)(to) - (char*)(from))
307 #define SLJIT_CACHE_FLUSH(from, to) \ argument
308 cacheflush((long)(from), (long)(to), 0)
313 #define SLJIT_CACHE_FLUSH(from, to) \ argument
314 ppc_cache_flush((from), (to))
319 #define SLJIT_CACHE_FLUSH(from, to) \ argument
320 sparc_cache_flush((from), (to))
325 #define SLJIT_CACHE_FLUSH(from, to) \ argument
[all …]
/PHP-5.6/ext/phar/tests/
H A Dphar_construct_invalidurl.phpt27 Cannot create a phar archive from a URL like "http://should.fail.com". Phar objects can only be cre…
28 Cannot create a phar archive from a URL like "http://". Phar objects can only be created from local…
/PHP-5.6/
H A DREADME.namespaces60 namespace qualification. All class and function names started from \
100 function from the global namespace.
107 A\B\foo() first tries to call function foo() from namespace A\B, then
110 7) qualified class names are interpreted as class from corresponding
111 namespace. So "new A\B\C()" refers to class C from namespace A\B.
137 B\foo(); // first tries to call function "foo" from namespace "A\B"
139 \B\foo(); // first tries to call function "foo" from namespace "B"
140 // then calls method "foo" of class "B" from global scope
146 A\foo(); // first tries to call function "foo" from namespace "A\A"
148 // then tries to call function "foo" from namespace "A"
[all …]
/PHP-5.6/ext/standard/tests/strings/
H A Dtrim_basic.phpt7 * Description: Strip whitespace (or other characters) from the beginning and end of a string.
20 echo "\n-- Trim non-whitespace from a string --\n";
23 echo "\n-- Trim some non-white space characters from a string --\n";
37 -- Trim non-whitespace from a string --
40 -- Trim some non-white space characters from a string --
/PHP-5.6/ext/mysqli/tests/
H A Dbug38003.phpt2 Bug #38003 (in classes inherited from MySQLi it's possible to call private constructors from invali…
20 Fatal error: Call to private DB::__construct() from invalid context in %s on line %d
/PHP-5.6/tests/lang/
H A D023.phpt196 $i should go from 0 to 2<br>
197 $j should go from 3 to 4, and $q should go from 3 to 4<br>
204 $j should go from 0 to 2<br>
208 $k should go from 0 to 2<br>
213 $j should go from 3 to 4, and $q should go from 3 to 4<br>
220 $j should go from 0 to 2<br>
224 $k should go from 0 to 2<br>
229 $j should go from 3 to 4, and $q should go from 3 to 4<br>
236 $j should go from 0 to 2<br>
240 $k should go from 0 to 2<br>
[all …]
/PHP-5.6/ext/reflection/tests/
H A DReflectionClass_getStaticPropertyValue_001.phpt22 echo "Retrieving static values from A:\n";
30 echo "\nRetrieving static values from B:\n";
37 echo "\nRetrieving non-existent values from A with no default value:\n";
54 Retrieving static values from A:
61 Retrieving static values from B:
67 Retrieving non-existent values from A with no default value:
/PHP-5.6/ext/standard/tests/streams/
H A Dstream_get_meta_data_socket_variation1.phpt22 echo "\n\nRead a line from the client, causing data to be buffered:\n";
26 echo "\n\nRead 3 bytes of data from the client:\n";
30 echo "\n\nClose the server side socket and read the remaining data from the client:\n";
59 Read a line from the client, causing data to be buffered:
78 Read 3 bytes of data from the client:
97 Close the server side socket and read the remaining data from the client:
/PHP-5.6/ext/standard/tests/general_functions/
H A Dbug25038.phpt8 throw new Exception("This is an exception from bar({$x}).");
30 This is an exception from bar(first try).
31 This is an exception from bar(second try).
/PHP-5.6/ext/standard/tests/dir/
H A Ddir_variation7.phpt27 * remove the execute permission from the parent dir and test dir() on child dir
28 * 1) remove write & execute permission from the 1st parent and test dir()
29 * 2) remove execute permission from 2nd parent and test dir()
32 echo "*** Testing dir() : remove execute permission from the parent dir ***\n";
53 // remove the write and execute permisson from sub parent
59 // remove the execute permisson from parent dir, allowing all permission for sub dir
85 *** Testing dir() : remove execute permission from the parent dir ***
/PHP-5.6/Zend/tests/
H A Dbug52041.phpt2 Bug #52041 (Memory leak when writing on uninitialized variable returned from function)
28 Warning: Creating default object from empty value in %sbug52041.php on line 6
32 Warning: Creating default object from empty value in %sbug52041.php on line 7
36 Warning: Creating default object from empty value in %sbug52041.php on line 8
44 Warning: Creating default object from empty value in %sbug52041.php on line 9
50 Warning: Creating default object from empty value in %sbug52041.php on line 10
58 Warning: Creating default object from empty value in %sbug52041.php on line 11
/PHP-5.6/ext/openssl/tests/
H A Dopenssl_x509_export_to_file_basic.phpt17 var_dump(openssl_x509_export_to_file($b, $outfilename)); // read cert from a filename string
19 var_dump(openssl_x509_export_to_file($d, $outfilename)); // read cert from a resource
35 Warning: openssl_x509_export_to_file(): cannot get cert from parameter 1 in %s on line %d
39 Warning: openssl_x509_export_to_file(): cannot get cert from parameter 1 in %s on line %d
H A Dopenssl_x509_export_basic.phpt16 var_dump(openssl_x509_export($b, $output2)); // read cert from a filename string
18 var_dump(openssl_x509_export($d, $output4)); // read cert from a resource
31 Warning: openssl_x509_export(): cannot get cert from parameter 1 in %s on line %d
35 Warning: openssl_x509_export(): cannot get cert from parameter 1 in %s on line %d
/PHP-5.6/ext/bz2/tests/
H A D003.phpt31 string(251) "ing up from the heart of the desert
33 Rising up from the heat of the desert
35 Rising up from the heart of the desert
37 Rising up from the heat of the desert
/PHP-5.6/ext/pgsql/tests/
H A D27large_object_oid.phpt17 echo "create LO from int\n";
25 echo "create LO from string\n";
44 create LO from int
45 create LO from string
H A D28large_object_import_oid.phpt17 echo "import LO from int\n";
25 echo "import LO from string\n";
45 import LO from int
46 import LO from string
/PHP-5.6/ext/opcache/tests/
H A Dissue0115.phpt19 echo "Hello from Index 1.\n";
27 echo "Hello from Index 2.\n";
45 Hello from Index 1.
47 Hello from Index 2.
/PHP-5.6/ext/pdo_oci/tests/
H A Dpdo_oci_attr_prefetch_2.phpt16 $s = $dbh->prepare("select '' as myempty, null as mynull from dual", array(PDO::ATTR_PREFETCH => 10…
22 $s = $dbh->prepare("select dummy from dual" );
29 $s = $dbh->prepare("select '' as myempty, null as mynull from dual", array(PDO::ATTR_PREFETCH => 0)…
30 $s = $dbh->prepare("select dummy from dual" );
/PHP-5.6/ext/standard/tests/array/
H A Dend.phpt53 // remove first element from array
54 echo "\n-- Remove first element from array --\n";
58 // remove last element from array, rewind and check end()
59 echo "\n-- Remove last element from array --\n";
66 echo "\n-- Remove any element from array apart from first and last element --\n";
195 -- Remove first element from array --
198 -- Remove last element from array --
202 -- Remove any element from array apart from first and last element --

Completed in 34 milliseconds

12345678910>>...60