Searched refs:strValue (Results 1 – 3 of 3) sorted by relevance
410 String strValue = null; in getAssignmentValue() local411 if ((strValue = attributes.getValue("stringValue")) != null) { in getAssignmentValue()412 return strValue; in getAssignmentValue()413 } else if ((strValue = attributes.getValue("booleanValue")) != null) { in getAssignmentValue()414 return Boolean.parseBoolean(strValue); in getAssignmentValue()415 } else if ((strValue = attributes.getValue("intValue")) != null) { in getAssignmentValue()416 return Integer.parseInt(strValue); in getAssignmentValue()417 } else if ((strValue = attributes.getValue("floatValue")) != null) { in getAssignmentValue()418 return Float.parseFloat(strValue); in getAssignmentValue()419 } else if ((strValue = attributes.getValue("floatsValue")) != null) { in getAssignmentValue()[all …]
159 String strValue = readMultipleBytes(constraintData, valueLength, index); in ExtendedMetadataParser() local160 if (strValue.equals(" ")) { in ExtendedMetadataParser()161 strValue = ""; in ExtendedMetadataParser()164 mMap.put(strKey, strValue); in ExtendedMetadataParser()
791 String strValue = pluralsResourceValue.getValue(pluralRules.select(quantity)); in getQuantityString() local792 if (strValue == null) { in getQuantityString()793 strValue = pluralsResourceValue.getValue(PluralRules.KEYWORD_OTHER); in getQuantityString()796 return strValue; in getQuantityString()