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

1 2 3

  /libcore/luni/src/test/java/tests/org/w3c/dom/
ElementHasAttributeNS.java 32 * The method hasAttributeNS returns true when an attribute with a given local
36 * Retreive the first employee element node. Invoke the hasAttributeNS method to
83 .hasAttributeNS("http://www.w3.org/2000/xmlns/", "xmlns");
96 state = element.hasAttributeNS("http://www.w3.org/DOM", "domestic");
112 state = element.hasAttributeNS(nullNS, "domestic");
HasAttributeNS.java 32 * The "hasAttributeNS()" method for an Element should return false if the
35 * Retrieve the first "address" element and the "hasAttributeNS()" method should
44 public final class HasAttributeNS extends DOMTestCase {
83 state = testNode.hasAttributeNS(namespaceURI, localName);
96 state = testNode.hasAttributeNS(namespaceURI, localName);
110 state = testNode.hasAttributeNS(namespaceURI, localName);
126 // state = testNode.hasAttributeNS(namespaceURI, localName);
139 state = testNode.hasAttributeNS(namespaceURI, localName);
ElementRemoveAttributeNS.java 13 * was remove by invoking the hasAttributeNS method on the element and check if
63 state = element.hasAttributeNS(
  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
hasAttributeNS01.java 35 * The "hasAttributeNS()" method for an Element should
38 * Retrieve the first "address" element and the "hasAttributeNS()" method
76 state = testNode.hasAttributeNS(namespaceURI, localName);
hasAttributeNS02.java 34 * The "hasAttributeNS()" method for an Element should
37 * Retrieve the first "address" element and the "hasAttributeNS()" method
75 state = testNode.hasAttributeNS(namespaceURI, localName);
hasAttributeNS03.java 34 * The "hasAttributeNS()" method for an Element should
38 * The boolean value returned by the "hasAttributeNS()" should be false
76 state = testNode.hasAttributeNS(namespaceURI, localName);
elementhasattributens01.java 34 * The method hasAttributeNS returns true when an attribute with a given local name
38 * Retreive the first employee element node. Invoke the hasAttributeNS method to check if it
80 state = element.hasAttributeNS("http://www.w3.org/2000/xmlns/", "xmlns");
elementhasattributens02.java 34 * The method hasAttributeNS returns true when an attribute with a given local
39 * node has an attribute by invoking the hasAttributeNS method with appropriate
83 state = element.hasAttributeNS("http://www.w3.org/DOM", "domestic");
elementhasattributens03.java 34 * The method hasAttributeNS returns true when an attribute with a given local name
40 * node has an attribute by invoking the hasAttributeNS method with appropriate
88 state = element.hasAttributeNS(nullNS, "domestic");
elementremoveattributens01.java 37 * Check if the attribute was remove by invoking the hasAttributeNS
82 state = element.hasAttributeNS("http://www.w3.org/DOM/Test/createAttributeNS", "attr");
hasAttributeNS04.java 34 * The "hasAttributeNS()" method for an Element should
38 * The boolean value returned by the "hasAttributeNS()" should be true
83 state = testNode.hasAttributeNS(namespaceURI, localName);
hasAttributeNS05.java 34 * The "hasAttributeNS()" method for an Element should
37 * Retrieve the first "address" element and the "hasAttributeNS()" method
81 state = testNode.hasAttributeNS(namespaceURI, localName);
  /libcore/luni/src/main/java/org/w3c/dom/
Element.java 359 public boolean hasAttributeNS(String namespaceURI,
  /packages/apps/Mms/src/com/android/mms/dom/
ElementImpl.java 84 public boolean hasAttributeNS(String namespaceURI, String localName) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/
ManifestInfo.java 240 if (application.hasAttributeNS(NS_RESOURCES, ATTRIBUTE_ICON)) {
243 if (application.hasAttributeNS(NS_RESOURCES, ATTRIBUTE_LABEL)) {
272 if (usesSdk.hasAttributeNS(NS_RESOURCES, attribute)) {
  /external/webkit/Source/WebKit/win/
DOMHTMLClasses.h 641 virtual HRESULT STDMETHODCALLTYPE hasAttributeNS(
644 /* [retval][out] */ BOOL *result) { return DOMElement::hasAttributeNS(namespaceURI, localName, result); }
    [all...]
  /external/webkit/Source/WebCore/dom/
Element.idl 64 [OldStyleObjC] boolean hasAttributeNS(in [ConvertNullToNullString] DOMString namespaceURI,
Element.h 130 bool hasAttributeNS(const String& namespaceURI, const String& localName) const;
  /external/webkit/Source/WebKit/qt/Api/
qwebelement.h 87 bool hasAttributeNS(const QString& namespaceUri, const QString& name) const;
qwebelement.cpp 425 if (m_element->hasAttributeNS(namespaceUri, name))
450 bool QWebElement::hasAttributeNS(const QString &namespaceUri, const QString &name) const
454 return m_element->hasAttributeNS(namespaceUri, name);
474 \sa attributeNS(), setAttributeNS(), hasAttributeNS()
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/xml/dom/
ElementImpl.java 207 public boolean hasAttributeNS(String namespaceURI, String localName) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/properties/
XmlProperty.java 174 return element.hasAttributeNS(uri, name);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
ChangeViewRefactoring.java 245 if (defined.contains(ATTR_TEXT) && !element.hasAttributeNS(ANDROID_URI, ATTR_TEXT)) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/core/
AndroidTypeMoveParticipant.java 304 } else if (element.hasAttributeNS(TOOLS_URI, ATTR_CONTEXT)) {
  /external/webkit/Source/WebKit/qt/tests/qwebelement/
tst_qwebelement.cpp 162 QVERIFY(!svg.hasAttributeNS("http://www.w3.org/2000/svg", "foobar"));
165 QVERIFY(svg.hasAttributeNS("http://www.w3.org/2000/svg", "foobar"));
    [all...]

Completed in 917 milliseconds

1 2 3