Searched defs:attributeName (Results 1 - 10 of 10) sorted by relevance

/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/
H A DManifestContentAssist.java52 String parentTagName, String attributeName, Node node, String wordPrefix,
54 if (attributeName.endsWith(ATTRIBUTE_MIN_SDK_VERSION)
55 || attributeName.endsWith(ATTRIBUTE_TARGET_SDK_VERSION)) {
90 return super.computeAttributeValues(proposals, offset, parentTagName, attributeName,
51 computeAttributeValues(List<ICompletionProposal> proposals, int offset, String parentTagName, String attributeName, Node node, String wordPrefix, boolean skipEndTag, int replaceLength) argument
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/animator/
H A DAnimationContentAssist.java74 String parentTagName, String attributeName, Node node, String wordPrefix,
79 if (attributeName.endsWith(INTERPOLATOR_PROPERTY_NAME)) {
98 return super.computeAttributeValues(proposals, offset, parentTagName, attributeName,
101 && attributeName.endsWith(PROPERTY_NAME)) {
164 return super.computeAttributeValues(proposals, offset, parentTagName, attributeName,
73 computeAttributeValues(List<ICompletionProposal> proposals, int offset, String parentTagName, String attributeName, Node node, String wordPrefix, boolean skipEndTag, int replaceLength) argument
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/
H A DLayoutContentAssist.java156 String parentTagName, String attributeName, Node node, String wordPrefix,
158 super.computeAttributeValues(proposals, offset, parentTagName, attributeName, node,
163 if (VIEW_FRAGMENT.equals(parentTagName) && (attributeName.endsWith(ATTR_NAME)
164 || attributeName.equals(ATTR_CLASS))) {
167 } else if (VIEW_TAG.equals(parentTagName) && attributeName.endsWith(ATTR_CLASS)) {
171 } else if (attributeName.endsWith(ATTR_CONTEXT)) {
155 computeAttributeValues(List<ICompletionProposal> proposals, int offset, String parentTagName, String attributeName, Node node, String wordPrefix, boolean skipEndTag, int replaceLength) argument
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/values/
H A DValuesContentAssist.java74 String parentTagName, String attributeName, Node node, String wordPrefix,
76 super.computeAttributeValues(proposals, offset, parentTagName, attributeName, node,
79 if (parentTagName.equals(TAG_ITEM) && ATTR_NAME.equals(attributeName)) {
73 computeAttributeValues(List<ICompletionProposal> proposals, int offset, String parentTagName, String attributeName, Node node, String wordPrefix, boolean skipEndTag, int replaceLength) argument
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/junit/
H A DAndroidJUnitLaunchConfigDelegate.java257 * @param attributeName name of the launch attribute
261 private String getStringLaunchAttribute(String attributeName, argument
264 String attrValue = configuration.getAttribute(attributeName, EMPTY_STRING);
271 attributeName));
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/descriptors/
H A DElementDescriptor.java453 * @param attributeName the attribute name
456 public boolean definesAttribute(String namespaceUri, String attributeName) { argument
458 if (desc.getXmlLocalName().equals(attributeName) &&
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/
H A DBaseLayoutRule.java156 String attributeName) {
163 IAttributeInfo info = first.getAttributeInfo(ANDROID_URI, attributeName);
177 attributeName),
179 first.getStringAttr(ANDROID_URI, attributeName), ICON_GRAVITY,
462 String replace(String attributeUri, String attributeName, String attributeValue); argument
155 createGravityAction(final List<? extends INode> targets, final String attributeName) argument
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/
H A DAndroidContentAssist.java487 String parentTagName, String attributeName, Node node, String wordPrefix,
486 computeAttributeValues(List<ICompletionProposal> proposals, int offset, String parentTagName, String attributeName, Node node, String wordPrefix, boolean skipEndTag, int replaceLength) argument
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/sdk/
H A DAndroidTargetData.java264 * @param attributeName the name of the attribute
268 public String[] getAttributeValues(String elementName, String attributeName) { argument
269 String key = String.format("(%1$s,%2$s)", elementName, attributeName); //$NON-NLS-1$
282 * @param attributeName the name of the attribute
287 public String[] getAttributeValues(String elementName, String attributeName, argument
291 greatGrandParentElementName, elementName, attributeName);
298 return getAttributeValues(elementName, attributeName);
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
H A DVisualRefactoring.java375 String attributeName = ""; //$NON-NLS-1$
380 attributeName = region.getText(subRegion);
383 if (!attributeName.startsWith(namePrefix)) {
965 String attributePrefix, String attributeName, String attributeValue) {
968 if (element.hasAttributeNS(attributeUri, attributeName)) {
970 attributeUri, attributeName, attributeValue);
972 addAttributeDeclaration(rootEdit, offset, attributePrefix, attributeName,
979 String attributePrefix, String attributeName, String attributeValue) {
986 sb.append(attributeName).append('=').append('"');
996 String attributeName, Strin
963 setAttribute(MultiTextEdit rootEdit, Element element, String attributeUri, String attributePrefix, String attributeName, String attributeValue) argument
978 addAttributeDeclaration(MultiTextEdit rootEdit, int offset, String attributePrefix, String attributeName, String attributeValue) argument
994 replaceAttributeDeclaration(MultiTextEdit rootEdit, int offset, Element element, String attributePrefix, String attributeUri, String attributeName, String attributeValue) argument
1047 removeAttribute(MultiTextEdit rootEdit, Element element, String uri, String attributeName) argument
[all...]

Completed in 754 milliseconds