Searched refs:attrName (Results 1 - 7 of 7) sorted by relevance

/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gre/
H A DNodeProxy.java361 public String getStringAttr(@Nullable String uri, @NonNull String attrName) { argument
364 if (attrName == null) {
371 String value = map.get(attrName);
383 Node attr = nodeAttributes.getNamedItemNS(uri, attrName);
394 public IAttributeInfo getAttributeInfo(@Nullable String uri, @NonNull String attrName) { argument
397 if (attrName == null) {
405 if (attrName.equals(dName)) {
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/values/
H A DValuesContentAssist.java163 String attrName = element.getAttribute(ATTR_NAME);
164 int pos = attrName.indexOf(':');
166 attrName = attrName.substring(pos + 1);
174 if (desc.getXmlLocalName().equals(attrName)) {
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/resources/platform/
H A DAttrsXmlParser.java578 * @param attrName The value of the name attribute of <attr>
583 private String[] parseEnumFlagValues(Node attrNode, String filter, String attrName) { argument
591 attrName, filter);
603 attrName, filter, name);
610 Map<String, Integer> map = mEnumFlagValues.get(attrName);
613 mEnumFlagValues.put(attrName, map);
620 attrName, filter, name, value);
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/common/layout/
H A DTestNode.java130 public void putAttributeInfo(String uri, String attrName, IAttributeInfo info) { argument
131 mAttributeInfos.put(uri + attrName, info);
135 public IAttributeInfo getAttributeInfo(@Nullable String uri, @NonNull String attrName) { argument
136 return mAttributeInfos.get(uri + attrName);
180 public String getStringAttr(@Nullable String uri, @NonNull String attrName) { argument
181 IAttribute attr = mAttributes.get(uri + attrName);
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/
H A DCompletionProposal.java141 String attrName = matcher.group(1);
152 if (attrName.equals(name)) {
H A DAndroidContentAssist.java377 String attrName = attrInfo.name;
379 int pos = attrName.indexOf(':');
381 attrName = attrName.substring(pos + 1);
386 if (attrNode.getDescriptor().getXmlLocalName().equals(attrName)) {
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/extractstring/
H A DExtractStringRefactoring.java745 String attrName, RefactoringStatus status) {
753 String name = attrName;
789 attrName,
800 mXmlAttributeName = attrName;
807 attrName));
1301 String attrName = null;
1319 attrName = regions.getText(region);
1321 ATTR_NAME.equals(attrName)) {
744 validateSelectedAttribute(AndroidXmlEditor editor, Node node, String attrName, RefactoringStatus status) argument

Completed in 269 milliseconds