Lines Matching refs:where
1422 static xmlNodePtr dom_insert_adjacent(const zend_string *where, xmlNodePtr thisp, dom_object *this_… in dom_insert_adjacent() argument
1424 if (zend_string_equals_literal_ci(where, "beforebegin")) { in dom_insert_adjacent()
1436 } else if (zend_string_equals_literal_ci(where, "afterbegin")) { in dom_insert_adjacent()
1449 } else if (zend_string_equals_literal_ci(where, "beforeend")) { in dom_insert_adjacent()
1458 } else if (zend_string_equals_literal_ci(where, "afterend")) { in dom_insert_adjacent()
1483 zend_string *where; in PHP_METHOD() local
1489 …if (zend_parse_parameters(ZEND_NUM_ARGS(), "SO", &where, &element_zval, dom_element_class_entry) =… in PHP_METHOD()
1496 xmlNodePtr result = dom_insert_adjacent(where, thisp, this_intern, otherp); in PHP_METHOD()
1512 zend_string *where, *data; in PHP_METHOD() local
1517 if (zend_parse_parameters(ZEND_NUM_ARGS(), "SS", &where, &data) == FAILURE) { in PHP_METHOD()
1529 xmlNodePtr result = dom_insert_adjacent(where, thisp, this_intern, otherp); in PHP_METHOD()