Home
last modified time | relevance | path

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

/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
DGraphReader.java410 String strValue = null; in getAssignmentValue() local
411 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 …]
/frameworks/base/drm/java/android/drm/
DDrmUtils.java159 String strValue = readMultipleBytes(constraintData, valueLength, index); in ExtendedMetadataParser() local
160 if (strValue.equals(" ")) { in ExtendedMetadataParser()
161 strValue = ""; in ExtendedMetadataParser()
164 mMap.put(strKey, strValue); in ExtendedMetadataParser()
/frameworks/layoutlib/bridge/src/android/content/res/
DResources_Delegate.java771 String strValue = pluralsResourceValue.getValue(pluralRules.select(quantity)); in getQuantityString() local
772 if (strValue == null) { in getQuantityString()
773 strValue = pluralsResourceValue.getValue(PluralRules.KEYWORD_OTHER); in getQuantityString()
776 return strValue; in getQuantityString()