/libcore/dom/src/test/java/org/w3c/domts/level1/core/ |
hc_elementcreatenewattribute.java | 78 districtAttr = testAddress.getAttributeNode("lang");
|
/libcore/dom/src/test/java/org/w3c/domts/level2/core/ |
documentimportnode01.java | 87 attr = element.getAttributeNode("street");
|
documentimportnode03.java | 89 attr = element.getAttributeNode("defaultAttr");
|
documentimportnode04.java | 95 attr = element.getAttributeNode("defaultAttr");
|
localName01.java | 83 addrAttr = testAddr.getAttributeNode("emp:domestic");
|
prefix09.java | 83 addrAttr = addrNode.getAttributeNode("xmlns");
|
/libcore/luni/src/main/java/org/w3c/dom/ |
Element.java | 109 public Attr getAttributeNode(String name);
|
/libcore/luni/src/main/java/org/apache/harmony/xml/dom/ |
ElementImpl.java | 83 Attr attr = getAttributeNode(name); 102 public AttrImpl getAttributeNode(String name) { 247 Attr attr = getAttributeNode(name); 339 return ElementImpl.this.getAttributeNode(name); 394 AttrImpl attr = getAttributeNode(name);
|
/external/chromium/testing/gtest/test/ |
gtest_xml_test_utils.py | 164 time = element.getAttributeNode("time") 166 type_param = element.getAttributeNode("type_param")
|
/external/gtest/test/ |
gtest_xml_test_utils.py | 164 time = element.getAttributeNode("time") 166 type_param = element.getAttributeNode("type_param")
|
/external/chromium_org/third_party/WebKit/Source/core/dom/ |
NamedNodeMap.cpp | 50 return m_element->getAttributeNode(name);
|
/libcore/luni/src/test/java/tests/org/w3c/dom/ |
LocalName.java | 65 addrAttr = testAddr.getAttributeNode("emp:domestic");
|
Prefix.java | 131 addrAttr = addrNode.getAttributeNode("emp:domestic"); 221 addrAttr = addrNode.getAttributeNode("xmlns");
|
NodeSetPrefix.java | 236 attribute = element.getAttributeNode("xmlns");
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_minidom.py | 225 a = el.getAttributeNode("spam") 299 node = child.getAttributeNode("spam") 302 and child.getAttributeNode("spam") is None) 318 and el.getAttributeNode("spam").isId) 531 a1 = e.getAttributeNode("a") 744 attr = doc.documentElement.getAttributeNode("attr") [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_minidom.py | 225 a = el.getAttributeNode("spam") 299 node = child.getAttributeNode("spam") 302 and child.getAttributeNode("spam") is None) 318 and el.getAttributeNode("spam").isId) 531 a1 = e.getAttributeNode("a") 744 attr = doc.documentElement.getAttributeNode("attr") [all...] |
/external/apache-xml/src/main/java/org/apache/xml/dtm/ |
DTM.java | 272 public int getAttributeNode(int elementHandle, String namespaceURI, [all...] |
/external/protobuf/gtest/test/ |
gtest_xml_test_utils.py | 160 time = element.getAttributeNode("time")
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/ |
SetPropertyFix.java | 91 attr = element.getAttributeNode(localAttribute);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/core/ |
AndroidPackageRenameParticipant.java | 124 Attr attribute = document.getDocumentElement().getAttributeNode(ATTR_PACKAGE); 452 classNode = element.getAttributeNode(ATTR_CLASS); 454 classNode = element.getAttributeNode(ATTR_CLASS); 492 Attr pkg = element.getAttributeNode(ATTR_PACKAGE);
|
AndroidTypeRenameParticipant.java | 426 Attr classNode = element.getAttributeNode(ATTR_CLASS); 435 Attr classNode = element.getAttributeNode(ATTR_CLASS); 482 Attr nameNode = element.getAttributeNode(ATTR_NAME);
|
AndroidTypeMoveParticipant.java | 284 Attr classNode = element.getAttributeNode(ATTR_CLASS); 293 Attr classNode = element.getAttributeNode(ATTR_CLASS);
|
/libcore/luni/src/test/java/libcore/xml/ |
DomTest.java | 147 itemXmlns = item.getAttributeNode("xmlns"); 148 itemXmlnsA = item.getAttributeNode("xmlns:a"); 150 standard = name.getAttributeNode("a:standard"); 151 deluxe = name.getAttributeNode("deluxe"); 163 vitaminsXmlnsA = vitamins.getAttributeNode("xmlns:a"); [all...] |
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/ |
DTMNodeProxy.java | 453 return DTM.NULL != dtm.getAttributeNode(node,null,name); 467 return DTM.NULL != dtm.getAttributeNode(node,namespaceURI,localName); 1133 public final Attr getAttributeNode(String name) 1195 int n = dtm.getAttributeNode(node,namespaceURI,localName); 1242 int n = dtm.getAttributeNode(node,namespaceURI,localName); [all...] |
/external/apache-xml/src/main/java/org/apache/xml/utils/ |
DOMHelper.java | 555 Attr attr=((Element)parent).getAttributeNode(declname); [all...] |