Lines Matching refs:other

1465 static bool php_dom_node_is_content_equal(const xmlNode *this, const xmlNode *other)  in php_dom_node_is_content_equal()  argument
1468 xmlChar *other_content = xmlNodeGetContent(other); in php_dom_node_is_content_equal()
1475 static bool php_dom_node_is_ns_uri_equal(const xmlNode *this, const xmlNode *other) in php_dom_node_is_ns_uri_equal() argument
1478 const xmlChar *other_ns = other->ns ? other->ns->href : NULL; in php_dom_node_is_ns_uri_equal()
1482 static bool php_dom_node_is_ns_prefix_equal(const xmlNode *this, const xmlNode *other) in php_dom_node_is_ns_prefix_equal() argument
1485 const xmlChar *other_ns = other->ns ? other->ns->prefix : NULL; in php_dom_node_is_ns_prefix_equal()
1489 static bool php_dom_node_is_equal_node(const xmlNode *this, const xmlNode *other);
1546 static bool php_dom_node_is_equal_node(const xmlNode *this, const xmlNode *other) in PHP_DOM_DEFINE_LIST_COUNTER_HELPER()
1549 ZEND_ASSERT(other != NULL); in PHP_DOM_DEFINE_LIST_COUNTER_HELPER()
1551 if (this->type != other->type) { in PHP_DOM_DEFINE_LIST_COUNTER_HELPER()
1559 return xmlStrEqual(this->name, other->name) in PHP_DOM_DEFINE_LIST_COUNTER_HELPER()
1560 && php_dom_node_is_ns_prefix_equal(this, other) in PHP_DOM_DEFINE_LIST_COUNTER_HELPER()
1561 && php_dom_node_is_ns_uri_equal(this, other) in PHP_DOM_DEFINE_LIST_COUNTER_HELPER()
1563 …ty_check_unordered_xmlNode((const xmlNode *) this->properties, (const xmlNode *) other->properties) in PHP_DOM_DEFINE_LIST_COUNTER_HELPER()
1564 && php_dom_node_list_equality_check_unordered_xmlNs(this->nsDef, other->nsDef) in PHP_DOM_DEFINE_LIST_COUNTER_HELPER()
1565 && php_dom_node_list_equality_check_ordered_xmlNode(this->children, other->children); in PHP_DOM_DEFINE_LIST_COUNTER_HELPER()
1569 const xmlDtd *other_dtd = (const xmlDtd *) other; in PHP_DOM_DEFINE_LIST_COUNTER_HELPER()
1574 return xmlStrEqual(this->name, other->name) && xmlStrEqual(this->content, other->content); in PHP_DOM_DEFINE_LIST_COUNTER_HELPER()
1576 return xmlStrEqual(this->content, other->content); in PHP_DOM_DEFINE_LIST_COUNTER_HELPER()
1579 const xmlAttr *other_attr = (const xmlAttr *) other; in PHP_DOM_DEFINE_LIST_COUNTER_HELPER()
1581 && php_dom_node_is_ns_uri_equal(this, other) in PHP_DOM_DEFINE_LIST_COUNTER_HELPER()
1582 && php_dom_node_is_content_equal(this, other); in PHP_DOM_DEFINE_LIST_COUNTER_HELPER()
1584 return xmlStrEqual(this->name, other->name); in PHP_DOM_DEFINE_LIST_COUNTER_HELPER()
1587 const xmlEntity *other_entity = (const xmlEntity *) other; in PHP_DOM_DEFINE_LIST_COUNTER_HELPER()
1592 && php_dom_node_is_content_equal(this, other); in PHP_DOM_DEFINE_LIST_COUNTER_HELPER()
1595 const xmlNs *other_ns = (const xmlNs *) other; in PHP_DOM_DEFINE_LIST_COUNTER_HELPER()
1598 return php_dom_node_list_equality_check_ordered_xmlNode(this->children, other->children); in PHP_DOM_DEFINE_LIST_COUNTER_HELPER()
2003 zval *other, *id; in PHP_METHOD() local
2008 Z_PARAM_OBJECT_OR_NULL(other) in PHP_METHOD()
2011 if (other == NULL) { in PHP_METHOD()
2015 …UNEXPECTED(!instanceof_function(Z_OBJCE_P(other), dom_node_class_entry) && !instanceof_function(Z_… in PHP_METHOD()
2016 …e_error(1, "must be of type DOMNode|DOMNameSpaceNode|null, %s given", zend_zval_value_name(other)); in PHP_METHOD()
2020 DOM_GET_OBJ(otherp, other, xmlNodePtr, unused_intern); in PHP_METHOD()