Home
last modified time | relevance | path

Searched refs:element (Results 151 – 175 of 878) sorted by relevance

12345678910>>...36

/php-src/ext/soap/tests/schema/
H A Dschema064.phpt18 <element name="dateTime" type="dateTime"/>
19 <element name="time" type="time"/>
20 <element name="date" type="date"/>
21 <element name="gYearMonth" type="gYearMonth"/>
22 <element name="gYear" type="gYear"/>
23 <element name="gMonthDay" type="gMonthDay"/>
24 <element name="gDay" type="gDay"/>
25 <element name="gMonth" type="gMonth"/>
H A Dschema072.phpt2 SOAP XML Schema 72: SOAP 1.1 Array (document style, element with inline type)
10 <element name="testElement">
18 </element>
20 test_schema($schema,'element="tns:testElement"',array(123,123.5),'document','literal');
H A Dschema034.phpt2 SOAP XML Schema 34: Nested complex types (element ref)
10 <element name="testType2" type="tns:testType2"/>
13 <element name="int" type="int"/>
18 <element name="int" type="int"/>
19 <element ref="tns:testType2"/>
/php-src/ext/soap/tests/bugs/
H A Dbug40609.wsdl4 <xs:element name="getPrice">
7 <xs:element name="symbol" nillable="true" type="xs:string" />
10 </xs:element>
11 <xs:element name="getPriceResponse">
14 <xs:element name="return" nillable="true" type="xs:double" />
17 </xs:element>
18 <xs:element name="update">
21 <xs:element name="symbol" nillable="true" type="xs:any" />
22 <xs:element name="price" nillable="true" type="xs:any" />
25 </xs:element>
[all …]
/php-src/ext/standard/tests/array/
H A Darray_fill_variation6.phpt2 array_fill(): last element
19 Cannot add element to the array as the next element is already occupied
/php-src/tests/lang/
H A DforeachLoop.014.phpt75 ---( Array with 1 element(s): )---
87 ---( Array with 2 element(s): )---
102 ---( Array with 3 element(s): )---
120 ---( Array with 4 element(s): )---
144 ---( Array with 1 element(s): )---
156 ---( Array with 2 element(s): )---
171 ---( Array with 3 element(s): )---
189 ---( Array with 4 element(s): )---
213 ---( Array with 1 element(s): )---
225 ---( Array with 2 element(s): )---
[all …]
H A DforeachLoop.015.phpt75 ---( Array with 1 element(s): )---
87 ---( Array with 2 element(s): )---
103 ---( Array with 3 element(s): )---
122 ---( Array with 4 element(s): )---
148 ---( Array with 1 element(s): )---
160 ---( Array with 2 element(s): )---
175 ---( Array with 3 element(s): )---
193 ---( Array with 4 element(s): )---
217 ---( Array with 1 element(s): )---
229 ---( Array with 2 element(s): )---
[all …]
H A DforeachLoop.013.phpt73 ---( Array with 1 element(s): )---
85 ---( Array with 2 element(s): )---
101 ---( Array with 3 element(s): )---
120 ---( Array with 4 element(s): )---
146 ---( Array with 1 element(s): )---
158 ---( Array with 2 element(s): )---
173 ---( Array with 3 element(s): )---
191 ---( Array with 4 element(s): )---
215 ---( Array with 1 element(s): )---
227 ---( Array with 2 element(s): )---
[all …]
/php-src/ext/spl/tests/
H A DarrayObject_clone_basic2.phpt16 $ao1['new.ao1'] = 'new element added to ao1';
17 $ao2['new.ao2'] = 'new element added to ao2';
27 string(24) "new element added to ao1"
37 string(24) "new element added to ao1"
46 string(24) "new element added to ao2"
/php-src/ext/simplexml/tests/
H A Dbug27010.phpt19 foreach ($sxe as $element_name => $element) {
20 print "$element_name is $element->name\n";
23 foreach ($sxe->children('http://www.example.com/hot') as $element_name => $element) {
24 print "$element_name is $element->name\n";
/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.
H A DDOM4_DOMNode_ElementSiblings.phpt12 $element = $dom->documentElement;
13 print_node($element->firstElementChild->nextElementSibling);
14 print_node($element->lastElementChild->previousElementSibling);
H A DDOMDocument_getElementsByTagName_liveness.phpt17 Now the loop starts, the current element is marked with a V. $i == 0:
24 …cause the list is live, the current element pointer still refers to the first index, which now cor…
25 Now the foreach body ends, which means we go to the next element, which is now 3 instead of 2.
28 3 gets printed. $i == 1, which is odd, so nothing happens and we move on to the next element:
35 Now the foreach body ends, which means we go to the next element, which is now 6 instead of 5.
/php-src/ext/dom/tests/modern/html/encoding/
H A DHTMLDocument_encoding_edge_case_06.phpt10 $element = $dom->createElement("container");
11 $dom->append($element);
13 $element->append(str_repeat("A", 4096 - 1 - strlen("<container>")) . "\xf0\x90");
H A DHTMLDocument_encoding_edge_case_04.phpt10 $element = $dom->createElement("container");
11 $dom->append($element);
13 $element->append(str_repeat("A", 4096 - 2 - strlen("<container>")) . "\xff\xff\xff");
H A DHTMLDocument_encoding_edge_case_01.phpt11 $element = $dom->createElement("container");
12 $dom->append($element);
13 $element->append(str_repeat("A", 4096 - 2 - strlen("<container>")) . "\xf0\x90\x8d\x88AA");
/php-src/ext/dom/tests/modern/html/serializer/
H A DHTMLDocument_serialize_void_elements.phpt34 $element = $container->appendChild($dom->createElement($tag));
35 $element->appendChild($dom->createElement("inner"));
36 $element->after("\n");
38 var_dump($dom->saveHTML($element));
40 $element = $container->appendChild($dom->createElementNS("http://php.net/foo", "x:$tag"));
41 $element->appendChild($dom->createElement("inner"));
42 $element->after("\n");
/php-src/ext/dom/lexbor/lexbor/dom/interfaces/
H A Dcharacter_data.c14 lxb_dom_character_data_t *element; in lxb_dom_character_data_interface_create() local
16 element = lexbor_mraw_calloc(document->mraw, in lxb_dom_character_data_interface_create()
18 if (element == NULL) { in lxb_dom_character_data_interface_create()
22 lxb_dom_node_t *node = lxb_dom_interface_node(element); in lxb_dom_character_data_interface_create()
27 return element; in lxb_dom_character_data_interface_create()
H A Ddocument_type.c19 lxb_dom_document_type_t *element; in lxb_dom_document_type_interface_create() local
21 element = lexbor_mraw_calloc(document->mraw, in lxb_dom_document_type_interface_create()
23 if (element == NULL) { in lxb_dom_document_type_interface_create()
27 lxb_dom_node_t *node = lxb_dom_interface_node(element); in lxb_dom_document_type_interface_create()
32 return element; in lxb_dom_document_type_interface_create()
/php-src/Zend/tests/
H A Dbug71841.phpt43 Cannot add element to the array as the next element is already occupied
44 Cannot add element to the array as the next element is already occupied
45 Cannot add element to the array as the next element is already occupied
/php-src/ext/dom/lexbor/lexbor/html/tree/insertion_mode/
H A Din_table_body.c32 lxb_html_element_t *element; in lxb_html_tree_insertion_mode_in_table_body_tr() local
36 element = lxb_html_tree_insert_html_element(tree, token); in lxb_html_tree_insertion_mode_in_table_body_tr()
37 if (element == NULL) { in lxb_html_tree_insertion_mode_in_table_body_tr()
56 lxb_html_element_t *element; in lxb_html_tree_insertion_mode_in_table_body_thtd() local
68 element = lxb_html_tree_insert_html_element(tree, &fake_token); in lxb_html_tree_insertion_mode_in_table_body_thtd()
69 if (element == NULL) { in lxb_html_tree_insertion_mode_in_table_body_thtd()
/php-src/ext/opcache/tests/jit/
H A Darray_elem_002.phpt2 Occupied next element
16 Fatal error: Uncaught Error: Cannot add element to the array as the next element is already occupie…
/php-src/ext/soap/tests/
H A Dbug68361.phpt22 <xsd:element name="id" type="xsd:int"/>
23 <xsd:element name="department" type="xsd:string"/>
24 <xsd:element name="name" type="xsd:string"/>
25 <xsd:element name="age" type="xsd:int"/>
28 <xsd:element name="Employee" nillable="true" type="ns:Employee"/>
31 <xsd:element name="name" type="xsd:string"/>
32 <xsd:element name="age" type="xsd:int"/>
35 <xsd:element name="User" nillable="true" type="ns:User"/>
48 <part name="userReturn" element="ns:User"/>
/php-src/ext/dom/lexbor/lexbor/html/interfaces/
H A Dtitle_element.c15 lxb_html_title_element_t *element; in lxb_html_title_element_interface_create() local
17 element = lexbor_mraw_calloc(document->dom_document.mraw, in lxb_html_title_element_interface_create()
19 if (element == NULL) { in lxb_html_title_element_interface_create()
23 lxb_dom_node_t *node = lxb_dom_interface_node(element); in lxb_html_title_element_interface_create()
28 return element; in lxb_html_title_element_interface_create()
/php-src/Zend/
H A Dzend_stack.h38 ZEND_API int zend_stack_push(zend_stack *stack, const void *element);
46 ZEND_API void zend_stack_apply(zend_stack *stack, int type, int (*apply_function)(void *element));
47 …ack *stack, zend_stack_apply_direction type, int (*apply_function)(void *element, void *arg), void…

Completed in 30 milliseconds

12345678910>>...36