Home
last modified time | relevance | path

Searched refs:dict_keys (Results 1 – 18 of 18) sorted by relevance

/external/perfetto/test/trace_processor/track_event/
Dtrack_event_merged_debug_annotations.textproto39 dict_keys: "key1"
40 dict_keys: "key2"
100 dict_keys: "key3"
101 dict_keys: "key2"
/external/autotest/site_utils/
Dgenerate_test_report545 dict_keys = result_dict.keys()
546 dict_keys.sort()
548 for dict_key in dict_keys:
/external/google-fruit/extras/benchmark/
Drun_benchmarks.py701 dict_keys = sorted(benchmark_definition.keys())
706 …value_combinations = itertools.product(*(benchmark_definition[dict_key] for dict_key in dict_keys))
708 return [dict(zip(dict_keys, value_combination))
/external/perfetto/protos/perfetto/trace/track_event/
Ddebug_annotation.proto103 repeated string dict_keys = 2; field
/external/perfetto/protos/perfetto/trace/chrome/
Dchrome_trace_event.proto27 repeated string dict_keys = 2; field
/external/python/cpython3/Lib/
D_collections_abc.py53 dict_keys = type({}.keys()) variable
744 KeysView.register(dict_keys)
/external/python/cpython2/Lib/idlelib/
DRemoteDebugger.py162 def dict_keys(self, did): member in IdbAdapter
/external/python/cpython3/Lib/idlelib/
Ddebugger_r.py159 def dict_keys(self, did): member in IdbAdapter
/external/python/cpython2/Objects/
Ddictobject.c1297 dict_keys(register PyDictObject *mp) in dict_keys() function
1770 return dict_keys((PyDictObject *)mp); in PyDict_Keys()
2333 {"keys", (PyCFunction)dict_keys, METH_NOARGS,
/external/starlark-go/starlark/
Dlibrary.go85 "keys": NewBuiltin("keys", dict_keys),
1209 func dict_keys(_ *Thread, b *Builtin, args Tuple, kwargs []Tuple) (Value, error) { func
/external/python/cpython3/Doc/library/
Dfunctools.rst498 dict_keys([<class 'NoneType'>, <class 'int'>, <class 'object'>,
/external/perfetto/src/trace_processor/importers/proto/
Dtrack_event_parser.cc1255 auto key_it = value.dict_keys(); in ParseNestedValueArgs()
/external/python/cpython3/Objects/
Ddictobject.c2183 dict_keys(PyDictObject *mp) in dict_keys() function
2755 return dict_keys((PyDictObject *)mp); in PyDict_Keys()
/external/python/cpython2/Doc/whatsnew/
D2.7.rst566 dict_keys([0, 130, 10, 140, 20, 150, 30, ..., 250])
584 dict_keys([0, 130, 10, ..., 250])
587 dict_keys([0, 130, 260, 10, ..., 250])
/external/python/cpython3/Doc/whatsnew/
D2.7.rst566 dict_keys([0, 130, 10, 140, 20, 150, 30, ..., 250])
584 dict_keys([0, 130, 10, ..., 250])
587 dict_keys([0, 130, 260, 10, ..., 250])
/external/python/cpython3/Misc/NEWS.d/
D3.9.0a1.rst174 ``dict_keys``. ``d.keys() | other`` was slower than ``set(d) | other`` but
/external/perfetto/protos/perfetto/trace/
Dperfetto_trace.proto2469 repeated string dict_keys = 2; field
6215 repeated string dict_keys = 2; field
/external/python/cpython3/Misc/
DHISTORY12264 - Issue #9212: dict_keys and dict_items now provide the isdisjoint() method, to
16847 - Bug #2606: Avoid calling .sort() on a dict_keys object.