Searched defs:pref (Results 1 - 9 of 9) sorted by relevance
/vbox/src/libs/libxml2-2.6.31/ |
H A D | xmlstring.c | 169 * @pref: the prefix of the QName 179 xmlStrQEqual(const xmlChar *pref, const xmlChar *name, const xmlChar *str) { argument 180 if (pref == NULL) return(xmlStrEqual(name, str)); 185 if (*pref++ != *str) return(0); 186 } while ((*str++) && (*pref));
|
H A D | SAX2.c | 2134 const xmlChar *uri, *pref; local 2201 pref = namespaces[i++]; 2203 ns = xmlNewNs(NULL, uri, pref); 2211 if ((URI != NULL) && (prefix == pref))
|
H A D | catalog.c | 1222 xmlCatalogPrefer pref = XML_CATA_PREFER_NONE; local 1236 pref = prefer; 1240 entry = xmlNewCatalogEntry(XML_CATA_GROUP, prop, base, NULL, pref, cgroup);
|
H A D | xmlIO.c | 3655 xmlCatalogAllow pref; local 3661 pref = xmlCatalogGetDefaults(); 3663 if ((pref != XML_CATA_ALLOW_NONE) && (!xmlNoNetExists(URL))) { 3668 ((pref == XML_CATA_ALLOW_ALL) || 3669 (pref == XML_CATA_ALLOW_DOCUMENT))) { 3678 ((pref == XML_CATA_ALLOW_ALL) || 3679 (pref == XML_CATA_ALLOW_GLOBAL))) { 3693 ((pref == XML_CATA_ALLOW_ALL) || 3694 (pref == XML_CATA_ALLOW_DOCUMENT))) { 3698 ((pref [all...] |
H A D | parser.c | 8022 * @pref: the element prefix 8036 const xmlChar *pref, const xmlChar *elem, 8059 pref, elem, *prefix, name); 8147 xmlParseStartTag2(xmlParserCtxtPtr ctxt, const xmlChar **pref, argument 8472 *pref = prefix; 8035 xmlParseAttribute2(xmlParserCtxtPtr ctxt, const xmlChar *pref, const xmlChar *elem, const xmlChar **prefix, xmlChar **value, int *len, int *alloc) argument
|
H A D | tree.c | 7964 const xmlChar *pref; local 7969 pref = prefix; 7975 (xmlTreeNSListLookupByPrefix(elem->nsDef, pref) != NULL)) 7982 if (xmlSearchNsByPrefixStrict(doc, elem->parent, pref, NULL) == 1) 7985 ret = xmlNewNs(NULL, nsName, pref); 8007 pref = BAD_CAST buf;
|
H A D | xmlschemas.c | 5779 const xmlChar *pref; local 5818 pref = xmlDictLookup(ctxt->dict, value, len); 5819 ns = xmlSearchNs(attr->doc, attr->parent, pref);
|
H A D | testapi.c | 35797 xmlChar * pref; /* the prefix of the QName */ local 35808 pref = gen_const_xmlChar_ptr(n_pref, 0); 35812 ret_val = xmlStrQEqual((const xmlChar *)pref, (const xmlChar *)name, (const xmlChar *)str); 35815 des_const_xmlChar_ptr(n_pref, (const xmlChar *)pref, 0); [all...] |
/vbox/src/libs/libxml2-2.6.31/python/ |
H A D | libxml2-py.c | 2859 xmlChar * pref; local 2863 if (!PyArg_ParseTuple(args, (char *)"zzz:xmlStrQEqual", &pref, &name, &str)) 2866 c_retval = xmlStrQEqual(pref, name, str);
|
Completed in 560 milliseconds