Home
last modified time | relevance | path

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

/external/perfetto/protos/perfetto/trace/track_event/
Ddebug_annotation.proto34 repeated string dict_keys = 2; field
/external/autotest/site_utils/
Dgenerate_test_report555 dict_keys = result_dict.keys()
556 dict_keys.sort()
558 for dict_key in dict_keys:
/external/google-fruit/extras/benchmark/
Drun_benchmarks.py642 dict_keys = sorted(benchmark_definition.keys())
648 …value_combinations = itertools.product(*(benchmark_definition[dict_key] for dict_key in dict_keys))
650 return [dict(zip(dict_keys, value_combination))
/external/perfetto/protos/perfetto/trace/chrome/
Dchrome_trace_event.proto28 repeated string dict_keys = 2; field
/external/python/cpython3/Lib/
D_collections_abc.py51 dict_keys = type({}.keys()) variable
722 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/python/cpython3/Doc/library/
Dfunctools.rst383 dict_keys([<class 'NoneType'>, <class 'int'>, <class 'object'>,
/external/python/cpython3/Objects/
Ddictobject.c2066 dict_keys(PyDictObject *mp) in dict_keys() function
2619 return dict_keys((PyDictObject *)mp); in PyDict_Keys()
/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/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/perfetto/protos/perfetto/trace/
Dperfetto_trace.proto3007 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.