Searched refs:localname (Results 1 - 25 of 40) sorted by relevance

12

/external/jacoco/org.jacoco.agent.rt/src/org/jacoco/agent/rt/internal/
H A DClassFileDumper.java57 final String localname;
61 localname = name.substring(pkgpos + 1);
64 localname = name;
69 "%s.%016x.class", localname, id));
/external/elfutils/libdwfl/
H A Dfind-debuginfo.c165 char *localname = NULL; local
177 localname = malloc (len + sizeof ".debug");
178 if (unlikely (localname == NULL))
180 memcpy (localname, file_basename, len);
181 memcpy (&localname[len], ".debug", sizeof ".debug");
182 debuglink_file = localname;
194 free (localname);
222 free (localname);
313 free (localname);
326 free (localname);
[all...]
/external/ppp/pppd/
H A Deap.h148 void eap_authwithpeer __P((int unit, char *localname));
149 void eap_authpeer __P((int unit, char *localname));
H A Deap.c239 eap_authwithpeer(unit, localname)
241 char *localname;
246 esp->es_client.ea_name = localname;
247 esp->es_client.ea_namelen = strlen(localname);
874 eap_authpeer(unit, localname)
876 char *localname;
881 esp->es_server.ea_name = localname;
882 esp->es_server.ea_namelen = strlen(localname);
/external/python/cpython2/Lib/xml/dom/
H A Dexpatbuilder.py121 uri, localname, prefix = parts
123 qname = "%s:%s" % (prefix, localname)
125 localname = intern(localname, localname)
127 uri, localname = parts
129 qname = localname = intern(localname, localname)
130 return intern(uri, uri), localname, prefi
[all...]
H A Dpulldom.py65 uri, localname = name
73 tagName = prefix + ":" + localname
75 tagName = localname
82 # localname
84 node = self.document.createElement(localname)
86 node = self.buildDocument(None, localname)
H A Dminidom.py700 prefix, localname = _nssplit(qualifiedName)
701 attr = self.getAttributeNodeNS(namespaceURI, localname)
704 attr = Attr(qualifiedName, namespaceURI, localname, prefix)
1248 prefix, localname = _nssplit(qualifiedName)
1249 self.name = localname
1387 prefix, localname = _nssplit(qualifiedName)
/external/python/cpython3/Lib/xml/dom/
H A Dexpatbuilder.py119 uri, localname, prefix = parts
121 qname = "%s:%s" % (prefix, localname)
123 localname = intern(localname, localname)
125 uri, localname = parts
127 qname = localname = intern(localname, localname)
130 return intern(uri, uri), localname, prefi
[all...]
H A Dpulldom.py59 uri, localname = name
67 tagName = prefix + ":" + localname
69 tagName = localname
76 # localname
78 node = self.document.createElement(localname)
80 node = self.buildDocument(None, localname)
H A Dminidom.py749 prefix, localname = _nssplit(qualifiedName)
750 attr = self.getAttributeNodeNS(namespaceURI, localname)
752 attr = Attr(qualifiedName, namespaceURI, localname, prefix)
1293 prefix, localname = _nssplit(qualifiedName)
1294 self.name = localname
1432 prefix, localname = _nssplit(qualifiedName)
/external/tagsoup/src/org/ccil/cowan/tagsoup/
H A DPYXWriter.java151 public void endElement(String uri, String localname, String qname) throws SAXException { argument
152 if (qname.length() == 0) qname = localname;
176 public void startElement(String uri, String localname, String qname, argument
178 if (qname.length() == 0) qname=localname;
/external/libxml2/include/libxml/
H A DSAX2.h114 const xmlChar *localname,
124 const xmlChar *localname,
H A Dparser.h676 * @localname: the local name of the element
684 * @attributes: pointer to the array of (localname/prefix/URI/value/end)
693 const xmlChar *localname,
705 * @localname: the local name of the element
714 const xmlChar *localname,
/external/libxml2/
H A DtestSAX.c885 const xmlChar *localname,
899 fprintf(stdout, "SAX.startElementNs(%s", (char *) localname);
942 const xmlChar *localname,
949 fprintf(stdout, "SAX.endElementNs(%s", (char *) localname);
884 startElementNsDebug(void *ctx ATTRIBUTE_UNUSED, const xmlChar *localname, const xmlChar *prefix, const xmlChar *URI, int nb_namespaces, const xmlChar **namespaces, int nb_attributes, int nb_defaulted, const xmlChar **attributes) argument
941 endElementNsDebug(void *ctx ATTRIBUTE_UNUSED, const xmlChar *localname, const xmlChar *prefix, const xmlChar *URI) argument
H A DSAX2.c1962 * @localname: the local name of the attribute
1975 const xmlChar * localname,
2005 ret->name = localname;
2007 ret->name = xmlStrdup(localname);
2025 (xmlChar *) localname, NULL);
2027 ret = xmlNewNsProp(ctxt->node, namespace, localname, NULL);
2111 fullname = xmlBuildQName(localname, prefix, fn, 50);
2120 if ((fullname != fn) && (fullname != localname))
2152 (localname[0] == 'i') && (localname[
1974 xmlSAX2AttributeNs(xmlParserCtxtPtr ctxt, const xmlChar * localname, const xmlChar * prefix, const xmlChar * value, const xmlChar * valueend) argument
2204 xmlSAX2StartElementNs(void *ctx, const xmlChar *localname, const xmlChar *prefix, const xmlChar *URI, int nb_namespaces, const xmlChar **namespaces, int nb_attributes, int nb_defaulted, const xmlChar **attributes) argument
[all...]
H A Dxmlreader.c706 * @localname: the local name of the element
713 * @attributes: pointer to the array of (localname/prefix/URI/value/end)
720 const xmlChar *localname,
733 printf("xmlTextReaderStartElementNs(%s)\n", localname);
736 reader->startElementNs(ctx, localname, prefix, URI, nb_namespaces,
751 * @localname: the local name of the element
759 const xmlChar * localname,
767 printf("xmlTextReaderEndElementNs(%s)\n", localname);
770 reader->endElementNs(ctx, localname, prefix, URI);
2392 xmlChar *localname; local
719 xmlTextReaderStartElementNs(void *ctx, const xmlChar *localname, const xmlChar *prefix, const xmlChar *URI, int nb_namespaces, const xmlChar **namespaces, int nb_attributes, int nb_defaulted, const xmlChar **attributes) argument
758 xmlTextReaderEndElementNs(void *ctx, const xmlChar * localname, const xmlChar * prefix, const xmlChar * URI) argument
2637 xmlChar *localname; local
[all...]
H A Dtestlimits.c1175 const xmlChar * localname ATTRIBUTE_UNUSED,
1197 const xmlChar * localname ATTRIBUTE_UNUSED,
H A Dparser.c309 * @localname: the attribute localname
315 const xmlChar * localname)
326 (const char *) localname, NULL, NULL, 0, 0,
327 "Attribute %s redefined\n", localname);
331 (const char *) prefix, (const char *) localname,
333 localname);
1092 const xmlChar *values[]; /* array of localname/prefix/values/external */
1230 * split the element name into prefix:localname , the string found
1275 * Split the element name into prefix:localname , th
314 xmlErrAttributeDup(xmlParserCtxtPtr ctxt, const xmlChar * prefix, const xmlChar * localname) argument
9179 const xmlChar *localname; local
[all...]
H A Druntest.c1454 const xmlChar *localname,
1468 fprintf(SAXdebug, "SAX.startElementNs(%s", (char *) localname);
1511 const xmlChar *localname,
1518 fprintf(SAXdebug, "SAX.endElementNs(%s", (char *) localname);
1453 startElementNsDebug(void *ctx ATTRIBUTE_UNUSED, const xmlChar *localname, const xmlChar *prefix, const xmlChar *URI, int nb_namespaces, const xmlChar **namespaces, int nb_attributes, int nb_defaulted, const xmlChar **attributes) argument
1510 endElementNsDebug(void *ctx ATTRIBUTE_UNUSED, const xmlChar *localname, const xmlChar *prefix, const xmlChar *URI) argument
H A Dxmllint.c1508 const xmlChar *localname,
1522 fprintf(stdout, "SAX.startElementNs(%s", (char *) localname);
1565 const xmlChar *localname,
1572 fprintf(stdout, "SAX.endElementNs(%s", (char *) localname);
1507 startElementNsDebug(void *ctx ATTRIBUTE_UNUSED, const xmlChar *localname, const xmlChar *prefix, const xmlChar *URI, int nb_namespaces, const xmlChar **namespaces, int nb_attributes, int nb_defaulted, const xmlChar **attributes) argument
1564 endElementNsDebug(void *ctx ATTRIBUTE_UNUSED, const xmlChar *localname, const xmlChar *prefix, const xmlChar *URI) argument
/external/apache-xml/src/main/java/org/apache/xpath/compiler/
H A DCompiler.java548 java.lang.String localname
550 QName qname = new QName(namespace, localname);
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
H A DDTMNodeProxy.java901 * @param localname
913 String localname,
925 || tempNode.getLocalName().equals(localname)))
940 traverseChildren(listVector, nl.item(i), namespaceURI, localname,
908 traverseChildren( Vector listVector, Node tempNode, String namespaceURI, String localname, boolean isNamespaceURIWildCard, boolean isLocalNameWildCard) argument
/external/python/cpython2/Lib/
H A Durllib.py479 localname = url2pathname(file)
481 stats = os.stat(localname)
496 return addinfourl(open(localname, 'rb'),
504 return addinfourl(open(localname, 'rb'),
/external/python/cpython3/Lib/urllib/
H A Drequest.py1988 localname = url2pathname(file)
1990 stats = os.stat(localname)
2003 return addinfourl(open(localname, 'rb'), headers, urlfile)
2012 return addinfourl(open(localname, 'rb'), headers, urlfile)
/external/robolectric/v3/runtime/
H A Dtagsoup-1.2.jar ... java.lang.String) int i String uri String localName int max public int getIndex (java.lang.String ...

Completed in 1295 milliseconds

12