/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/ |
D | ManifestContentAssist.java | 52 String parentTagName, String attributeName, Node node, String wordPrefix, in computeAttributeValues() argument 54 if (attributeName.endsWith(ATTRIBUTE_MIN_SDK_VERSION) in computeAttributeValues() 55 || attributeName.endsWith(ATTRIBUTE_TARGET_SDK_VERSION)) { in computeAttributeValues() 90 return super.computeAttributeValues(proposals, offset, parentTagName, attributeName, in computeAttributeValues()
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/animator/ |
D | AnimationContentAssist.java | 74 String parentTagName, String attributeName, Node node, String wordPrefix, in computeAttributeValues() argument 79 if (attributeName.endsWith(INTERPOLATOR_PROPERTY_NAME)) { in computeAttributeValues() 98 return super.computeAttributeValues(proposals, offset, parentTagName, attributeName, in computeAttributeValues() 101 && attributeName.endsWith(PROPERTY_NAME)) { in computeAttributeValues() 164 return super.computeAttributeValues(proposals, offset, parentTagName, attributeName, in computeAttributeValues()
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/ |
D | LayoutContentAssist.java | 156 String parentTagName, String attributeName, Node node, String wordPrefix, in computeAttributeValues() argument 158 super.computeAttributeValues(proposals, offset, parentTagName, attributeName, node, in computeAttributeValues() 163 if (VIEW_FRAGMENT.equals(parentTagName) && (attributeName.endsWith(ATTR_NAME) in computeAttributeValues() 164 || attributeName.equals(ATTR_CLASS))) { in computeAttributeValues() 167 } else if (VIEW_TAG.equals(parentTagName) && attributeName.endsWith(ATTR_CLASS)) { in computeAttributeValues() 171 } else if (attributeName.endsWith(ATTR_CONTEXT)) { in computeAttributeValues()
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/ |
D | SetScrollViewSizeFix.java | 57 String attributeName = isHorizontal ? ATTR_LAYOUT_WIDTH : ATTR_LAYOUT_HEIGHT; in apply() local 58 element.setAttributeNS(ANDROID_URI, attributeName, VALUE_WRAP_CONTENT); in apply()
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/sdk/ |
D | AndroidTargetData.java | 268 public String[] getAttributeValues(String elementName, String attributeName) { in getAttributeValues() argument 269 String key = String.format("(%1$s,%2$s)", elementName, attributeName); //$NON-NLS-1$ in getAttributeValues() 287 public String[] getAttributeValues(String elementName, String attributeName, in getAttributeValues() argument 291 greatGrandParentElementName, elementName, attributeName); in getAttributeValues() 298 return getAttributeValues(elementName, attributeName); in getAttributeValues()
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/ |
D | VisualRefactoring.java | 375 String attributeName = ""; //$NON-NLS-1$ in replaceIds() local 380 attributeName = region.getText(subRegion); in replaceIds() 383 if (!attributeName.startsWith(namePrefix)) { in replaceIds() 965 String attributePrefix, String attributeName, String attributeValue) { in setAttribute() argument 968 if (element.hasAttributeNS(attributeUri, attributeName)) { in setAttribute() 970 attributeUri, attributeName, attributeValue); in setAttribute() 972 addAttributeDeclaration(rootEdit, offset, attributePrefix, attributeName, in setAttribute() 979 String attributePrefix, String attributeName, String attributeValue) { in addAttributeDeclaration() argument 986 sb.append(attributeName).append('=').append('"'); in addAttributeDeclaration() 996 String attributeName, String attributeValue) { in replaceAttributeDeclaration() argument [all …]
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/values/ |
D | ValuesContentAssist.java | 74 String parentTagName, String attributeName, Node node, String wordPrefix, in computeAttributeValues() argument 76 super.computeAttributeValues(proposals, offset, parentTagName, attributeName, node, in computeAttributeValues() 79 if (parentTagName.equals(TAG_ITEM) && ATTR_NAME.equals(attributeName)) { in computeAttributeValues()
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/junit/ |
D | AndroidJUnitLaunchConfigDelegate.java | 261 private String getStringLaunchAttribute(String attributeName, in getStringLaunchAttribute() argument 264 String attrValue = configuration.getAttribute(attributeName, EMPTY_STRING); in getStringLaunchAttribute() 271 attributeName)); in getStringLaunchAttribute()
|
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/common/layout/ |
D | BaseLayoutRuleTest.java | 191 public String replace(String attributeUri, String attributeName, in testAddAttributes2() 193 if (attributeName.equals("hidden")) { in testAddAttributes2()
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/descriptors/ |
D | ElementDescriptor.java | 456 public boolean definesAttribute(String namespaceUri, String attributeName) { in definesAttribute() argument 458 if (desc.getXmlLocalName().equals(attributeName) && in definesAttribute()
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/ |
D | BaseLayoutRule.java | 156 String attributeName) { in createGravityAction() argument 163 IAttributeInfo info = first.getAttributeInfo(ANDROID_URI, attributeName); in createGravityAction() 177 attributeName), in createGravityAction() 179 first.getStringAttr(ANDROID_URI, attributeName), ICON_GRAVITY, in createGravityAction() 462 String replace(String attributeUri, String attributeName, String attributeValue); in replace() argument
|
/sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/state/ |
D | GLState.java | 330 IGLProperty attributeName = new GLStringProperty(GLStateType.ATTRIBUTE_NAME, ""); in createProgramState() local 338 attributeName, attributeType, attributeSize, attributeValue); in createProgramState()
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ |
D | Hyperlinks.java | 371 String attributeName = attribute.getLocalName(); in isClassAttribute() local 372 return ATTR_CLASS.equals(attributeName) && (VIEW.equals(tag) || VIEW_FRAGMENT.equals(tag)) in isClassAttribute() 373 || ATTR_NAME.equals(attributeName) && VIEW_FRAGMENT.equals(tag) in isClassAttribute() 374 || (ATTR_CONTEXT.equals(attributeName) in isClassAttribute()
|
D | AndroidContentAssist.java | 487 String parentTagName, String attributeName, Node node, String wordPrefix, in computeAttributeValues() argument
|