Home
last modified time | relevance | path

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

/test/framework/harnesses/host_controller/build/
Dbuild_info.py17 import collections
63 other, collections.Mapping) else other:
/test/mlts/benchmark/results/
Dgenerate_result.py27 import collections
38 BenchmarkResult = collections.namedtuple(
46 ResultsWithBaseline = collections.namedtuple(
103 groupings = collections.defaultdict(list)
119 known_groupings_baseline = collections.defaultdict(list)
/test/vts-testcase/vndk/golden/
Dvndk_data.py17 import collections
120 lib_sets = collections.defaultdict(set)
/test/vti/test_serving/configs/infra/prod/androidtestcenter/scripts/
Dhome_bot_config.py20 import collections
48 DeviceBot = collections.namedtuple('DeviceBot', 'dimensions state')
/test/vti/test_serving/configs/infra/test/androidtestcenter-test/scripts/
Dhome_bot_config.py20 import collections
48 DeviceBot = collections.namedtuple('DeviceBot', 'dimensions state')
/test/vti/dashboard/src/main/java/com/android/vts/util/
DFilterUtil.java188 public static <T> Set<T> getCommonElements(Collection<? extends Collection<T>> collections) { in getCommonElements() argument
191 if (!collections.isEmpty()) { in getCommonElements()
192 Iterator<? extends Collection<T>> iterator = collections.iterator(); in getCommonElements()