/sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/mock/ |
D | MockNamedNodeMap.java | 35 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()
|
D | MockXmlNode.java | 56 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/ |
D | ContextPullParser.java | 106 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()
|
D | UiElementPullParser.java | 349 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()
|
D | BasePullParser.java | 239 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/ |
D | ClientAPIExts.h | 21 namespace ClientAPIExts
|
D | EglOsApi.h | 34 namespace EglOS{
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactoring/core/ |
D | RefactoringUtil.java | 92 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/ |
D | WrapInRefactoring.java | 234 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()
|
D | ChangeLayoutRefactoring.java | 305 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()
|
D | ExtractStyleRefactoring.java | 276 String namespace = attribute.getNamespaceURI(); in getAvailableAttributes() local 277 if (namespace != null && !ANDROID_URI.equals(namespace)) { in getAvailableAttributes()
|
/sdk/emulator/opengl/shared/OpenglOsUtils/ |
D | osThread.h | 25 namespace osUtils {
|
D | osProcess.h | 23 namespace osUtils {
|
D | osDynLibrary.h | 23 namespace osUtils {
|
/sdk/eclipse/features/com.android.ide.eclipse.adt.package/ |
D | p2.inf | 4 requires.1.namespace=org.eclipse.equinox.p2.iu
|
/sdk/ddms/libs/ddmlib/src/com/android/ddmlib/ |
D | IDevice.java | 374 DeviceUnixSocketNamespace namespace) in createForward() argument 402 DeviceUnixSocketNamespace namespace) in removeForward() argument
|
D | Device.java | 488 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/ |
D | OutlinePage.java | 806 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 …]
|
D | RenderService.java | 434 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/ |
D | AndroidXPathFactory.java | 26 import javax.xml.namespace.NamespaceContext;
|
/sdk/emulator/opengl/shared/OpenglCodecCommon/ |
D | glUtils.h | 64 namespace GLUtils {
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/ |
D | GridLayoutRule.java | 159 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/ |
D | IClientRulesEngine.java | 278 @Nullable String namespace, in getAttribute() argument
|
/sdk/ |
D | changes.txt | 36 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/ |
D | dictionary.txt | 187 namespace
|