HomeSort by relevance Sort by last modified time
    Searched refs:localName (Results 1 - 25 of 1430) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
ExtendedType.java 31 private String localName;
40 * @param localName Local name of the node
42 public ExtendedType (int nodetype, String namespace, String localName)
46 this.localName = localName;
47 this.hash = nodetype + namespace.hashCode() + localName.hashCode();
56 * @param localName Local name of the node
59 public ExtendedType (int nodetype, String namespace, String localName, int hash)
63 this.localName = localName;
    [all...]
  /external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
QName.java 19 /** XML localname */
20 private String localName;
24 * Splits a qname into prefix and localname.
34 localName = qname.substring(colon + 1);
39 localName = qname;
46 * @param localName the name
48 public QName(String prefix, String localName)
51 this.localName = localName;
65 * @return the localName
    [all...]
  /cts/tools/cts-api-coverage/src/com/android/cts/apicoverage/
DexDepsXmlHandler.java 52 public void startElement(String uri, String localName, String name, Attributes attributes)
54 super.startElement(uri, localName, name, attributes);
55 if ("package".equalsIgnoreCase(localName)) {
57 } else if ("class".equalsIgnoreCase(localName)
58 || "interface".equalsIgnoreCase(localName)) {
60 } else if ("constructor".equalsIgnoreCase(localName)) {
62 } else if ("method".equalsIgnoreCase(localName)) {
66 } else if ("parameter".equalsIgnoreCase(localName)) {
72 public void endElement(String uri, String localName, String name) throws SAXException {
73 super.endElement(uri, localName, name)
    [all...]
TestModuleConfigHandler.java 58 public void startElement(String uri, String localName, String name, Attributes attributes)
60 super.startElement(uri, localName, name, attributes);
62 if (CONFIGURATION_TAG.equalsIgnoreCase(localName)) {
68 } else if (TEST_TAG.equalsIgnoreCase(localName)) {
71 } else if (TARGET_PREPARER_TAG.equalsIgnoreCase(localName)) {
74 } else if (OPTION_TAG.equalsIgnoreCase(localName)) {
94 public void endElement(String uri, String localName, String name) throws SAXException {
95 super.endElement(uri, localName, name);
96 if (TEST_TAG.equalsIgnoreCase(localName)) {
99 } else if (TARGET_PREPARER_TAG.equalsIgnoreCase(localName)) {
    [all...]
CtsReportHandler.java 51 public void startElement(String uri, String localName, String name, Attributes attributes)
53 super.startElement(uri, localName, name, attributes);
56 if (MODULE_TAG.equalsIgnoreCase(localName)) {
65 } else if (TEST_CASE_TAG.equalsIgnoreCase(localName)) {
68 } else if (TEST_TAG.equalsIgnoreCase(localName)) {
76 System.err.println(localName + " " + name);
81 public void endElement(String uri, String localName, String name) throws SAXException {
82 super.endElement(uri, localName, name);
84 if (MODULE_TAG.equalsIgnoreCase(localName)) {
89 } else if (TEST_CASE_TAG.equalsIgnoreCase(localName)) {
    [all...]
CurrentXmlHandler.java 61 public void startElement(String uri, String localName, String name, Attributes attributes)
63 super.startElement(uri, localName, name, attributes);
64 if ("package".equalsIgnoreCase(localName)) {
70 } else if ("class".equalsIgnoreCase(localName)) {
83 } else if ("interface".equalsIgnoreCase(localName)) {
86 } else if ("constructor".equalsIgnoreCase(localName)) {
89 } else if ("method".equalsIgnoreCase(localName)) {
98 } else if ("parameter".equalsIgnoreCase(localName)) {
104 public void endElement(String uri, String localName, String name) throws SAXException {
105 super.endElement(uri, localName, name)
    [all...]
  /frameworks/base/sax/java/android/sax/
Children.java 30 Element getOrCreate(Element parent, String uri, String localName) {
31 int hash = uri.hashCode() * 31 + localName.hashCode();
37 current = new Child(parent, uri, localName, parent.depth + 1, hash);
46 && current.localName.compareTo(localName) == 0) {
56 current = new Child(parent, uri, localName, parent.depth + 1, hash);
65 Element get(String uri, String localName) {
66 int hash = uri.hashCode() * 31 + localName.hashCode();
76 && current.localName.compareTo(localName) == 0)
    [all...]
Element.java 33 final String localName;
46 Element(Element parent, String uri, String localName, int depth) {
49 this.localName = localName;
57 public Element getChild(String localName) {
58 return getChild("", localName);
64 public Element getChild(String uri, String localName) {
74 return children.getOrCreate(this, uri, localName);
83 public Element requireChild(String localName) {
84 return requireChild("", localName);
    [all...]
RootElement.java 74 * @param localName the local name
76 public RootElement(String uri, String localName) {
77 super(null, uri, localName, 0);
84 * @param localName the local name
86 public RootElement(String localName) {
87 this("", localName);
110 public void startElement(String uri, String localName, String qName,
116 startRoot(uri, localName, attributes);
132 Element child = children.get(uri, localName);
140 void startRoot(String uri, String localName, Attributes attributes
    [all...]
  /libcore/luni/src/main/java/org/xml/sax/ext/
Attributes2.java 82 * @param localName The attribute's local name.
88 public boolean isDeclared (String uri, String localName);
113 * @param localName The attribute's local name.
119 public boolean isSpecified (String uri, String localName);
  /external/jdiff/src/jdiff/
APIHandler.java 72 public void startElement(java.lang.String uri, java.lang.String localName,
75 if (localName.equals(""))
76 localName = qName;
77 if (localName.compareTo("api") == 0) {
81 } else if (localName.compareTo("package") == 0) {
82 currentElement = localName;
85 } else if (localName.compareTo("class") == 0) {
86 currentElement = localName;
93 } else if (localName.compareTo("interface") == 0) {
94 currentElement = localName;
    [all...]
CommentsHandler.java 57 public void startElement(java.lang.String uri, java.lang.String localName,
60 if (localName.equals(""))
61 localName = qName;
62 if (localName.compareTo("comments") == 0) {
77 } else if (localName.compareTo("comment") == 0) {
79 } else if (localName.compareTo("identifier") == 0) {
85 } else if (localName.compareTo("text") == 0) {
91 addStartTagToText(localName, attributes);
93 System.out.println("Error: unknown element type: " + localName);
99 public void endElement(java.lang.String uri, java.lang.String localName,
    [all...]
  /libcore/luni/src/test/java/tests/org/w3c/dom/
LocalName.java 26 public final class LocalName extends DOMTestCase {
60 String localName;
66 localName = addrAttr.getLocalName();
67 assertEquals("localName", "domestic", localName);
72 String localName;
75 localName = createdNode.getLocalName();
76 assertNull("localNameNull", localName);
83 String localName;
88 localName = textNode.getLocalName()
    [all...]
HasAttributeNS.java 74 String localName = "nomatch";
83 state = testNode.hasAttributeNS(namespaceURI, localName);
87 String localName = "domestic";
96 state = testNode.hasAttributeNS(namespaceURI, localName);
100 String localName = "blank";
110 state = testNode.hasAttributeNS(namespaceURI, localName);
116 // String localName = "district";
126 // state = testNode.hasAttributeNS(namespaceURI, localName);
130 String localName = "domestic";
139 state = testNode.hasAttributeNS(namespaceURI, localName);
    [all...]
  /libcore/luni/src/main/java/org/xml/sax/
Attributes.java 182 * @param localName The attribute's local name.
186 public int getIndex (String uri, String localName);
207 * @param localName The local name of the attribute.
212 public abstract String getType (String uri, String localName);
237 * @param localName The local name of the attribute.
241 public abstract String getValue (String uri, String localName);
  /system/tools/hidl/
TypeDef.cpp 24 TypeDef::TypeDef(const char* localName, const FQName& fullName, const Location& location,
26 : NamedType(localName, fullName, location, parent), mReferencedType(type) {}
51 return "typedef " + localName();
80 << localName()
NamedType.cpp 21 NamedType::NamedType(const char* localName, const FQName& fullName, const Location& loc,
23 : Type(parent), mLocalName(localName), mFullName(fullName), mLocation(loc) {}
33 std::string NamedType::localName() const {
  /libcore/luni/src/main/java/org/apache/harmony/xml/
ExpatAttributes.java 77 public int getIndex(String uri, String localName) {
81 if (localName == null) {
82 throw new NullPointerException("localName == null");
88 return getIndex(pointer, uri, localName);
102 public String getType(String uri, String localName) {
106 if (localName == null) {
107 throw new NullPointerException("localName == null");
109 return getIndex(uri, localName) == -1 ? null : CDATA;
116 public String getValue(String uri, String localName) {
120 if (localName == null)
    [all...]
  /libcore/luni/src/main/java/org/w3c/dom/
NamedNodeMap.java 107 * @param localName The local name of the node to retrieve.
118 String localName)
123 * <code>localName</code>. If a node with that namespace URI and that
131 * <code>localName</code> attributes.
167 * @param localName The local name of the node to remove.
172 * <code>namespaceURI</code> and <code>localName</code> in this map.
180 String localName)
Element.java 34 * The name of the element. If <code>Node.localName</code> is different
170 * @param localName The local name of the attribute to retrieve.
180 String localName)
246 * @param localName The local name of the attribute to remove.
255 String localName)
265 * @param localName The local name of the attribute to retrieve.
276 String localName)
314 * @param localName The local name of the elements to match on. The
325 String localName)
349 * @param localName The local name of the attribute to look for
    [all...]
  /external/guice/lib/build/
safesax.jar 
  /libcore/luni/src/main/java/org/apache/harmony/xml/dom/
ElementImpl.java 45 String localName;
70 private int indexOfAttributeNS(String namespaceURI, String localName) {
74 && Objects.equals(localName, attr.getLocalName())) {
92 public String getAttributeNS(String namespaceURI, String localName) {
93 Attr attr = getAttributeNodeNS(namespaceURI, localName);
112 public AttrImpl getAttributeNodeNS(String namespaceURI, String localName) {
113 int i = indexOfAttributeNS(namespaceURI, localName);
167 public NodeList getElementsByTagNameNS(String namespaceURI, String localName) {
169 getElementsByTagNameNS(result, namespaceURI, localName);
175 return namespaceAware ? localName : null
    [all...]
  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
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);
localName02.java 70 String localName;
73 localName = createdNode.getLocalName();
74 assertNull("localNameNull", localName);
localName03.java 72 String localName;
77 localName = textNode.getLocalName();
78 assertNull("textNodeLocalName", localName);

Completed in 1139 milliseconds

1 2 3 4 5 6 7 8 91011>>