Searched refs:existingValue (Results 1 – 2 of 2) sorted by relevance
163 val existingValue = existingAnnotation.findAttribute(attribute.name)?.value in annotationsMatch() constant164 val existingValueSource = existingValue?.toSource() in annotationsMatch()171 existingValue is AnnotationArrayAttributeValue -> { in annotationsMatch()175 existingValue is AnnotationSingleAttributeValue -> { in annotationsMatch()
420 String existingValue = mRunMetrics.get(entry.getKey()); in testRunEnded() local421 String combinedValue = combineValues(existingValue, entry.getValue()); in testRunEnded()454 private String combineValues(String existingValue, String newValue) { in combineValues() argument455 if (existingValue != null) { in combineValues()457 long existingLong = Long.parseLong(existingValue); in combineValues()464 double existingDouble = Double.parseDouble(existingValue); in combineValues()