Lines Matching refs:nodep
49 xmlEntity *nodep; in dom_entity_public_id_read() local
51 nodep = (xmlEntity *) dom_object_get_node(obj); in dom_entity_public_id_read()
53 if (nodep == NULL) { in dom_entity_public_id_read()
59 if (nodep->etype != XML_EXTERNAL_GENERAL_UNPARSED_ENTITY) { in dom_entity_public_id_read()
62 ZVAL_STRING(*retval, (char *) (nodep->ExternalID), 1); in dom_entity_public_id_read()
77 xmlEntity *nodep; in dom_entity_system_id_read() local
79 nodep = (xmlEntity *) dom_object_get_node(obj); in dom_entity_system_id_read()
81 if (nodep == NULL) { in dom_entity_system_id_read()
87 if (nodep->etype != XML_EXTERNAL_GENERAL_UNPARSED_ENTITY) { in dom_entity_system_id_read()
90 ZVAL_STRING(*retval, (char *) (nodep->SystemID), 1); in dom_entity_system_id_read()
105 xmlEntity *nodep; in dom_entity_notation_name_read() local
108 nodep = (xmlEntity *) dom_object_get_node(obj); in dom_entity_notation_name_read()
110 if (nodep == NULL) { in dom_entity_notation_name_read()
116 if (nodep->etype != XML_EXTERNAL_GENERAL_UNPARSED_ENTITY) { in dom_entity_notation_name_read()
119 content = xmlNodeGetContent((xmlNodePtr) nodep); in dom_entity_notation_name_read()