/external/python/cpython3/Lib/ |
D | pprint.py | 37 import collections as _collections namespace 217 _dispatch[_collections.OrderedDict.__repr__] = _pprint_ordered_dict 457 _dispatch[_collections.defaultdict.__repr__] = _pprint_default_dict 473 _dispatch[_collections.Counter.__repr__] = _pprint_counter 490 _dispatch[_collections.ChainMap.__repr__] = _pprint_chain_map 510 _dispatch[_collections.deque.__repr__] = _pprint_deque 515 _dispatch[_collections.UserDict.__repr__] = _pprint_user_dict 520 _dispatch[_collections.UserList.__repr__] = _pprint_user_list 525 _dispatch[_collections.UserString.__repr__] = _pprint_user_string
|
D | threading.py | 12 from _collections import deque as _deque
|
/external/cldr/tools/java/org/unicode/cldr/tool/ |
D | ChartLanguageGroups.java | 39 Builder<String> _collections = ImmutableSet.<String> builder(); 44 _collections.add(e.getKey()); in e.getKey() 47 COLLECTIONS = _collections.build();
|
D | GenerateLanguageContainment.java | 86 Builder<String> _collections = ImmutableSet.<String> builder(); 91 _collections.add(e.getKey()); in e.getKey() 94 COLLECTIONS = _collections.build();
|
/external/kmod/libkmod/python/kmod/ |
D | module.pyx | 17 import collections as _collections namespace 85 info = _collections.OrderedDict()
|
/external/tensorflow/tensorflow/python/util/ |
D | nest.py | 45 import collections as _collections namespace 163 if instance_type == _collections.defaultdict: 164 d = _collections.defaultdict(instance.default_factory)
|
/external/python/cpython3/Lib/collections/ |
D | __init__.py | 43 from _collections import deque 50 from _collections import defaultdict 330 from _collections import OrderedDict 341 from _collections import _tuplegetter 526 from _collections import _count_elements
|
/external/tensorflow/tensorflow/python/ops/ |
D | cond_v2.py | 87 … true_name, collections=ops.get_default_graph()._collections), # pylint: disable=protected-access 94 … false_name, collections=ops.get_default_graph()._collections), # pylint: disable=protected-access 884 name, collections=ops.get_default_graph()._collections) # pylint: disable=protected-access 1012 … collections=ops.get_default_graph()._collections), # pylint: disable=protected-access
|
D | while_v2.py | 152 … cond_name, collections=ops.get_default_graph()._collections), # pylint: disable=protected-access 201 … body_name, collections=ops.get_default_graph()._collections), # pylint: disable=protected-access
|
/external/tensorflow/tensorflow/python/framework/ |
D | ops.py | 2969 self._collections = {} 4004 return list(self._collections) 4019 if name not in self._collections: 4020 self._collections[name] = [value] 4022 self._collections[name].append(value) 4064 coll_list = self._collections.get(name, None) 4067 self._collections[name] = coll_list 4093 collection = self._collections.get(name, None) 4113 return [x for x in self._collections if isinstance(x, six.string_types)] 4124 if name in self._collections: [all …]
|
D | func_graph.py | 250 self._collections[collection_name] = graph.get_collection( 253 self._collections[collection_name] = graph.get_collection_ref( 256 self._collections = collections
|
D | function.py | 951 func_graph._collections = collections_ref
|
/external/tensorflow/tensorflow/lite/python/ |
D | op_hint.py | 75 import collections as _collections namespace 747 func_calls = _collections.defaultdict(_LiteFuncCall)
|
/external/python/cpython2/Lib/ |
D | collections.py | 20 from _collections import deque, defaultdict
|
D | argparse.py | 85 import collections as _collections namespace 1047 self._name_parser_map = _collections.OrderedDict()
|
/external/python/cpython2/ |
D | Android.bp | 346 "py2-c-module-_collections", 498 name: "py2-c-module-_collections",
|
/external/python/cpython2/Misc/NEWS.d/ |
D | 2.6rc1.rst | 362 Fixed two format strings in the _collections module.
|
/external/python/cpython3/Doc/library/ |
D | collections.abc.rst | 28 .. _collections-abstract-base-classes:
|
/external/python/cpython3/Modules/ |
D | Setup | 113 _collections _collectionsmodule.c # Container types
|
/external/python/cpython2/Modules/ |
D | Setup.dist | 179 #_collections _collectionsmodule.c # Container types
|
/external/python/cpython3/Misc/NEWS.d/ |
D | 3.9.0a5.rst | 43 Port _collections module to multiphase initialization (:pep:`489`).
|
D | 3.9.0a1.rst | 3162 Converted _collections._count_elements to use the Argument Clinic.
|
/external/python/cpython2/Doc/library/ |
D | collections.rst | 890 .. _collections-abstract-base-classes:
|