Searched defs:localName (Results 1 - 16 of 16) sorted by relevance

/vbox/src/VBox/Main/webservice/jaxlibs/
H A Dstreambuffer.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/sun/ com/sun/xml/ com/sun/xml/stream/ ...
H A DFastInfoset.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/sun/ com/sun/xml/ com/sun/xml/fastinfoset/ ...
H A Dresolver.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/sun/ com/sun/org/ com/sun/org/apache/ ...
H A Dsaaj-impl.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/services/ com/ com/sun/ com/sun/xml/ ...
H A Djaxb-impl.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/sun/ com/sun/xml/ com/sun/xml/bind/ ...
H A Dsjsxp.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/services/ com/ com/sun/ com/sun/xml/ ...
H A Djaxws-rt.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/services/ com/ com/sun/ com/sun/xml/ ...
H A Djaxb-xjc.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/maven/ META-INF/maven/com. ...
H A Djaxws-api.jarMETA-INF/ META-INF/MANIFEST.MF javax/ javax/xml/ javax/xml/ws/ javax/xml/ws/handler/ ...
H A Djsr173_api.jarMETA-INF/ META-INF/MANIFEST.MF javax/ javax/xml/ javax/xml/stream/ javax/xml/stream/events/ ...
H A Djaxws-tools.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/services/ com/ com/sun/ com/sun/istack/ ...
/vbox/src/libs/libxml2-2.6.31/
H A Dxmlreader.c2385 * @localName: the local name of the attribute.
2394 xmlTextReaderGetAttributeNs(xmlTextReaderPtr reader, const xmlChar *localName, argument
2399 if ((reader == NULL) || (localName == NULL))
2411 if (! xmlStrEqual(localName, BAD_CAST "xmlns")) {
2412 prefix = BAD_CAST localName;
2417 ((ns->prefix != NULL) && (xmlStrEqual(ns->prefix, localName)))) {
2425 return(xmlGetNsProp(reader->node, localName, namespaceURI));
2662 * @localName: the local name of the attribute.
2672 const xmlChar *localName, const xmlChar *namespaceURI) {
2678 if ((reader == NULL) || (localName
2671 xmlTextReaderMoveToAttributeNs(xmlTextReaderPtr reader, const xmlChar *localName, const xmlChar *namespaceURI) argument
[all...]
H A Dxmlschemastypes.c985 * @localName: the local name
994 const xmlChar *localName)
1002 val->value.qname.name = (xmlChar *) localName;
993 xmlSchemaNewQNameValue(const xmlChar *namespaceName, const xmlChar *localName) argument
H A Dxmlschemas.c883 const xmlChar *localName; member in struct:_xmlSchemaNodeInfo
942 const xmlChar *localName; member in struct:_xmlSchemaAttrInfo
1278 * @localName: the local name
1280 * Returns the given QName in the format "{namespaceName}localName" or
1281 * just "localName" if @namespaceName is NULL.
1283 * Returns the localName if @namespaceName is NULL, a formatted
1289 const xmlChar *localName)
1297 if (localName != NULL) {
1299 return(localName);
1300 *buf = xmlStrcat(*buf, localName);
1287 xmlSchemaFormatQName(xmlChar **buf, const xmlChar *namespaceName, const xmlChar *localName) argument
1308 xmlSchemaFormatQNameNs(xmlChar **buf, xmlNsPtr ns, const xmlChar *localName) argument
2518 xmlChar *localName, *nsName; local
4517 xmlSchemaDebugDumpIDCTable(FILE * output, const xmlChar *namespaceName, const xmlChar *localName, xmlSchemaPSVIIDCBindingPtr bind) argument
8882 const xmlChar *localName, *nsName; local
21789 xmlChar *localName = NULL; local
23853 xmlSchemaValidatorPushAttribute(xmlSchemaValidCtxtPtr vctxt, xmlNodePtr attrNode, int nodeLine, const xmlChar *localName, const xmlChar *nsName, int ownedNames, xmlChar *value, int ownedValue) argument
24705 xmlSchemaVExpandQName(xmlSchemaValidCtxtPtr vctxt, const xmlChar *value, const xmlChar **nsName, const xmlChar **localName) argument
[all...]
H A Dtestapi.c30663 xmlChar * localName; /* the local name of the attribute. */ local
30673 localName = gen_const_xmlChar_ptr(n_localName, 1);
30676 ret_val = xmlTextReaderGetAttributeNs(reader, (const xmlChar *)localName, (const xmlChar *)namespaceURI);
30680 des_const_xmlChar_ptr(n_localName, (const xmlChar *)localName, 1);
31349 xmlChar * localName; /* the local name of the attribute. */ local
31359 localName = gen_const_xmlChar_ptr(n_localName, 1);
31362 ret_val = xmlTextReaderMoveToAttributeNs(reader, (const xmlChar *)localName, (const xmlChar *)namespaceURI);
31366 des_const_xmlChar_ptr(n_localName, (const xmlChar *)localName, 1);
[all...]
/vbox/src/libs/libxml2-2.6.31/python/
H A Dlibxml2-py.c10406 xmlChar * localName; local
10409 if (!PyArg_ParseTuple(args, (char *)"Ozz:xmlTextReaderMoveToAttributeNs", &pyobj_reader, &localName, &namespaceURI))
10413 c_retval = xmlTextReaderMoveToAttributeNs(reader, localName, namespaceURI);
11304 xmlChar * localName; local
11307 if (!PyArg_ParseTuple(args, (char *)"Ozz:xmlTextReaderGetAttributeNs", &pyobj_reader, &localName, &namespaceURI))
11311 c_retval = xmlTextReaderGetAttributeNs(reader, localName, namespaceURI);

Completed in 253 milliseconds