Home
last modified time | relevance | path

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

/tools/metalava/metalava/src/main/java/com/android/tools/metalava/
DAnnotationFilter.kt163 val existingValue = existingAnnotation.findAttribute(attribute.name)?.value in annotationsMatch() constant
164 val existingValueSource = existingValue?.toSource() in annotationsMatch()
171 existingValue is AnnotationArrayAttributeValue -> { in annotationsMatch()
175 existingValue is AnnotationSingleAttributeValue -> { in annotationsMatch()
/tools/tradefederation/core/invocation_interfaces/com/android/tradefed/result/
DTestRunResult.java420 String existingValue = mRunMetrics.get(entry.getKey()); in testRunEnded() local
421 String combinedValue = combineValues(existingValue, entry.getValue()); in testRunEnded()
454 private String combineValues(String existingValue, String newValue) { in combineValues() argument
455 if (existingValue != null) { in combineValues()
457 long existingLong = Long.parseLong(existingValue); in combineValues()
464 double existingDouble = Double.parseDouble(existingValue); in combineValues()