Lines Matching refs:xmlChar

67 	const xmlChar *prefix, *name;
80 const xmlChar *namespace,
86 static bool dom_xml_str_equals_treat_nulls_as_empty(const xmlChar *s1, const xmlChar *s2) in dom_xml_str_equals_treat_nulls_as_empty()
101 …nd_always_inline bool dom_xml_str_equals_treat_nulls_as_nulls(const xmlChar *s1, const xmlChar *s2) in dom_xml_str_equals_treat_nulls_as_nulls()
165 const xmlChar *prefix, in dom_xml_local_prefix_map_add()
167 const xmlChar *ns in dom_xml_local_prefix_map_add()
174 static zend_always_inline const xmlChar *dom_xml_local_prefix_map_find( in dom_xml_local_prefix_map_find()
176 const xmlChar *prefix, in dom_xml_local_prefix_map_find()
186 const xmlChar *prefix, in dom_xml_local_prefix_map_conflicts()
188 const xmlChar *ns in dom_xml_local_prefix_map_conflicts()
191 const xmlChar *result = dom_xml_local_prefix_map_find(map, prefix, prefix_len); in dom_xml_local_prefix_map_conflicts()
200 const xmlChar *prefix, in dom_xml_local_prefix_map_contains()
210 const xmlChar *prefix, in dom_xml_ns_prefix_map_add()
212 const xmlChar *ns, in dom_xml_ns_prefix_map_add()
261 …ine HashTable *dom_get_candidates_list(dom_xml_ns_prefix_map *map, const xmlChar *ns, size_t ns_le… in dom_get_candidates_list()
272 static zend_always_inline bool dom_prefix_in_candidate_list(const HashTable *list, const xmlChar *p… in dom_prefix_in_candidate_list()
294 const xmlChar *prefix, in dom_prefix_found_in_ns_prefix_map()
295 const xmlChar *ns, in dom_prefix_found_in_ns_prefix_map()
305 static zend_always_inline const xmlChar *dom_get_attribute_value(const xmlAttr *attr) in dom_get_attribute_value()
314 static const xmlChar *dom_recording_the_namespace_information( in dom_recording_the_namespace_information()
323 const xmlChar *default_namespace_attr_value = NULL; in dom_recording_the_namespace_information()
342 const xmlChar *prefix_definition = attr->name; in dom_recording_the_namespace_information()
346 const xmlChar *namespace_definition = dom_get_attribute_value(attr); in dom_recording_the_namespace_information()
389 static const xmlChar *dom_retrieve_a_preferred_prefix_string( in dom_retrieve_a_preferred_prefix_string()
392 const xmlChar *preferred_prefix, in dom_retrieve_a_preferred_prefix_string()
393 const xmlChar *ns, in dom_retrieve_a_preferred_prefix_string()
411 const xmlChar *prefix = NULL; in dom_retrieve_a_preferred_prefix_string()
412 const xmlChar *last_non_conflicting_in_list = NULL; in dom_retrieve_a_preferred_prefix_string()
437 static xmlChar *dom_xml_generate_a_prefix( in dom_xml_generate_a_prefix()
440 const xmlChar *new_namespace, in dom_xml_generate_a_prefix()
457 } while (dom_xml_local_prefix_map_contains(local_prefixes_map, (const xmlChar *) buffer, length)); in dom_xml_generate_a_prefix()
459 xmlChar *generated_prefix = emalloc(length + 1); in dom_xml_generate_a_prefix()
548 static int dom_xml_check_char_production(const xmlChar *content) in dom_xml_check_char_production()
552 const xmlChar *ptr = content; in dom_xml_check_char_production()
577 static zend_always_inline const xmlChar *dom_xml_attribute_namespace(const xmlAttr *attr) in dom_xml_attribute_namespace()
603 …nt dom_xml_check_xmlns_attribute_requirements(const xmlAttr *attr, const xmlChar *candidate_prefix) in dom_xml_check_xmlns_attribute_requirements()
605 const xmlChar *attr_value = dom_get_attribute_value(attr); in dom_xml_check_xmlns_attribute_requirements()
640 const xmlChar *ptr = comment->content; in dom_xml_serialize_comment_node()
747 const xmlChar *attribute_namespace = dom_xml_attribute_namespace(attr); in dom_xml_serialize_attributes()
750 const xmlChar *candidate_prefix = NULL; in dom_xml_serialize_attributes()
766 const xmlChar *attr_value = dom_get_attribute_value(attr); in dom_xml_serialize_attributes()
786 …const xmlChar *value = dom_xml_local_prefix_map_find(local_prefixes_map, attr->name, strlen((const… in dom_xml_serialize_attributes()
907 const xmlChar *namespace, in dom_xml_serialize_element_node()
949 …const xmlChar *local_default_namespace = dom_recording_the_namespace_information(&map, &local_pref… in dom_xml_serialize_element_node()
952 const xmlChar *inherited_ns = namespace; in dom_xml_serialize_element_node()
955 const xmlChar *const ns = element->ns == NULL ? NULL : element->ns->href; in dom_xml_serialize_element_node()
981 const xmlChar *prefix = element->ns == NULL ? NULL : element->ns->prefix; in dom_xml_serialize_element_node()
985 const xmlChar *candidate_prefix; in dom_xml_serialize_element_node()
1189 const xmlChar *namespace, in dom_xml_serializing_a_document_fragment_node()
1215 const xmlChar *namespace, in dom_xml_serializing_a_document_node()
1251 const xmlChar *namespace, in dom_xml_serialization_algorithm()
1301 const xmlChar *namespace = NULL; in dom_xml_serialize()