Home
last modified time | relevance | path

Searched refs:attrValue (Results 1 – 3 of 3) sorted by relevance

/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/
DListValueCellEditor.java57 String attrValue = uiListAttribute.getCurrentValue(); in doSetValue() local
58 mCombo.setText(attrValue); in doSetValue()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/extractstring/
DExtractStringRefactoring.java723 static String unquoteAttrValue(String attrValue) { in unquoteAttrValue() argument
724 int len = attrValue.length(); in unquoteAttrValue()
727 attrValue.charAt(0) == '"' && in unquoteAttrValue()
728 attrValue.charAt(len1) == '"') { in unquoteAttrValue()
729 attrValue = attrValue.substring(1, len1); in unquoteAttrValue()
731 attrValue.charAt(0) == '\'' && in unquoteAttrValue()
732 attrValue.charAt(len1) == '\'') { in unquoteAttrValue()
733 attrValue = attrValue.substring(1, len1); in unquoteAttrValue()
736 return attrValue; in unquoteAttrValue()
1302 String attrValue = null;
[all …]
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/junit/
DAndroidJUnitLaunchConfigDelegate.java264 String attrValue = configuration.getAttribute(attributeName, EMPTY_STRING); in getStringLaunchAttribute() local
265 if (attrValue.length() < 1) { in getStringLaunchAttribute()
268 return attrValue; in getStringLaunchAttribute()