Searched refs:attrValue (Results 1 – 3 of 3) sorted by relevance
57 String attrValue = uiListAttribute.getCurrentValue(); in doSetValue() local58 mCombo.setText(attrValue); in doSetValue()
723 static String unquoteAttrValue(String attrValue) { in unquoteAttrValue() argument724 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 …]
264 String attrValue = configuration.getAttribute(attributeName, EMPTY_STRING); in getStringLaunchAttribute() local265 if (attrValue.length() < 1) { in getStringLaunchAttribute()268 return attrValue; in getStringLaunchAttribute()