Home
last modified time | relevance | path

Searched refs:namespace (Results 1 – 25 of 32) sorted by relevance

12

/sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/mock/
DMockNamedNodeMap.java35 public MockXmlNode addAttribute(String namespace, String localName, String value) { in addAttribute() argument
36 MockXmlNode node = new MockXmlNode(namespace, localName, value); in addAttribute()
38 if (namespace == null) { in addAttribute()
39 namespace = ""; // no namespace in addAttribute()
43 HashMap<String, Node> map = mNodeMap.get(namespace); in addAttribute()
46 mNodeMap.put(namespace, map); in addAttribute()
DMockXmlNode.java56 public MockXmlNode(String namespace, String localName, short node_type, in MockXmlNode() argument
59 mNamespace = namespace; in MockXmlNode()
72 public MockXmlNode(String namespace, String localName, String value) { in MockXmlNode() argument
74 mNamespace = namespace; in MockXmlNode()
103 public void setPrefix(String namespace, String prefix) { in setPrefix() argument
108 mNsMap.put(namespace, prefix); in setPrefix()
111 public String getPrefix(String namespace) { in getPrefix() argument
113 return mNsMap.get(namespace); in getPrefix()
116 return mParent.getPrefix(namespace); in getPrefix()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/
DContextPullParser.java106 public String getAttributeValue(String namespace, String localName) { in getAttributeValue() argument
111 String value = super.getAttributeValue(namespace, localName); in getAttributeValue()
118 SdkConstants.NS_RESOURCES.equals(namespace)) { in getAttributeValue()
DUiElementPullParser.java349 public String getAttributeValue(String namespace, String localName) { in getAttributeValue() argument
351 ANDROID_URI.equals(namespace)) { in getAttributeValue()
359 ANDROID_URI.equals(namespace)) { in getAttributeValue()
377 Node attribute = xmlNode.getAttributes().getNamedItemNS(namespace, localName); in getAttributeValue()
383 if (attribute == null && namespace != null && !namespace.equals(ANDROID_URI)) { in getAttributeValue()
390 ANDROID_URI.equals(namespace)) { in getAttributeValue()
400 ANDROID_URI.equals(namespace)) { in getAttributeValue()
DBasePullParser.java239 public void require(int type, String namespace, String name) throws XmlPullParserException { in require() argument
240 if (type != getEventType() || (namespace != null && !namespace.equals(getNamespace())) in require()
/sdk/emulator/opengl/host/libs/Translator/EGL/
DClientAPIExts.h21 namespace ClientAPIExts
DEglOsApi.h34 namespace EglOS{
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactoring/core/
DRefactoringUtil.java92 String namespace = attr.getNamespaceURI(); in findAndroidAttributes() local
93 if (SdkConstants.NS_RESOURCES.equals(namespace) in findAndroidAttributes()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
DWrapInRefactoring.java234 StringBuilder namespace = null; in computeChanges() local
238 namespace = new StringBuilder(); in computeChanges()
255 namespace.append('\n').append(startIndent).append(indentUnit); in computeChanges()
257 namespace.append(' '); in computeChanges()
259 namespace.append(text); in computeChanges()
269 if (namespace != null) { in computeChanges()
270 sb.append(namespace); in computeChanges()
DChangeLayoutRefactoring.java305 String namespace = getAndroidNamespacePrefix(); in computeChanges() local
313 prefix = namespace; in computeChanges()
337 String namespace = getAndroidNamespacePrefix(); in addMissingWrapContentAttributes() local
346 namespace, ATTR_LAYOUT_WIDTH, VALUE_WRAP_CONTENT); in addMissingWrapContentAttributes()
350 namespace, ATTR_LAYOUT_HEIGHT, VALUE_WRAP_CONTENT); in addMissingWrapContentAttributes()
DExtractStyleRefactoring.java276 String namespace = attribute.getNamespaceURI(); in getAvailableAttributes() local
277 if (namespace != null && !ANDROID_URI.equals(namespace)) { in getAvailableAttributes()
/sdk/emulator/opengl/shared/OpenglOsUtils/
DosThread.h25 namespace osUtils {
DosProcess.h23 namespace osUtils {
DosDynLibrary.h23 namespace osUtils {
/sdk/eclipse/features/com.android.ide.eclipse.adt.package/
Dp2.inf4 requires.1.namespace=org.eclipse.equinox.p2.iu
/sdk/ddms/libs/ddmlib/src/com/android/ddmlib/
DIDevice.java374 DeviceUnixSocketNamespace namespace) in createForward() argument
402 DeviceUnixSocketNamespace namespace) in removeForward() argument
DDevice.java488 DeviceUnixSocketNamespace namespace) throws TimeoutException, in createForward() argument
492 String.format("%s:%s", namespace.getType(), remoteSocketName)); //$NON-NLS-1$ in createForward()
505 DeviceUnixSocketNamespace namespace) throws TimeoutException, in removeForward() argument
509 String.format("%s:%s", namespace.getType(), remoteSocketName)); //$NON-NLS-1$ in removeForward()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
DOutlinePage.java806 String namespace; in update() local
810 namespace = ANDROID_URI; in update()
816 namespace = AUTO_URI; in update()
819 namespace = URI_PREFIX + info.getPackage(); in update()
825 String rowCount = e.getAttributeNS(namespace, ATTR_ROW_COUNT); in update()
829 String columnCount = e.getAttributeNS(namespace, ATTR_COLUMN_COUNT); in update()
842 String row = e.getAttributeNS(namespace, ATTR_LAYOUT_ROW); in update()
847 String column = e.getAttributeNS(namespace, ATTR_LAYOUT_COLUMN); in update()
852 namespace, ATTR_COLUMN_COUNT); in update()
859 String rowSpan = e.getAttributeNS(namespace, ATTR_LAYOUT_ROW_SPAN); in update()
[all …]
DRenderService.java434 public String getAttributeValue(String namespace, String localName) { in measureChildren()
440 String value = filter.getAttribute(node, namespace, localName); in measureChildren()
449 return super.getAttributeValue(namespace, localName); in measureChildren()
/sdk/common/src/com/android/xml/
DAndroidXPathFactory.java26 import javax.xml.namespace.NamespaceContext;
/sdk/emulator/opengl/shared/OpenglCodecCommon/
DglUtils.h64 namespace GLUtils {
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/
DGridLayoutRule.java159 String namespace = getNamespace(parentNode); in addLayoutActions() local
164 "Change LinearLayout Orientation", namespace, ATTR_ORIENTATION), Arrays in addLayoutActions()
367 String namespace = ANDROID_URI; in getNamespace() local
370 namespace = mRulesEngine.getAppNameSpace(); in getNamespace()
373 return namespace; in getNamespace()
/sdk/rule_api/src/com/android/ide/common/api/
DIClientRulesEngine.java278 @Nullable String namespace, in getAttribute() argument
/sdk/
Dchanges.txt36 namespace and ignore-attribute.
46 * Find typos in XML namespace declarations, as well as unused custom
47 namespace declarations and usages of custom namespaces in library
/sdk/eclipse/
Ddictionary.txt187 namespace

12