Searched refs:document (Results 1 - 15 of 15) sorted by relevance
| /PHP_TRUNK/ext/dom/ |
| H A D | characterdata.c | 198 php_dom_throw_error(INDEX_SIZE_ERR, dom_get_strict_error(intern->document) TSRMLS_CC); 281 php_dom_throw_error(INDEX_SIZE_ERR, dom_get_strict_error(intern->document) TSRMLS_CC); 328 php_dom_throw_error(INDEX_SIZE_ERR, dom_get_strict_error(intern->document) TSRMLS_CC); 384 php_dom_throw_error(INDEX_SIZE_ERR, dom_get_strict_error(intern->document) TSRMLS_CC);
|
| H A D | document.c | 533 if (obj->document) { 534 doc_prop = dom_get_doc_props(obj->document); 554 if (obj->document) { 555 doc_prop = dom_get_doc_props(obj->document); 576 if (obj->document) { 577 doc_prop = dom_get_doc_props(obj->document); 597 if (obj->document) { 598 doc_prop = dom_get_doc_props(obj->document); 618 if (obj->document) { 619 doc_prop = dom_get_doc_props(obj->document); 1552 php_libxml_ref_obj *document = NULL; local [all...] |
| H A D | documentfragment.c | 138 php_dom_throw_error(NO_MODIFICATION_ALLOWED_ERR, dom_get_strict_error(intern->document) TSRMLS_CC);
|
| H A D | domimplementation.c | 243 doctobj->document = ((dom_object *)((php_libxml_node_ptr *)docp->_private)->_private)->document;
|
| H A D | element.c | 399 php_dom_throw_error(NO_MODIFICATION_ALLOWED_ERR, dom_get_strict_error(intern->document) TSRMLS_CC); 453 php_dom_throw_error(NO_MODIFICATION_ALLOWED_ERR, dom_get_strict_error(intern->document) TSRMLS_CC); 547 php_dom_throw_error(NO_MODIFICATION_ALLOWED_ERR, dom_get_strict_error(intern->document) TSRMLS_CC); 559 php_dom_throw_error(WRONG_DOCUMENT_ERR, dom_get_strict_error(intern->document) TSRMLS_CC); 578 attrobj->document = intern->document; 613 php_dom_throw_error(NO_MODIFICATION_ALLOWED_ERR, dom_get_strict_error(intern->document) TSRMLS_CC); 620 php_dom_throw_error(NOT_FOUND_ERR, dom_get_strict_error(intern->document) TSRMLS_CC); 764 stricterror = dom_get_strict_error(intern->document); 886 php_dom_throw_error(NO_MODIFICATION_ALLOWED_ERR, dom_get_strict_error(intern->document) TSRMLS_C [all...] |
| H A D | node.c | 253 str = "#document"; 256 str = "#document-fragment"; 832 php_dom_throw_error(NAMESPACE_ERR, dom_get_strict_error(obj->document) TSRMLS_CC); 977 childobj->document = intern->document; 1020 stricterror = dom_get_strict_error(intern->document); 1044 childobj->document = intern->document; 1187 stricterror = dom_get_strict_error(intern->document); 1229 newchildobj->document [all...] |
| H A D | php_dom.h | 73 php_libxml_ref_obj *document; member in struct:_dom_xpath_object 98 dom_doc_propsptr dom_get_doc_props(php_libxml_ref_obj *document); 104 int dom_get_strict_error(php_libxml_ref_obj *document); 125 int dom_set_doc_classmap(php_libxml_ref_obj *document, zend_class_entry *basece, zend_class_entry *ce TSRMLS_DC);
|
| H A D | xml_common.h | 32 php_libxml_ref_obj *document; member in struct:_dom_object 73 if (__intern->document != NULL) { \ 74 if (!(__ptr = (__prtype)__intern->document->ptr)) { \
|
| H A D | xpath.c | 312 intern->document = docobj->document; 318 /* {{{ document DOMDocument*/
|
| H A D | php_dom.c | 153 dom_doc_propsptr dom_get_doc_props(php_libxml_ref_obj *document) argument 157 if (document && document->doc_props) { 158 return document->doc_props; 169 if (document) { 170 document->doc_props = doc_props; 201 int dom_set_doc_classmap(php_libxml_ref_obj *document, zend_class_entry *basece, zend_class_entry *ce TSRMLS_DC) argument 205 if (document) { 206 doc_props = dom_get_doc_props(document); 223 zend_class_entry *dom_get_doc_classmap(php_libxml_ref_obj *document, zend_class_entr argument 242 dom_get_strict_error(php_libxml_ref_obj *document) argument [all...] |
| /PHP_TRUNK/ext/simplexml/ |
| H A D | php_simplexml.h | 60 php_libxml_ref_obj *document; member in struct:__anon191
|
| H A D | simplexml.c | 73 subnode->document = sxe->document; 74 subnode->document->refcount++; 1021 subnode->document = sxe_ref->document; 1022 subnode->document->refcount++; 1107 ZVAL_STRING(value, sxe_xmlNodeListGetString((xmlDocPtr) sxe->document->ptr, attr->children, 1), 0); 1232 } else if (sxe1->document->ptr == sxe2->document->ptr) { 1268 sxe->xpath = xmlXPathNewContext((xmlDocPtr) sxe->document [all...] |
| /PHP_TRUNK/ext/xsl/ |
| H A D | xsltprocessor.c | 420 stylesheet document otherwise the node proxies will be a mess */ 448 /* check if the stylesheet is using xsl:key, if yes, we have to clone the document _always_ before a transformation */ 529 intern->doc->document = object->document;
|
| /PHP_TRUNK/ext/libxml/ |
| H A D | libxml.c | 915 Set the streams context for the next libxml document load or write */ 1215 if (object->document != NULL) { 1216 object->document->refcount++; 1217 ret_refcount = object->document->refcount; 1220 object->document = emalloc(sizeof(php_libxml_ref_obj)); 1221 object->document->ptr = docp; 1222 object->document->refcount = ret_refcount; 1223 object->document->doc_props = NULL; 1233 if (object != NULL && object->document != NULL) { 1234 ret_refcount = --object->document [all...] |
| H A D | php_libxml.h | 79 php_libxml_ref_obj *document; member in struct:_php_libxml_node_object
|
Completed in 20 milliseconds