Lines Matching refs:dtdptr
34 DOM_PROP_NODE(xmlDtdPtr, dtdptr, obj); in dom_documenttype_name_read()
35 ZVAL_STRING(retval, dtdptr->name ? (char *) (dtdptr->name) : ""); in dom_documenttype_name_read()
48 DOM_PROP_NODE(xmlDtdPtr, dtdptr, obj); in dom_documenttype_entities_read()
52 xmlHashTable *entityht = (xmlHashTable *) dtdptr->entities; in dom_documenttype_entities_read()
69 DOM_PROP_NODE(xmlDtdPtr, dtdptr, obj); in dom_documenttype_notations_read()
73 xmlHashTable *notationht = (xmlHashTable *) dtdptr->notations; in dom_documenttype_notations_read()
90 DOM_PROP_NODE(xmlDtdPtr, dtdptr, obj); in dom_documenttype_public_id_read()
92 if (dtdptr->ExternalID) { in dom_documenttype_public_id_read()
93 ZVAL_STRING(retval, (char *) (dtdptr->ExternalID)); in dom_documenttype_public_id_read()
110 DOM_PROP_NODE(xmlDtdPtr, dtdptr, obj); in dom_documenttype_system_id_read()
112 if (dtdptr->SystemID) { in dom_documenttype_system_id_read()
113 ZVAL_STRING(retval, (char *) (dtdptr->SystemID)); in dom_documenttype_system_id_read()
130 DOM_PROP_NODE(xmlDtdPtr, dtdptr, obj); in dom_documenttype_internal_subset_read()
133 if (dtdptr->doc != NULL && ((intsubset = xmlGetIntSubset(dtdptr->doc)) != NULL)) { in dom_documenttype_internal_subset_read()