Searched refs:__intern (Results 1 – 2 of 2) sorted by relevance
/PHP-8.1/ext/dom/ |
H A D | xml_common.h | 62 #define NODE_GET_OBJ(__ptr, __id, __prtype, __intern) { \ argument 63 __intern = Z_LIBXML_NODE_P(__id); \ 64 if (__intern->node == NULL || !(__ptr = (__prtype)__intern->node->node)) { \ 66 ZSTR_VAL(__intern->std.ce->name));\ 71 #define DOC_GET_OBJ(__ptr, __id, __prtype, __intern) { \ argument 72 __intern = Z_LIBXML_NODE_P(__id); \ 73 if (__intern->document != NULL) { \ 74 if (!(__ptr = (__prtype)__intern->document->ptr)) { \ 75 php_error_docref(NULL, E_WARNING, "Couldn't fetch %s", __intern->std.ce->name);\ 84 #define DOM_GET_THIS_OBJ(__ptr, __id, __prtype, __intern) \ argument [all …]
|
H A D | php_dom.h | 159 #define DOM_GET_OBJ(__ptr, __id, __prtype, __intern) { \ argument 160 __intern = Z_DOMOBJ_P(__id); \ 161 if (__intern->ptr == NULL || !(__ptr = (__prtype)((php_libxml_node_ptr *)__intern->ptr)->node)) { \ 162 zend_throw_error(NULL, "Couldn't fetch %s", ZSTR_VAL(__intern->std.ce->name));\
|
Completed in 8 milliseconds