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

1 2

  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
getAttributeNS03.java 34 * The "getAttributeNS(namespaceURI,localName)" method retrieves an
38 * The value returned by the "getAttributeNS()" method for the emp:domestic attribute
78 attrValue = testAddr.getAttributeNS(namespaceURI, localName);
documentimportnode14.java 93 attrValue = ((Element) /*Node */imported).getAttributeNS("http://www.w3.org/2000/xmlns/", "emp");
elementgetattributens02.java 34 * The method getAttributeNS retrieves an attribute value by local name and namespace URI.
81 attrValue = element.getAttributeNS(nullNS, "defaultAttr");
getAttributeNS01.java 34 * The "getAttributeNS(namespaceURI,localName)" method retrieves an
38 * The value returned by the "getAttributeNS()" method should be the
84 attrValue = testAddr.getAttributeNS(namespaceURI, localName);
getAttributeNS02.java 34 * The "getAttributeNS(namespaceURI,localName)" method retrieves an
40 * The value returned by the "getAttributeNS()" method should be the
85 attrValue = testAddr.getAttributeNS(namespaceURI, localName);
getAttributeNS04.java 34 * The "getAttributeNS(namespaceURI,localName)" method retrieves an
40 * The value returned by the "getAttributeNS()" method should be
83 attrValue = testAddr.getAttributeNS(namespaceURI, localName);
getAttributeNS05.java 34 * The "getAttributeNS(namespaceURI,localName)" method retrieves an
81 attrValue = testAddr.getAttributeNS("http://www.nist.gov", "domestic");
removeAttributeNS02.java 94 attr = ((Element) /*Node */testAddr).getAttributeNS("http://www.nist.gov", "local1");
setAttributeNS04.java 92 resultAttr = ((Element) /*Node */testAddr).getAttributeNS("http://www.nist.gov", "zone");
setAttributeNS05.java 84 resultAttr = ((Element) /*Node */testAddr).getAttributeNS(namespaceURI, localName);
setAttributeNS09.java 87 resultAttr = ((Element) /*Node */testAddr).getAttributeNS(namespaceURI, localName);
  /libcore/luni/src/test/java/tests/org/w3c/dom/
GetAttributeNS.java 37 * The "getAttributeNS(namespaceURI,localName)" method retrieves an attribute
41 * "getAttributeNS()" method should be the value "DISTRICT" since the attribute
52 public final class GetAttributeNS extends DOMTestCase {
93 // attrValue = testAddr.getAttributeNS(namespaceURI, localName);
99 method = "getAttributeNS",
120 attrValue = testAddr.getAttributeNS(namespaceURI, localName);
126 method = "getAttributeNS",
141 attrValue = testAddr.getAttributeNS(namespaceURI, localName);
147 method = "getAttributeNS",
166 attrValue = testAddr.getAttributeNS(namespaceURI, localName)
    [all...]
SetAttributeNS.java 202 resultAttr = ((Element) /* Node */testAddr).getAttributeNS(
234 resultAttr = ((Element) /* Node */testAddr).getAttributeNS(
318 resultAttr = ((Element) /* Node */testAddr).getAttributeNS(
  /libcore/luni/src/main/java/org/w3c/dom/
Element.java 179 public String getAttributeNS(String namespaceURI,
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/model/
UiManifestElementNode.java 108 * Note: This is a wrapper around {@link Element#getAttributeNS(String, String)}.
109 * In some versions of webtools, the getAttributeNS implementation crashes with an NPE.
112 * @see Element#getAttributeNS(String, String)
114 * @return The result from {@link Element#getAttributeNS(String, String)} or or an empty string.
120 return element.getAttributeNS(namespaceURI, localName);
  /packages/apps/Mms/src/com/android/mms/dom/
ElementImpl.java 53 public String getAttributeNS(String namespaceURI, String localName) {
  /libcore/luni/src/test/java/tests/xml/
SimpleBuilderTest.java 98 assertEquals("vier", four.getAttributeNS("http://www.foo.bar", "four"));
  /external/webkit/WebCore/dom/
Element.idl 48 [OldStyleObjC] DOMString getAttributeNS(in [ConvertNullToNullString] DOMString namespaceURI,
Element.h 113 const AtomicString& getAttributeNS(const String& namespaceURI, const String& localName) const;
  /cts/tools/utils/cts/
tools.py 194 return element.getAttributeNS('http://schemas.android.com/apk/res/android', attr_name)
  /external/webkit/WebKit/win/
DOMHTMLClasses.h 611 virtual HRESULT STDMETHODCALLTYPE getAttributeNS(
614 /* [retval][out] */ BSTR *result) { return DOMElement::getAttributeNS(namespaceURI, localName, result); }
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/xml/dom/
ElementImpl.java 107 public String getAttributeNS(String namespaceURI, String localName) {
NodeImpl.java 322 String uri = element.getAttributeNS(
  /libcore/luni/src/main/java/org/apache/xalan/templates/
ElemLiteralResult.java 221 public String getAttributeNS(String namespaceURI, String localName)
    [all...]
  /libcore/luni/src/main/java/org/apache/xml/utils/
UnImplNode.java 505 public String getAttributeNS(String namespaceURI, String localName)
508 error(XMLErrorResources.ER_FUNCTION_NOT_SUPPORTED); //"getAttributeNS not supported!");
    [all...]

Completed in 173 milliseconds

1 2