Searched refs:strValue (Results 1 – 7 of 7) 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 …]
161 String strValue = readMultipleBytes(constraintData, valueLength, index); in ExtendedMetadataParser() local162 if (strValue.equals(" ")) { in ExtendedMetadataParser()163 strValue = ""; in ExtendedMetadataParser()166 mMap.put(strKey, strValue); in ExtendedMetadataParser()
237 AString strValue; in TEST_F() local240 EXPECT_EQ(true, msg["string.value"].find(&strValue)); in TEST_F()241 EXPECT_STREQ("1234567890A", strValue.c_str()); in TEST_F()244 EXPECT_EQ(true, msg["flex-string.value"].find(&strValue)); in TEST_F()245 EXPECT_STREQ("abc", strValue.c_str()); in TEST_F()
52 AString strValue; in debugString() local93 } else if (it.second.find(&strValue)) { in debugString()94 s << "string " << it.first << " = \"" << strValue.c_str() << "\""; in debugString()
1243 AString strValue; in getFormatForDomain() local1249 } else if (it->second.find(&strValue)) { in getFormatForDomain()1250 item.set(strValue); in getFormatForDomain()1277 AString strValue; in getFormatForDomain() local1283 } else if (value.find(&strValue)) { in getFormatForDomain()1284 item.set(strValue); in getFormatForDomain()1524 AString strValue; in convert() local1534 } else if (from.find(&strValue)) { in convert()1535 to->set(strValue); in convert()
826 String strValue = pluralsResourceValue.getValue(pluralRules.select(quantity)); in getQuantityString() local827 if (strValue == null) { in getQuantityString()828 strValue = pluralsResourceValue.getValue(PluralRules.KEYWORD_OTHER); in getQuantityString()831 return strValue; in getQuantityString()
295 } else if (FileReference* strValue = ValueCast<FileReference>(value)) { in GetAttributeString() local296 return &(*strValue->path); in GetAttributeString()