Home
last modified time | relevance | path

Searched refs:defaultdict (Results 1 – 25 of 186) sorted by relevance

12345678

/external/python/cpython3/Lib/test/
Dtest_defaultdict.py9 from collections import defaultdict
17 d1 = defaultdict()
28 d2 = defaultdict(list, foo=1, bar=2)
50 self.assertRaises(TypeError, defaultdict, 1)
53 d1 = defaultdict()
59 d1 = defaultdict()
65 d2 = defaultdict(int)
70 d3 = defaultdict(foo)
76 d1 = defaultdict()
78 d2 = defaultdict(foo, {1: 2})
[all …]
/external/python/cpython2/Lib/test/
Dtest_defaultdict.py9 from collections import defaultdict
17 d1 = defaultdict()
28 d2 = defaultdict(list, foo=1, bar=2)
50 self.assertRaises(TypeError, defaultdict, 1)
53 d1 = defaultdict()
59 d1 = defaultdict()
65 d2 = defaultdict(int)
70 d3 = defaultdict(foo)
76 d1 = defaultdict()
78 d2 = defaultdict(foo, {1: 2})
[all …]
/external/vulkan-validation-layers/scripts/
Dparse_test_results.py41 from collections import defaultdict
48 self.test_results = defaultdict(defaultdict)
49 self.unexpected_errors = defaultdict(defaultdict)
/external/python/cpython2/Demo/xml/
Delem_count.py7 from collections import defaultdict
16 self._elem_types = defaultdict(int)
17 self._attr_types = defaultdict(int)
/external/perfetto/tools/
Danalyze_profiling_sampling_distribution.py24 from collections import defaultdict
31 distributions = defaultdict(lambda: defaultdict(int))
/external/swiftshader/third_party/llvm-7.0/llvm/tools/opt-viewer/
Dopt-stats.py13 from collections import defaultdict
56 bypass = defaultdict(int)
57 byname = defaultdict(int)
Doptrecord.py14 from collections import defaultdict
269 file_remarks = defaultdict(functools.partial(defaultdict, list))
312 file_remarks = defaultdict(functools.partial(defaultdict, list))
/external/python/cpython3/Tools/msi/
Dcsv_to_wxs.py23 from collections import defaultdict
49 directories = defaultdict(set)
50 cache_directories = defaultdict(set)
51 groups = defaultdict(list)
/external/v8/tools/testrunner/testproc/
Dseed.py6 from collections import defaultdict
24 self._last_idx = defaultdict(int)
25 self._todo = defaultdict(int)
Dfilter.py5 from collections import defaultdict
61 self._globs = defaultdict(list)
62 self._exact_matches = defaultdict(dict)
Dcombiner.py5 from collections import defaultdict
33 self._groups = defaultdict(TestGroups)
110 self._groups = defaultdict(list)
/external/fonttools/Lib/fontTools/cffLib/
Dwidth.py8 from collections import defaultdict
45 d = defaultdict(int)
66 d = defaultdict(int)
99 d = defaultdict(int)
/external/grpc-grpc/src/python/grpcio_tests/tests/unit/
Dtest_common.py59 original = collections.defaultdict(list)
62 transmitted = collections.defaultdict(list)
/external/toolchain-utils/crosperf/
Dexperiment_status.py89 status_bins = collections.defaultdict(list)
127 grouped_benchmarks = collections.defaultdict(list)
134 benchmark_iterations = collections.defaultdict(list)
/external/catch2/scripts/
DbenchmarkRunner.py5 from collections import defaultdict
19 data = defaultdict(list)
/external/protobuf/jenkins/
Dmake_test_output.py23 from collections import defaultdict
26 tests = defaultdict(dict)
/external/bcc/tools/
Dcachetop.py22 from collections import defaultdict
73 stats = defaultdict(lambda: defaultdict(int))
Dtcptop.py35 from collections import namedtuple, defaultdict
235 ipv4_throughput = defaultdict(lambda: [0, 0])
261 ipv6_throughput = defaultdict(lambda: [0, 0])
/external/skia/tools/skpbench/
Dsheet.py11 from collections import defaultdict, namedtuple
71 self.rows = defaultdict(dict)
72 self.cols = defaultdict(dict)
/external/skqp/tools/skpbench/
Dsheet.py11 from collections import defaultdict, namedtuple
71 self.rows = defaultdict(dict)
72 self.cols = defaultdict(dict)
/external/autotest/client/site_tests/firmware_TouchMTB/
Dfirmware_log.py53 from collections import defaultdict, namedtuple
483 self.metrics_values = defaultdict(list)
484 self.metrics_dict = defaultdict(list)
518 self._table = defaultdict(list)
578 self.fw_validators = defaultdict(set)
/external/swiftshader/third_party/llvm-7.0/llvm/utils/
Dupdate_mca_test_checks.py10 from collections import defaultdict
171 lresult = defaultdict(list)
179 lresult = defaultdict(list)
281 block_infos = defaultdict(lambda: defaultdict(list))
/external/autotest/server/site_tests/firmware_PDProtocol/
Dfirmware_PDProtocol.py8 from collections import defaultdict
36 ECTOOL_CMD_DICT = defaultdict(lambda: 'ectool usbpdpower')
/external/grpc-grpc/src/python/grpcio_tests/tests/unit/_cython/
D_common.py46 self._due = collections.defaultdict(int)
47 self._events = collections.defaultdict(list)
/external/grpc-grpc/tools/profiling/microbenchmarks/bm_diff/
Dbm_diff.py100 True: collections.defaultdict(list),
101 False: collections.defaultdict(list)
157 benchmarks = collections.defaultdict(Benchmark)

12345678