Home
last modified time | relevance | path

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

12345678910

/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/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/Demo/xml/
Delem_count.py7 from collections import defaultdict
16 self._elem_types = defaultdict(int)
17 self._attr_types = defaultdict(int)
/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/perfetto/tools/
Danalyze_profiling_sampling_distribution.py22 from collections import defaultdict
30 distributions = defaultdict(lambda: defaultdict(int))
/external/llvm-project/llvm/tools/opt-viewer/
Dopt-stats.py13 from collections import defaultdict
56 bypass = defaultdict(int)
57 byname = defaultdict(int)
Doptrecord.py15 from collections import defaultdict
274 file_remarks = defaultdict(functools.partial(defaultdict, list))
325 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/llvm-project/llvm/utils/gn/build/
Dsync_source_lists_from_cmake.py19 from collections import defaultdict
70 changes_by_rev = defaultdict(lambda: defaultdict(lambda: defaultdict(list)))
/external/llvm-project/llvm/utils/
Dupdate_mca_test_checks.py10 from collections import defaultdict
149 lresult = defaultdict(list)
157 lresult = defaultdict(list)
298 farthest_indexes = defaultdict(int)
330 block_infos = defaultdict(lambda: defaultdict(list))
491 output_blocks = defaultdict(list)
/external/grpc-grpc/src/python/grpcio_tests/tests/unit/
Dtest_common.py59 original = collections.defaultdict(list)
62 transmitted = collections.defaultdict(list)
/external/fonttools/Tests/cu2qu/
Dcu2qu_test.py77 results = collections.defaultdict(int)
93 results = collections.defaultdict(int)
106 results = collections.defaultdict(int)
115 results = collections.defaultdict(int)
/external/fonttools/Lib/fontTools/cffLib/
Dwidth.py11 from collections import defaultdict
48 d = defaultdict(int)
69 d = defaultdict(int)
102 d = defaultdict(int)
/external/mesa3d/src/amd/registers/
Dcanonicalize.py38 from collections import defaultdict
52 buckets = defaultdict(list)
/external/catch2/scripts/
DbenchmarkRunner.py5 from collections import defaultdict
19 data = defaultdict(list)
/external/autotest/server/site_tests/power_ServoChargeStress/
Dpower_ServoChargeStress.py39 total_fail = collections.defaultdict(int)
40 total_success_with_recovery = collections.defaultdict(int)
/external/protobuf/kokoro/linux/
Dmake_test_output.py23 from collections import defaultdict
27 tests = defaultdict(dict)
/external/toolchain-utils/crosperf/
Dexperiment_status.py93 status_bins = collections.defaultdict(list)
131 grouped_benchmarks = collections.defaultdict(list)
138 benchmark_iterations = collections.defaultdict(list)
/external/bcc/tools/
Dtcptop.py35 from collections import namedtuple, defaultdict
235 ipv4_throughput = defaultdict(lambda: [0, 0])
261 ipv6_throughput = defaultdict(lambda: [0, 0])
Dcachetop.py22 from collections import defaultdict
73 stats = defaultdict(lambda: defaultdict(int))
/external/skia/tools/skpbench/
Dsheet.py11 from collections import defaultdict, namedtuple
71 self.rows = defaultdict(dict)
72 self.cols = defaultdict(dict)
/external/webrtc/tools_webrtc/
Dgn_check_autofix.py30 from collections import defaultdict
139 errors_by_file = defaultdict(lambda: defaultdict(set))
/external/skqp/tools/skpbench/
Dsheet.py11 from collections import defaultdict, namedtuple
71 self.rows = defaultdict(dict)
72 self.cols = defaultdict(dict)
/external/python/cryptography/docs/development/custom-vectors/secp256k1/
Dgenerate_secp256k1.py6 from collections import defaultdict
39 vectors = defaultdict(list)
/external/libchrome/build/android/gyp/util/
Dresource_utils.py231 collections.defaultdict(lambda: collections.defaultdict(list)))
297 final_resources_by_type = collections.defaultdict(list)
298 non_final_resources_by_type = collections.defaultdict(list)

12345678910