Home
last modified time | relevance | path

Searched refs:singleValue (Results 1 – 2 of 2) sorted by relevance

/test/suite_harness/common/host-side/util/src/com/android/compatibility/common/util/
DDynamicConfigHostSide.java49 List<String> singleValue = configMap.get(key); in getValueFromConfig() local
50 if (singleValue == null || singleValue.size() == 0 || singleValue.size() > 1) { in getValueFromConfig()
54 return singleValue.get(0); in getValueFromConfig()
/test/suite_harness/common/util/src/com/android/compatibility/common/util/
DDynamicConfig.java66 List<String> singleValue = mDynamicConfigMap.get(key); in getValue() local
67 if (singleValue == null || singleValue.size() == 0 || singleValue.size() > 1) { in getValue()
71 return singleValue.get(0); in getValue()