Searched refs:strValue (Results 1 – 3 of 3) sorted by relevance
48 String strValue = (String)icicle.get("iterations"); in onCreate() local49 if (strValue != null) { in onCreate()50 int intValue = Integer.parseInt(strValue); in onCreate()
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 …]
169 String strValue = readMultipleBytes(constraintData, valueLength, index); in ExtendedMetadataParser() local170 if (strValue.equals(" ")) { in ExtendedMetadataParser()171 strValue = ""; in ExtendedMetadataParser()174 mMap.put(strKey, strValue); in ExtendedMetadataParser()