Lines Matching refs:qname
1815 char *qname, *qname_tmp = NULL;
1823 if (zend_parse_parameters(ZEND_NUM_ARGS(), "s|b!", &qname, &qname_length, &force, &force_is_null) == FAILURE) {
1830 if (xmlValidateName(BAD_CAST qname, 0) != 0) {
1840 qname_tmp = zend_str_tolower_dup_ex(qname, qname_length);
1842 qname = qname_tmp;
1847 xmlNodePtr attribute = dom_get_attribute_or_nsdecl(intern, thisp, BAD_CAST qname, qname_length);
1854 xmlSetNsProp(thisp, NULL, BAD_CAST qname, NULL);
1859 const xmlChar *split = xmlSplitQName3((const xmlChar *) qname, &len);
1860 if (split == NULL || strncmp(qname, "xmlns:", len + 1 /* +1 for matching ':' too */) != 0) {
1862 dom_create_attribute(thisp, qname, "");
1865 xmlNewNs(thisp, (const xmlChar *) "", (const xmlChar *) (qname + len + 1));