Lines Matching refs:nodep
47 xmlEntity *nodep = (xmlEntity *) dom_object_get_node(obj); in dom_entity_public_id_read() local
49 if (nodep == NULL) { in dom_entity_public_id_read()
54 if (nodep->etype != XML_EXTERNAL_GENERAL_UNPARSED_ENTITY) { in dom_entity_public_id_read()
57 ZVAL_STRING(retval, (char *) (nodep->ExternalID)); in dom_entity_public_id_read()
72 xmlEntity *nodep = (xmlEntity *) dom_object_get_node(obj); in dom_entity_system_id_read() local
74 if (nodep == NULL) { in dom_entity_system_id_read()
79 if (nodep->etype != XML_EXTERNAL_GENERAL_UNPARSED_ENTITY) { in dom_entity_system_id_read()
82 ZVAL_STRING(retval, (char *) (nodep->SystemID)); in dom_entity_system_id_read()
97 xmlEntity *nodep = (xmlEntity *) dom_object_get_node(obj); in dom_entity_notation_name_read() local
100 if (nodep == NULL) { in dom_entity_notation_name_read()
105 if (nodep->etype != XML_EXTERNAL_GENERAL_UNPARSED_ENTITY) { in dom_entity_notation_name_read()
108 content = (char *) xmlNodeGetContent((xmlNodePtr) nodep); in dom_entity_notation_name_read()