Searched refs:localName (Results 1 - 15 of 15) sorted by relevance

/sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/mock/
H A DMockNamedNodeMap.java35 public MockXmlNode addAttribute(String namespace, String localName, String value) { argument
36 MockXmlNode node = new MockXmlNode(namespace, localName, value);
50 map.put(localName, node);
74 public Node getNamedItemNS(String namespaceURI, String localName) throws DOMException { argument
81 return map.get(localName);
98 public Node removeNamedItemNS(String namespaceURI, String localName) throws DOMException { argument
H A DMockXmlNode.java52 * @param localName The XML local node name.
56 public MockXmlNode(String namespace, String localName, short node_type, argument
58 mLocalName = localName;
69 * @param localName The XML local node name.
72 public MockXmlNode(String namespace, String localName, String value) { argument
73 mLocalName = localName;
94 public void addAttributes(String namespaceURI, String localName, String value) { argument
99 MockXmlNode node = mAttributes.addAttribute(namespaceURI, localName, value);
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/
H A DContextPullParser.java145 public String getAttributeValue(String namespace, String localName) { argument
146 if (ATTR_LAYOUT.equals(localName) && mFragmentLayout != null) {
150 String value = super.getAttributeValue(namespace, localName);
155 (ATTR_LAYOUT_WIDTH.equals(localName) ||
156 ATTR_LAYOUT_HEIGHT.equals(localName)) &&
H A DUiElementPullParser.java346 public String getAttributeValue(String namespace, String localName) { argument
347 if (mExplodeNodes != null && ATTR_PADDING.equals(localName) &&
355 if (mZeroAttributeIsPadding && ATTR_PADDING.equals(localName) &&
367 if (ATTR_LAYOUT.equals(localName) && VIEW_FRAGMENT.equals(xmlNode.getNodeName())) {
374 Node attribute = xmlNode.getAttributes().getNamedItemNS(namespace, localName);
381 attribute = xmlNode.getAttributes().getNamedItemNS(AUTO_URI, localName);
386 if (mIncreaseExistingPadding && ATTR_PADDING.equals(localName) &&
395 (ATTR_LAYOUT_WIDTH.equals(localName) ||
396 ATTR_LAYOUT_HEIGHT.equals(localName)) &&
H A DExplodedRenderingHelper.java116 String localName = view.getLocalName();
143 if ("LinearLayout".equals(localName)) { //$NON-NLS-1$
150 } else if ("TableLayout".equals(localName)) { //$NON-NLS-1$
152 } else if ("TableRow".equals(localName)) { //$NON-NLS-1$
155 // } else if ("RelativeLayout".equals(localName)) { //$NON-NLS-1$
169 if (mLayoutNames.contains(localName)) {
/sdk/emulator/opengl/host/libs/Translator/GLcommon/
H A DobjectNameManager.cpp41 ObjectLocalName localName = p_localName; local
44 localName = ++m_nextName;
45 } while( localName == 0 || m_localToGlobalMap.find(localName) != m_localToGlobalMap.end() );
50 m_localToGlobalMap[localName] = globalName;
53 return localName;
194 ObjectLocalName localName = m_nameSpace[p_type]->genName(p_localName,true,genLocal); local
197 return localName;
230 ObjectLocalName localName = m_nameSpace[p_type]->getLocalName(p_globalName); local
233 return localName;
[all...]
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/model/
H A DUiManifestElementNode.java124 String localName) {
126 return element.getAttributeNS(namespaceURI, localName);
122 _Element_getAttributeNS(Element element, String namespaceURI, String localName) argument
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/common/layout/
H A DTestDragElement.java106 public IDragAttribute getAttribute(@Nullable String uri, @NonNull String localName) { argument
108 return new TestAttribute(uri, localName, "");
111 return mAttributes.get(uri + localName);
H A DTestNode.java210 public boolean setAttribute(@Nullable String uri, @NonNull String localName, argument
212 mAttributes.put(uri + localName, new TestAttribute(uri, localName, value));
352 public boolean setAttribute(String uri, String localName, String value) { argument
354 mElement.removeAttributeNS(uri, localName);
356 mElement.setAttributeNS(uri, localName, value);
358 return super.setAttribute(uri, localName, value);
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
H A DSimpleElement.java118 public IDragAttribute getAttribute(@Nullable String uri, @NonNull String localName) { argument
120 if (attr.getUri().equals(uri) && attr.getName().equals(localName)) {
H A DRenderService.java501 public String getAttributeValue(String namespace, String localName) {
507 String value = filter.getAttribute(node, namespace, localName);
516 return super.getAttributeValue(namespace, localName);
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/
H A DBaseLayoutRule.java632 @NonNull String localName) {
634 if (ATTR_LAYOUT_WIDTH.equals(localName)
638 if (ATTR_LAYOUT_HEIGHT.equals(localName)
H A DLinearLayoutRule.java792 @NonNull String localName) {
795 if (ATTR_LAYOUT_WEIGHT.equals(localName)
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/uimodel/
H A DUiElementNode.java347 String localName) {
349 return element.getAttributeNS(namespaceURI, localName);
1453 // Ignore attributes which are hidden (based on the prefix:localName key)
345 _Element_getAttributeNS(Element element, String namespaceURI, String localName) argument
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/templates/
H A DTemplateHandler.java432 public void startElement(String uri, String localName, String name,
557 public void startElement(String uri, String localName, String name,

Completed in 610 milliseconds