Home
last modified time | relevance | path

Searched refs:strValue (Results 1 – 6 of 6) 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.java161 String strValue = readMultipleBytes(constraintData, valueLength, index); in ExtendedMetadataParser() local
162 if (strValue.equals(" ")) { in ExtendedMetadataParser()
163 strValue = ""; in ExtendedMetadataParser()
166 mMap.put(strKey, strValue); in ExtendedMetadataParser()
/frameworks/av/media/codec2/sfplugin/
DReflectedParamUpdater.cpp52 AString strValue; in debugString() local
93 } else if (it.second.find(&strValue)) { in debugString()
94 s << "string " << it.first << " = \"" << strValue.c_str() << "\""; in debugString()
DCCodecConfig.cpp1389 AString strValue; in getFormatForDomain() local
1395 } else if (it->second.find(&strValue)) { in getFormatForDomain()
1396 item.set(strValue); in getFormatForDomain()
1423 AString strValue; in getFormatForDomain() local
1429 } else if (value.find(&strValue)) { in getFormatForDomain()
1430 item.set(strValue); in getFormatForDomain()
1686 AString strValue; in convert() local
1696 } else if (from.find(&strValue)) { in convert()
1697 to->set(strValue); in convert()
/frameworks/layoutlib/bridge/src/android/content/res/
DResources_Delegate.java834 String strValue = pluralsResourceValue.getValue(pluralRules.select(quantity)); in getQuantityString() local
835 if (strValue == null) { in getQuantityString()
836 strValue = pluralsResourceValue.getValue(PluralRules.KEYWORD_OTHER); in getQuantityString()
839 return strValue; in getQuantityString()
/frameworks/base/tools/aapt2/dump/
DDumpManifest.cpp405 } else if (FileReference* strValue = ValueCast<FileReference>(value)) { in GetAttributeString() local
406 return &(*strValue->path); in GetAttributeString()