Home
last modified time | relevance | path

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

/tools/tradefederation/core/test_framework/com/android/tradefed/targetprep/
DPushFilePreparer.java269 Set<File> allMatch = FileUtil.findFilesObject(searchDir, fileName); in resolveRelativeFilePath() local
270 if (allMatch.size() > 1) { in resolveRelativeFilePath()
274 for (File f : allMatch) { in resolveRelativeFilePath()
280 } else if (allMatch.size() == 1) { in resolveRelativeFilePath()
281 return allMatch.iterator().next(); in resolveRelativeFilePath()
/tools/tradefederation/core/src/com/android/tradefed/device/metric/
DBaseDeviceMetricCollector.java536 Set<File> allMatch = FileUtil.findFilesObject(searchDir, fileName); in resolveRelativeFilePath() local
537 if (allMatch.size() > 1) { in resolveRelativeFilePath()
541 for (File f : allMatch) { in resolveRelativeFilePath()
546 } else if (allMatch.size() == 1) { in resolveRelativeFilePath()
547 return allMatch.iterator().next(); in resolveRelativeFilePath()
/tools/tradefederation/core/tests/src/com/android/tradefed/postprocessor/
DStatsdGenericPostProcessorTest.java467 keyComponents.stream().allMatch(c -> e.getKey().contains(c)) in assertMetricsContain()
485 .noneMatch(k -> keyComponents.stream().allMatch(c -> k.contains(c)))); in assertMetricsDoNotContain()
/tools/tradefederation/core/src/com/android/tradefed/postprocessor/
DAggregatePostProcessor.java136 .allMatch( in isAllDoubleValues()