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

1 2 3 4

  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/
OutlineLabelProvider.java 67 String id = getAttributeNS(e, ANDROID_URI, ATTR_ID);
69 id = getAttributeNS(e, ANDROID_URI, ATTR_NAME);
73 id = getAttributeNS(e, ANDROID_URI, ATTR_TEXT);
78 id = getAttributeNS(e, ANDROID_URI, ATTR_SRC);
103 * Wrapper around {@link Element#getAttributeNS(String, String)}.
108 * @see Element#getAttributeNS(String, String)
110 private String getAttributeNS(Element e, String uri, String name) throws DOMException {
112 return e.getAttributeNS(uri, name);
  /libcore/luni/src/test/java/tests/org/w3c/dom/
GetAttributeNS.java 32 * The "getAttributeNS(namespaceURI,localName)" method retrieves an attribute
36 * "getAttributeNS()" method should be the value "DISTRICT" since the attribute
46 public final class GetAttributeNS extends DOMTestCase {
87 // attrValue = testAddr.getAttributeNS(namespaceURI, localName);
108 attrValue = testAddr.getAttributeNS(namespaceURI, localName);
123 attrValue = testAddr.getAttributeNS(namespaceURI, localName);
142 attrValue = testAddr.getAttributeNS(namespaceURI, localName);
154 attrValue = testAddr.getAttributeNS("http://www.nist.gov", "domestic");
SetAttributeNS.java 178 resultAttr = ((Element) /* Node */testAddr).getAttributeNS(
204 resultAttr = ((Element) /* Node */testAddr).getAttributeNS(
270 resultAttr = ((Element) /* Node */testAddr).getAttributeNS(
  /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/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/
ManifestInfo.java 125 String name = activity.getAttributeNS(NS_RESOURCES, ATTRIBUTE_NAME);
136 String value = activity.getAttributeNS(NS_RESOURCES, ATTRIBUTE_ICON);
144 value = activity.getAttributeNS(NS_RESOURCES, ATTRIBUTE_LABEL);
152 value = activity.getAttributeNS(NS_RESOURCES, ATTRIBUTE_PARENT_ACTIVITY_NAME);
158 String metadataName = data.getAttributeNS(NS_RESOURCES, ATTRIBUTE_NAME);
160 value = data.getAttributeNS(NS_RESOURCES, ATTRIBUTE_VALUE);
178 value = activity.getAttributeNS(NS_RESOURCES, ATTRIBUTE_THEME);
186 value = activity.getAttributeNS(NS_RESOURCES, ATTRIBUTE_UI_OPTIONS);
360 mApplicationIcon = application.getAttributeNS(NS_RESOURCES, ATTRIBUTE_ICON);
363 mApplicationLabel = application.getAttributeNS(NS_RESOURCES, ATTRIBUTE_LABEL)
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/model/
UiManifestElementNode.java 114 * Note: This is a wrapper around {@link Element#getAttributeNS(String, String)}.
115 * In some versions of webtools, the getAttributeNS implementation crashes with an NPE.
118 * @see Element#getAttributeNS(String, String)
120 * @return The result from {@link Element#getAttributeNS(String, String)} or or an empty string.
126 return element.getAttributeNS(namespaceURI, localName);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
LinearLayoutWeightFix.java 57 if (VALUE_VERTICAL.equals(parent.getAttributeNS(ANDROID_URI,
SetAttributeFix.java 137 return element.getAttributeNS(ANDROID_URI, ATTR_INPUT_TYPE);
  /libcore/luni/src/test/java/libcore/xml/
SimpleBuilderTest.java 88 assertEquals("vier", four.getAttributeNS("http://www.foo.bar", "four"));
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/
ActionBarHandler.java 89 String value = element.getAttributeNS(TOOLS_URI, name);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
OutlinePage.java 825 String rowCount = e.getAttributeNS(namespace, ATTR_ROW_COUNT);
829 String columnCount = e.getAttributeNS(namespace, ATTR_COLUMN_COUNT);
842 String row = e.getAttributeNS(namespace, ATTR_LAYOUT_ROW);
847 String column = e.getAttributeNS(namespace, ATTR_LAYOUT_COLUMN);
851 String colCount = ((Element) e.getParentNode()).getAttributeNS(
859 String rowSpan = e.getAttributeNS(namespace, ATTR_LAYOUT_ROW_SPAN);
860 String columnSpan = e.getAttributeNS(namespace,
    [all...]
LayoutMetadata.java 152 String value = element.getAttributeNS(TOOLS_URI, name);
341 String columns = element.getAttributeNS(ANDROID_URI, ATTR_NUM_COLUMNS);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/
GravityHelper.java 85 String gravityString = element.getAttributeNS(ANDROID_URI, ATTR_LAYOUT_GRAVITY);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
UseCompoundDrawableRefactoring.java 238 boolean isVertical = VALUE_VERTICAL.equals(layout.getAttributeNS(ANDROID_URI,
278 String gravity = layout.getAttributeNS(ANDROID_URI, ATTR_GRAVITY);
283 String src = image.getAttributeNS(ANDROID_URI, ATTR_SRC);
378 String padding = element.getAttributeNS(ANDROID_URI, attribute);

Completed in 297 milliseconds

1 2 3 4