Home
last modified time | relevance | path

Searched refs:element (Results 226 – 250 of 922) sorted by relevance

12345678910>>...37

/php-src/ext/soap/tests/schema/
H A Dschema079.phpt12 <element name="int1" type="int"/>
13 <element name="int2" type="int" form="qualified"/>
14 <element name="int3" type="int" form="unqualified"/>
H A Dschema080.phpt12 <element name="int1" type="int"/>
13 <element name="int2" type="int" form="qualified"/>
14 <element name="int3" type="int" form="unqualified"/>
H A Dschema008.phpt10 <element name="testElement">
18 </element>
20 test_schema($schema,'element="tns:testElement"',123.5);
H A Dschema086.phpt12 <element name="dateTime" type="dateTime"/>
13 <element name="time" type="time"/>
14 <element name="date" type="date"/>
15 <element name="gYearMonth" type="gYearMonth"/>
16 <element name="gYear" type="gYear"/>
17 <element name="gMonthDay" type="gMonthDay"/>
18 <element name="gDay" type="gDay"/>
19 <element name="gMonth" type="gMonth"/>
/php-src/ext/dom/tests/modern/spec/
H A DParentNode_append_exception_consistency.phpt9 $fragment->append($element = $dom->createElement("foo"));
17 var_dump($element->parentNode);
20 Exception: Cannot have more than one element child in a document
H A Dbug47530.phpt9 …l xmlns="https://php.net/something" xmlns:ns="https://php.net/whatever"><element ns:foo="https://p…
18 …$doc = Dom\XMLDocument::createFromString('<html xmlns=""><element xmlns:foo="https://php.net/bar"/…
22 $element = $doc->documentElement->firstChild;
23 $element->appendChild($frag);
27 var_dump($element->firstChild->tagName);
28 var_dump($element->firstChild->namespaceURI);
29 var_dump($element->firstChild->nextSibling->tagName);
30 var_dump($element->firstChild->nextSibling->namespaceURI);
115 <html xmlns="https://php.net/something" xmlns:ns="https://php.net/whatever"><element ns:foo="https:…
118 <html xmlns=""><element xmlns:foo="https://php.net/bar"><foo:bar/><bar/></element></html>
H A DNode_appendChild_attribute.phpt10 $element = $dom->createElement('foo');
14 $element->appendChild($attr);
H A Dpre_insertion_validation.phpt31 $element = $dom->createElement("foo");
33 $element->append($doctype);
58 echo "--- Trying to insert an element before a document type ---\n";
62 $dom->prepend($element);
107 Exception: Cannot have more than one element child in a document
108 --- Trying to insert an element before a document type ---
115 Exception: Cannot have more than one element child in a document
/php-src/Zend/tests/
H A Dbug47836.phpt16 Cannot add element to the array as the next element is already occupied
H A Dassign_dim_obj_null_return.phpt74 Cannot add element to the array as the next element is already occupied
78 Cannot add element to the array as the next element is already occupied
/php-src/ext/ffi/tests/
H A D042.phpt2 FFI 042: Next array element
13 Fatal error: Uncaught FFI\Exception: Cannot add next element to object of type FFI\CData in %s:3
/php-src/ext/dom/tests/modern/token_list/
H A Dcontains_error.phpt9 $element = $dom->documentElement;
10 $list = $element->classList;
H A Dclone.phpt9 $element = $dom->documentElement;
10 clone $element->classList;
H A Dcontains.phpt9 $element = $dom->documentElement;
10 $list = $element->classList;
31 $element->setAttribute('class', 'D');
/php-src/ext/standard/tests/array/
H A D009.phpt7 array(0), // array with element as 0
8 array(1), // array with single element
35 var_dump( current($sub_array)); // current element
36 var_dump( key($sub_array) ); // key of the current element
37 var_dump( next($sub_array) ); // move to next element
40 var_dump( reset($sub_array) ); // reset the internal pointer to first element
55 var_dump( current($sub_array)); // current element
56 var_dump( key($sub_array) ); // key of the current element
57 var_dump( next($sub_array) ); // move to next element
60 var_dump( reset($sub_array) ); // reset the internal pointer to first element
/php-src/ext/dom/lexbor/lexbor/html/
H A Dinterface.c21 const lxb_dom_element_t *element);
101 const lxb_dom_element_t *element) in lxb_html_interface_clone_element() argument
104 const lxb_dom_node_t *node = lxb_dom_interface_node(element); in lxb_html_interface_clone_element()
112 if (lxb_dom_element_interface_copy(new, element) != LXB_STATUS_OK) { in lxb_html_interface_clone_element()
/php-src/ext/dom/lexbor/lexbor/html/tree/insertion_mode/
H A Dbefore_html.c63 lxb_html_element_t *element; in lxb_html_tree_insertion_mode_before_html_open() local
65 element = lxb_html_tree_create_element_for_token(tree, token, in lxb_html_tree_insertion_mode_before_html_open()
67 if (element == NULL) { in lxb_html_tree_insertion_mode_before_html_open()
73 node_html = lxb_dom_interface_node(element); in lxb_html_tree_insertion_mode_before_html_open()
/php-src/ext/json/tests/
H A Dpass001.phpt11 {\"object with 1 member\":[\"array with 1 element\"]},
94 {"object with 1 member":["array with 1 element"]},
134 "jsontext": "{\"object with 1 member\":[\"array with 1 element\"]}",
158 string(20) "array with 1 element"
268 string(49) "{"object with 1 member":["array with 1 element"]}"
296 string(20) "array with 1 element"
406 string(49) "{"object with 1 member":["array with 1 element"]}"
438 string(20) "array with 1 element"
548 string(49) "{"object with 1 member":["array with 1 element"]}"
576 string(20) "array with 1 element"
[all …]
/php-src/ext/dom/
H A Dprivate_data.c154 void dom_add_element_ns_hook(php_dom_private_data *private_data, xmlNodePtr element) in dom_add_element_ns_hook() argument
160 ns->prefix = xmlStrdup(element->ns->prefix); in dom_add_element_ns_hook()
161 ns->href = xmlStrdup(element->ns->href); in dom_add_element_ns_hook()
164 element->ns = ns; in dom_add_element_ns_hook()
166 php_libxml_set_old_ns(element->doc, ns); in dom_add_element_ns_hook()
/php-src/tests/lang/
H A DforeachLoopObjects.005.phpt14 echo "\nRemoving properties before the current element from an iterated object.\n";
29 echo "\nRemoving properties before the current element from an iterated object.\n";
46 Removing properties before the current element from an iterated object.
62 Removing properties before the current element from an iterated object.
/php-src/Zend/
H A Dzend_stack.c33 ZEND_API int zend_stack_push(zend_stack *stack, const void *element) in zend_stack_push() argument
40 memcpy(ZEND_STACK_ELEMENT(stack, stack->top), element, stack->size); in zend_stack_push()
99 ZEND_API void zend_stack_apply(zend_stack *stack, int type, int (*apply_function)(void *element)) in zend_stack_apply() argument
122 …ack *stack, zend_stack_apply_direction type, int (*apply_function)(void *element, void *arg), void… in zend_stack_apply_with_argument() argument
/php-src/ext/standard/tests/file/
H A Dbug40501.phpt16 string(%d) "this element contains the delimiter, and ends with an odd number of
19 string(%d) "and it isn't the last element$"
/php-src/ext/dom/lexbor/lexbor/html/interfaces/
H A Ddocument.h133 lxb_html_document_element_styles_attach(lxb_html_element_t *element);
149 lxb_html_element_t *element,
174 lxb_dom_element_t *element,
179 lxb_dom_element_t *element);
292 lxb_html_document_destroy_element(lxb_dom_element_t *element) in lxb_html_document_destroy_element() argument
294 return lxb_dom_document_destroy_element(element); in lxb_html_document_destroy_element()
338 lxb_html_document_destroy_element_noi(lxb_dom_element_t *element);
/php-src/ext/dom/tests/
H A DDOM4_ParentNode_append_with_attributes.phpt17 $element = $dom->documentElement;
20 $element->append($replacement, $addition);
H A DDOM4_ParentNode_append_wrong_document.phpt16 $element = $dom1->documentElement;
19 $element->$method($dom2->documentElement->firstChild);

Completed in 43 milliseconds

12345678910>>...37