HomeSort by relevance Sort by last modified time
    Searched full:localname (Results 26 - 50 of 1018) sorted by null

12 3 4 5 6 7 8 91011>>

  /libcore/luni/src/main/java/org/xml/sax/ext/
Attributes2Impl.java 95 public boolean isDeclared (String uri, String localName)
97 int index = getIndex (uri, localName);
101 "No such attribute: local=" + localName
144 * @param localName The attribute's local name.
149 public boolean isSpecified (String uri, String localName)
151 int index = getIndex (uri, localName);
155 "No such attribute: local=" + localName
231 * @param localName The local name, or the empty string if
240 public void addAttribute (String uri, String localName, String qName,
243 super.addAttribute (uri, localName, qName, type, value)
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
ExtendedContentHandler.java 33 * startElement(namespaceURI,localName,qName,atts)
37 * startElement(namespaceURI,localName,qName)
43 * addAttribute(namespaceURI, localName, qName, type, value)
52 * @param localName the local name of the attribute (without prefix)
61 String localName,
102 * endElement(namespaceURI,localName,qName)
105 * the localName from the qualified name and derive the namespaceURI from
116 * startElement(uri,localName,qname,atts)
120 * @param localName the local name (without prefix) of the element
125 public void startElement(String uri, String localName, String qName
    [all...]
AttributesImplSerializer.java 47 * "prefix:localName" or "{uri}localName".
125 /* add the key with the format of "prefix:localName" */
130 /* now add with key of the format "{uri}localName" */
209 * @param localName the local namer (after the ':' ) of the attribute name.
213 public final int getIndex(String uri, String localName)
221 index = super.getIndex(uri,localName);
226 // Form the key of format "{uri}localName"
228 m_buff.append('{').append(uri).append('}').append(localName);
  /external/tagsoup/src/org/ccil/cowan/tagsoup/
XMLWriter.java 564 * @param localName The element's local (unprefixed) name (required).
576 public void startElement (String uri, String localName,
582 if (forceDTD && !hasOutputDTD) startDTD(localName == null ? qName : localName, "", "");
584 writeName(uri, localName, qName, true);
596 super.startElement(uri, localName, qName, atts);
607 * @param localName The element's local (unprefixed) name (required).
618 public void endElement (String uri, String localName, String qName)
632 writeName(uri, localName, qName, true);
639 super.endElement(uri, localName, qName)
    [all...]
  /libcore/luni/src/main/java/org/xml/sax/helpers/
AttributesImpl.java 197 * @param localName The attribute's local name.
201 public int getIndex (String uri, String localName)
205 if (data[i].equals(uri) && data[i+1].equals(localName)) {
237 * @param localName The local name.
242 public String getType (String uri, String localName)
246 if (data[i].equals(uri) && data[i+1].equals(localName)) {
279 * @param localName The local name.
284 public String getValue (String uri, String localName)
288 if (data[i].equals(uri) && data[i+1].equals(localName)) {
375 * @param localName The local name, or the empty string i
    [all...]
  /libcore/luni/src/test/java/tests/org/w3c/dom/
RemoveNamedItemNS.java 34 * The "removeNamedItemNS(namespaceURI,localName)" method for a NamedNodeMap
35 * should remove a node specified by localName and namespaceURI.
40 * method removeNamedItemNS(namespaceURI,localName). Check to see if the node
96 String localName = "domest";
111 localName);
122 // String localName = "local1";
153 // localName);
  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
localName02.java 70 String localName;
73 localName = createdNode.getLocalName();
74 assertNull("localNameNull", localName);
getAttributeNS03.java 34 * The "getAttributeNS(namespaceURI,localName)" method retrieves an
68 String localName = "domestic";
77 testAddr.removeAttributeNS(namespaceURI, localName);
78 attrValue = testAddr.getAttributeNS(namespaceURI, localName);
getElementsByTagNameNS02.java 34 * The "getElementsByTagNameNS(namespaceURI,localName)" method for a
36 * localName and namespaceURI in the order they were encountered in a preorder
39 * Invoke method getElementsByTagNameNS(namespaceURI,localName) on this document
40 * with namespaceURI being " " and localName is "employee".
getElementsByTagNameNS05.java 34 * The "getElementsByTagNameNS(namespaceURI,localName)" method returns a NodeList
40 * localName.
70 String localName = "nomatch";
74 elementList = doc.getElementsByTagNameNS(namespaceURI, localName);
getElementsByTagNameNS09.java 34 * The "getElementsByTagNameNS(namespaceURI,localName)" method for a
36 * localName and namespaceURI in the order they were encountered in a preorder
39 * Invoke method getElementsByTagNameNS(namespaceURI,localName) on the document
40 * element with namespaceURI being "*" and localName is "employee".
getNamedItemNS02.java 34 * The "getNamedItemNS(namespaceURI,localName)" method for a
42 * method getNamedItemNS(namespaceURI,localName).
71 String localName = "domest";
81 newAttr = (Attr) attributes.getNamedItemNS(namespaceURI, localName);
localName01.java 78 String localName;
84 localName = addrAttr.getLocalName();
85 assertEquals("localName", "domestic", localName);
namednodemapsetnameditemns07.java 34 * The method setNamedItemNS adds a node using its namespaceURI and localName and
38 * Retreieve the attributes of first element whose localName is address into a named node map.
39 * Retreive the attribute whose namespaceURI=http://www.usa.com and localName=domestic
40 * from the NamedNodeMap. Retreieve the attributes of second element whose localName is address
  /prebuilts/gdb/darwin-x86/lib/python2.7/xml/dom/
minidom.py 211 # Overridden in Element and Attr where localName can be Non-Null
272 defproperty(Node, "localName", doc="Namespace-local name of this node.")
308 def _get_elements_by_tagName_ns_helper(parent, nsURI, localName, rc):
311 if ((localName == "*" or node.localName == localName) and
314 _get_elements_by_tagName_ns_helper(node, nsURI, localName, rc)
344 def __init__(self, qName, namespaceURI=EMPTY_NAMESPACE, localName=None,
391 newName = self.localName
393 newName = "%s:%s" % (prefix, self.localName)
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/xml/dom/
minidom.py 211 # Overridden in Element and Attr where localName can be Non-Null
272 defproperty(Node, "localName", doc="Namespace-local name of this node.")
308 def _get_elements_by_tagName_ns_helper(parent, nsURI, localName, rc):
311 if ((localName == "*" or node.localName == localName) and
314 _get_elements_by_tagName_ns_helper(node, nsURI, localName, rc)
344 def __init__(self, qName, namespaceURI=EMPTY_NAMESPACE, localName=None,
391 newName = self.localName
393 newName = "%s:%s" % (prefix, self.localName)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/xml/dom/
minidom.py 211 # Overridden in Element and Attr where localName can be Non-Null
272 defproperty(Node, "localName", doc="Namespace-local name of this node.")
308 def _get_elements_by_tagName_ns_helper(parent, nsURI, localName, rc):
311 if ((localName == "*" or node.localName == localName) and
314 _get_elements_by_tagName_ns_helper(node, nsURI, localName, rc)
344 def __init__(self, qName, namespaceURI=EMPTY_NAMESPACE, localName=None,
391 newName = self.localName
393 newName = "%s:%s" % (prefix, self.localName)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/xml/dom/
minidom.py 211 # Overridden in Element and Attr where localName can be Non-Null
272 defproperty(Node, "localName", doc="Namespace-local name of this node.")
308 def _get_elements_by_tagName_ns_helper(parent, nsURI, localName, rc):
311 if ((localName == "*" or node.localName == localName) and
314 _get_elements_by_tagName_ns_helper(node, nsURI, localName, rc)
344 def __init__(self, qName, namespaceURI=EMPTY_NAMESPACE, localName=None,
391 newName = self.localName
393 newName = "%s:%s" % (prefix, self.localName)
    [all...]
  /external/apache-xml/src/main/java/org/apache/xalan/processor/
ProcessorAttributeSet.java 46 * @param localName The local name (without prefix), or the
61 StylesheetHandler handler, String uri, String localName, String rawName, Attributes attributes)
96 * @param localName The local name (without prefix), or empty string if not namespace processing.
100 StylesheetHandler handler, String uri, String localName, String rawName)
  /external/tagsoup/src/org/ccil/cowan/tagsoup/jaxp/
SAX1ParserAdapter.java 126 public void endElement(String uri, String localName, String qName)
130 qName = localName;
168 public void startElement(String uri, String localName, String qName,
173 qName = localName;
  /external/v8/test/mjsunit/
debug-materialized.js 35 print("'" + f.localName(j) + "' = " + f.localValue(j).value());
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/org/xml/sax/support/
MockHandler.java 57 public void endElement(String uri, String localName, String name) throws SAXException {
58 logger.add("endElement", uri, localName, name);
101 public void startElement(String uri, String localName, String name, Attributes atts)
103 logger.add("startElement", uri, localName, name, atts);
  /external/skia/src/core/
SkYUVPlanesCache.cpp 12 #define CHECK_LOCAL(localCache, localName, globalName, ...) \
13 ((localCache) ? localCache->localName(__VA_ARGS__) : SkResourceCache::globalName(__VA_ARGS__))
  /frameworks/base/packages/Osu/src/com/android/hotspot2/omadm/
OMAParser.java 38 public void startElement(String uri, String localName, String qName, Attributes attributes)
51 public void endElement(String uri, String localName, String qName) throws SAXException {
  /frameworks/base/packages/Osu/src/com/android/hotspot2/osu/
XMLParser.java 39 public void startElement(String uri, String localName, String qName, Attributes attributes)
53 public void endElement(String uri, String localName, String qName) throws SAXException {

Completed in 2540 milliseconds

12 3 4 5 6 7 8 91011>>