/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/chromium_org/third_party/WebKit/Source/core/dom/ |
Element.idl | 50 boolean hasAttributeNS([TreatNullAs=NullString] DOMString namespaceURI, DOMString localName);
|
/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)) {
|
ChangeLayoutRefactoring.java | 344 if (!child.hasAttributeNS(ANDROID_URI, ATTR_LAYOUT_WIDTH)) { 348 if (!child.hasAttributeNS(ANDROID_URI, ATTR_LAYOUT_HEIGHT)) {
|
ExtractIncludeRefactoring.java | 572 if (!primaryNode.hasAttributeNS(ANDROID_URI, ATTR_LAYOUT_WIDTH)) { 577 if (!primaryNode.hasAttributeNS(ANDROID_URI, ATTR_LAYOUT_HEIGHT)) {
|
VisualRefactoring.java | [all...] |
/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)) {
|
AndroidPackageRenameParticipant.java | 458 } else if (element.hasAttributeNS(TOOLS_URI, ATTR_CONTEXT)) {
|
/external/apache-xml/src/main/java/org/apache/xml/utils/ |
UnImplNode.java | 340 public boolean hasAttributeNS(String name, String x) 343 error(XMLErrorResources.ER_FUNCTION_NOT_SUPPORTED); //"hasAttributeNS not supported!"); [all...] |