Searched refs:defaultdict (Results 1 – 25 of 186) sorted by relevance
12345678
/external/python/cpython3/Lib/test/ |
D | test_defaultdict.py | 9 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/ |
D | test_defaultdict.py | 9 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/ |
D | parse_test_results.py | 41 from collections import defaultdict 48 self.test_results = defaultdict(defaultdict) 49 self.unexpected_errors = defaultdict(defaultdict)
|
/external/python/cpython2/Demo/xml/ |
D | elem_count.py | 7 from collections import defaultdict 16 self._elem_types = defaultdict(int) 17 self._attr_types = defaultdict(int)
|
/external/perfetto/tools/ |
D | analyze_profiling_sampling_distribution.py | 24 from collections import defaultdict 31 distributions = defaultdict(lambda: defaultdict(int))
|
/external/swiftshader/third_party/llvm-7.0/llvm/tools/opt-viewer/ |
D | opt-stats.py | 13 from collections import defaultdict 56 bypass = defaultdict(int) 57 byname = defaultdict(int)
|
D | optrecord.py | 14 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/ |
D | csv_to_wxs.py | 23 from collections import defaultdict 49 directories = defaultdict(set) 50 cache_directories = defaultdict(set) 51 groups = defaultdict(list)
|
/external/v8/tools/testrunner/testproc/ |
D | seed.py | 6 from collections import defaultdict 24 self._last_idx = defaultdict(int) 25 self._todo = defaultdict(int)
|
D | filter.py | 5 from collections import defaultdict 61 self._globs = defaultdict(list) 62 self._exact_matches = defaultdict(dict)
|
D | combiner.py | 5 from collections import defaultdict 33 self._groups = defaultdict(TestGroups) 110 self._groups = defaultdict(list)
|
/external/fonttools/Lib/fontTools/cffLib/ |
D | width.py | 8 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/ |
D | test_common.py | 59 original = collections.defaultdict(list) 62 transmitted = collections.defaultdict(list)
|
/external/toolchain-utils/crosperf/ |
D | experiment_status.py | 89 status_bins = collections.defaultdict(list) 127 grouped_benchmarks = collections.defaultdict(list) 134 benchmark_iterations = collections.defaultdict(list)
|
/external/catch2/scripts/ |
D | benchmarkRunner.py | 5 from collections import defaultdict 19 data = defaultdict(list)
|
/external/protobuf/jenkins/ |
D | make_test_output.py | 23 from collections import defaultdict 26 tests = defaultdict(dict)
|
/external/bcc/tools/ |
D | cachetop.py | 22 from collections import defaultdict 73 stats = defaultdict(lambda: defaultdict(int))
|
D | tcptop.py | 35 from collections import namedtuple, defaultdict 235 ipv4_throughput = defaultdict(lambda: [0, 0]) 261 ipv6_throughput = defaultdict(lambda: [0, 0])
|
/external/skia/tools/skpbench/ |
D | sheet.py | 11 from collections import defaultdict, namedtuple 71 self.rows = defaultdict(dict) 72 self.cols = defaultdict(dict)
|
/external/skqp/tools/skpbench/ |
D | sheet.py | 11 from collections import defaultdict, namedtuple 71 self.rows = defaultdict(dict) 72 self.cols = defaultdict(dict)
|
/external/autotest/client/site_tests/firmware_TouchMTB/ |
D | firmware_log.py | 53 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/ |
D | update_mca_test_checks.py | 10 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/ |
D | firmware_PDProtocol.py | 8 from collections import defaultdict 36 ECTOOL_CMD_DICT = defaultdict(lambda: 'ectool usbpdpower')
|
/external/grpc-grpc/src/python/grpcio_tests/tests/unit/_cython/ |
D | _common.py | 46 self._due = collections.defaultdict(int) 47 self._events = collections.defaultdict(list)
|
/external/grpc-grpc/tools/profiling/microbenchmarks/bm_diff/ |
D | bm_diff.py | 100 True: collections.defaultdict(list), 101 False: collections.defaultdict(list) 157 benchmarks = collections.defaultdict(Benchmark)
|
12345678