Home
last modified time | relevance | path

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

/tools/tradefederation/core/src/com/android/tradefed/result/
DTestRunResult.java262 String existingValue = mRunMetrics.get(entry.getKey()); in testRunEnded() local
263 String combinedValue = combineValues(existingValue, entry.getValue()); in testRunEnded()
296 private String combineValues(String existingValue, String newValue) { in combineValues() argument
297 if (existingValue != null) { in combineValues()
299 Long existingLong = Long.parseLong(existingValue); in combineValues()
306 Double existingDouble = Double.parseDouble(existingValue); in combineValues()