Searched defs:nameSpace (Results 1 - 4 of 4) sorted by relevance

/vbox/src/libs/libxml2-2.6.31/
H A Dvalid.c6116 xmlNsPtr nameSpace = attrib->ns; local
6118 if (nameSpace == NULL)
6119 nameSpace = elem->ns;
6125 if (nameSpace == NULL) {
6128 } else if (!xmlStrEqual(nameSpace->prefix,
H A Dtree.c5570 * @nameSpace: the namespace prefix
5575 * @nameSpace can be NULL, this is a search for the default namespace.
5583 xmlSearchNs(xmlDocPtr doc, xmlNodePtr node, const xmlChar *nameSpace) { argument
5589 if ((nameSpace != NULL) &&
5590 (xmlStrEqual(nameSpace, (const xmlChar *)"xml"))) {
5631 if ((cur->prefix == NULL) && (nameSpace == NULL) &&
5634 if ((cur->prefix != NULL) && (nameSpace != NULL) &&
5636 (xmlStrEqual(cur->prefix, nameSpace)))
5643 if ((cur->prefix == NULL) && (nameSpace == NULL) &&
5646 if ((cur->prefix != NULL) && (nameSpace !
6270 xmlHasNsProp(xmlNodePtr node, const xmlChar *name, const xmlChar *nameSpace) argument
6342 xmlGetNsProp(xmlNodePtr node, const xmlChar *name, const xmlChar *nameSpace) argument
[all...]
H A Dtestapi.c20363 xmlChar * nameSpace; /* the URI of the namespace */ local
20372 nameSpace = gen_const_xmlChar_ptr(n_nameSpace, 2);
20374 ret_val = xmlGetNsProp(node, (const xmlChar *)name, (const xmlChar *)nameSpace);
20379 des_const_xmlChar_ptr(n_nameSpace, (const xmlChar *)nameSpace, 2);
20448 xmlChar * nameSpace; /* the URI of the namespace */ local
20457 nameSpace = gen_const_xmlChar_ptr(n_nameSpace, 2);
20459 ret_val = xmlHasNsProp(node, (const xmlChar *)name, (const xmlChar *)nameSpace);
20464 des_const_xmlChar_ptr(n_nameSpace, (const xmlChar *)nameSpace, 2);
22933 xmlChar * nameSpace; /* the namespace prefix */ local
22942 nameSpace
[all...]
/vbox/src/libs/libxml2-2.6.31/python/
H A Dlibxml2-py.c987 xmlChar * nameSpace; local
989 if (!PyArg_ParseTuple(args, (char *)"Ozz:xmlHasNsProp", &pyobj_node, &name, &nameSpace))
993 c_retval = xmlHasNsProp(node, name, nameSpace);
5069 xmlChar * nameSpace; local
5071 if (!PyArg_ParseTuple(args, (char *)"OOz:xmlSearchNs", &pyobj_doc, &pyobj_node, &nameSpace))
5076 c_retval = xmlSearchNs(doc, node, nameSpace);
11688 xmlChar * nameSpace; local
11690 if (!PyArg_ParseTuple(args, (char *)"Ozz:xmlGetNsProp", &pyobj_node, &name, &nameSpace))
11694 c_retval = xmlGetNsProp(node, name, nameSpace);

Completed in 204 milliseconds