Home
last modified time | relevance | path

Searched refs:first (Results 101 – 125 of 518) sorted by relevance

12345678910>>...21

/php-src/ext/dom/
H A Dparentnode.c38 xmlNodePtr first = NULL; in dom_parent_node_first_element_child_read() local
40 first = nodep->children; in dom_parent_node_first_element_child_read()
42 while (first && first->type != XML_ELEMENT_NODE) { in dom_parent_node_first_element_child_read()
43 first = first->next; in dom_parent_node_first_element_child_read()
47 if (!first) { in dom_parent_node_first_element_child_read()
52 php_dom_create_object(first, retval, obj); in dom_parent_node_first_element_child_read()
94 xmlNodePtr first = nodep->children; in dom_parent_node_child_element_count() local
96 while (first != NULL) { in dom_parent_node_child_element_count()
97 if (first->type == XML_ELEMENT_NODE) { in dom_parent_node_child_element_count()
101 first = first->next; in dom_parent_node_child_element_count()
/php-src/ext/phar/tests/
H A Dtest_alias_unset.phpt15 $phar->setAlias('first');
20 $phar2->setAlias('first'); // this works because there are no references to $fname open
41 string(5) "first"
H A Dtest_unset.phpt16 $phar->setAlias('first');
23 $phar->setAlias('first');
/php-src/ext/pdo_mysql/tests/foo/bar/
H A Dbar.data1 97;first
/php-src/ext/spl/tests/SplFileObject/
H A DSplFileObject_testinput.csv1 first,second,third
H A Dbug46569.csv1 first,line
/php-src/ext/dom/tests/
H A Dcanonicalization.phpt24 /* inclusive/without comments first child element of doc element is context. */
27 /* exclusive/without comments first child element of doc element is context. */
30 /* inclusive/with comments first child element of doc element is context. */
33 /* exclusive/with comments first child element of doc element is context. */
39 /* exclusive/without comments first child element of doc element is context.
47 /* exclusive/without comments first child element of doc element is context.
/php-src/ext/simplexml/tests/
H A D003.phpt15 <elem1 attr1='first'>
44 string(5) "first"
/php-src/ext/date/tests/
H A Ddate-time-modify-times.phpt14 'first monday of January 2011',
15 'first monday of January 2011 09:00',
/php-src/ext/standard/tests/dir/
H A Dopendir_variation3.phpt14 echo "\n-- Open directory first time: --\n";
37 -- Open directory first time: --
H A Dopendir_variation3-win32-mb.phpt20 echo "\n-- Open directory first time: --\n";
43 -- Open directory first time: --
/php-src/sapi/phpdbg/tests/
H A Dexceptions_001.phpt11 prompt> handle first
35 print "handle first\n";
H A Dexceptions_002.phpt11 prompt> handle first
40 print "handle first\n";
/php-src/ext/phar/tests/bug53872/
H A Dfirst.txt1 content of first.txt
/php-src/ext/dom/lexbor/lexbor/dom/interfaces/
H A Dattr.c295 lxb_dom_attr_compare(lxb_dom_attr_t *first, lxb_dom_attr_t *second) in lxb_dom_attr_compare() argument
297 if (first->node.local_name == second->node.local_name in lxb_dom_attr_compare()
298 && first->node.ns == second->node.ns in lxb_dom_attr_compare()
299 && first->qualified_name == second->qualified_name) in lxb_dom_attr_compare()
301 if (first->value == NULL) { in lxb_dom_attr_compare()
310 && first->value->length == second->value->length in lxb_dom_attr_compare()
311 && lexbor_str_data_ncmp(first->value->data, second->value->data, in lxb_dom_attr_compare()
312 first->value->length)) in lxb_dom_attr_compare()
/php-src/ext/xmlwriter/tests/
H A D009.phpt16 xmlwriter_write_attribute($xw, 'attr1', 'first');
36 <elem1 attr1="first">
H A DOO_009.phpt17 $xw->writeAttribute('attr1', 'first');
37 <elem1 attr1="first">
/php-src/ext/zlib/tests/
H A Dgzseek_basic2.phpt9 $str1 = "This is the first line.";
34 This is the first line.
H A Dgzseek_variation4.phpt9 $str1 = "This is the first line.";
34 This is the first line.
H A Dgzseek_variation5.phpt9 $str1 = "This is the first line.";
34 This is the first line.
/php-src/ext/pdo_mysql/tests/
H A Dbug_61755.phpt17 echo "NULL-Byte before first placeholder:\n";
35 NULL-Byte before first placeholder:
/php-src/ext/pdo_pgsql/tests/
H A Ddisable_prepares.phpt29 $first = $stmt->fetchAll();
41 var_dump($first, $second);
/php-src/ext/standard/tests/general_functions/
H A Dvar_export_basic8.phpt19 $a = array('one' => 'first');
51 'one' => 'first',
/php-src/ext/opcache/jit/ir/
H A Dir_dump.c484 bool first; in ir_dump_codegen() local
602 first = 1; in ir_dump_codegen()
626 first = 0; in ir_dump_codegen()
632 first = 0; in ir_dump_codegen()
636 first = 0; in ir_dump_codegen()
639 fprintf(f, "%sfunc ", first ? "(" : ", "); in ir_dump_codegen()
649 first = 0; in ir_dump_codegen()
654 first = 0; in ir_dump_codegen()
657 fprintf(f, "%snull", first ? "(" : ", "); in ir_dump_codegen()
658 first = 0; in ir_dump_codegen()
[all …]
/php-src/tests/lang/
H A Dbug22592.phpt42 [Only the first byte will be assigned to the string offset]
46 [Only the first byte will be assigned to the string offset]

Completed in 29 milliseconds

12345678910>>...21