Home
last modified time | relevance | path

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

/cts/apps/CtsVerifier/src/com/android/cts/verifier/
DTestResultHistoryCollection.java21 public Set<TestResultHistory> asSet() { in asSet() method in TestResultHistoryCollection
69 resultHistoryCollection.asSet().forEach(t-> addAll( in merge()
DTestResultsReport.java212 for (TestResultHistory history : historyCollection.asSet()) { in getTestResultHistories()
223 for (TestResultHistory history : historyCollection.asSet()) { in getTestResultHistories()
/cts/tests/tests/provider/src/android/provider/cts/settings/
DSettings_ConfigTest.java597 selfChange, asSet(uris).toString(), flags, userId); in toString()
605 && Objects.equals(asSet(change.uris), asSet(uris)) in equals()
613 private static Set<Uri> asSet(Iterable<Uri> uris) { in asSet() method in Settings_ConfigTest.Change
614 final Set<Uri> asSet = new HashSet<>(); in asSet() local
615 uris.forEach(asSet::add); in asSet()
616 return asSet; in asSet()
/cts/tests/tests/media/misc/src/android/media/misc/cts/
DMediaFormatTest.java303 private static Set<String> asSet(String ... values) { in asSet() method in MediaFormatTest
343 Set<String> toFind = asSet("int", "long", "float", "string"); in testKeySetContainsAndRemove()
364 Set<String> toFind = asSet("int", "long", "string"); in testKeySetContainsAndRemove()
385 Set<String> toFind = asSet("int", "string"); in testKeySetContainsAndRemove()
446 Set<String> toFind = asSet("int", "long", "float", "string"); in testFeatureKeySetContainsAndRemove()
483 Set<String> toFind = asSet("int", "long", "string"); in testFeatureKeySetContainsAndRemove()
516 Set<String> toFind = asSet("int", "string"); in testFeatureKeySetContainsAndRemove()
DMediaCodecListTest.java147 private static <T> Set<T> asSet(T[] array) { in asSet() method in MediaCodecListTest
155 private static Set<Integer> asSet(int[] array) { in asSet() method in MediaCodecListTest
166 assertEqualsOrSuperset(asSet(big.colorFormats), asSet(tiny.colorFormats), superset); in assertEqualsOrSuperset()
167 assertEqualsOrSuperset(asSet(big.profileLevels), asSet(tiny.profileLevels), superset); in assertEqualsOrSuperset()
184 asSet(big.getSupportedTypes()), asSet(tiny.getSupportedTypes()), superset); in assertEqualsOrSuperset()
/cts/tests/tests/content/src/android/content/cts/
DContentResolverTest.java1693 selfChange, asSet(uris).toString(), flags, userId); in toString()
1701 Objects.equals(asSet(change.uris), asSet(uris)) && in equals()
1708 private static Set<Uri> asSet(Iterable<Uri> uris) { in asSet() method in ContentResolverTest.Change
1709 final Set<Uri> asSet = new HashSet<>(); in asSet() local
1710 uris.forEach(asSet::add); in asSet()
1711 return asSet; in asSet()