Home
last modified time | relevance | path

Searched refs:_collections (Results 1 – 23 of 23) sorted by relevance

/external/python/cpython3/Lib/
Dpprint.py37 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
Dthreading.py12 from _collections import deque as _deque
/external/cldr/tools/java/org/unicode/cldr/tool/
DChartLanguageGroups.java39 Builder<String> _collections = ImmutableSet.<String> builder();
44 _collections.add(e.getKey()); in e.getKey()
47 COLLECTIONS = _collections.build();
DGenerateLanguageContainment.java86 Builder<String> _collections = ImmutableSet.<String> builder();
91 _collections.add(e.getKey()); in e.getKey()
94 COLLECTIONS = _collections.build();
/external/kmod/libkmod/python/kmod/
Dmodule.pyx17 import collections as _collections namespace
85 info = _collections.OrderedDict()
/external/tensorflow/tensorflow/python/util/
Dnest.py45 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__.py43 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/
Dcond_v2.py87 … 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
Dwhile_v2.py152 … 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/
Dops.py2969 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 …]
Dfunc_graph.py250 self._collections[collection_name] = graph.get_collection(
253 self._collections[collection_name] = graph.get_collection_ref(
256 self._collections = collections
Dfunction.py951 func_graph._collections = collections_ref
/external/tensorflow/tensorflow/lite/python/
Dop_hint.py75 import collections as _collections namespace
747 func_calls = _collections.defaultdict(_LiteFuncCall)
/external/python/cpython2/Lib/
Dcollections.py20 from _collections import deque, defaultdict
Dargparse.py85 import collections as _collections namespace
1047 self._name_parser_map = _collections.OrderedDict()
/external/python/cpython2/
DAndroid.bp346 "py2-c-module-_collections",
498 name: "py2-c-module-_collections",
/external/python/cpython2/Misc/NEWS.d/
D2.6rc1.rst362 Fixed two format strings in the _collections module.
/external/python/cpython3/Doc/library/
Dcollections.abc.rst28 .. _collections-abstract-base-classes:
/external/python/cpython3/Modules/
DSetup113 _collections _collectionsmodule.c # Container types
/external/python/cpython2/Modules/
DSetup.dist179 #_collections _collectionsmodule.c # Container types
/external/python/cpython3/Misc/NEWS.d/
D3.9.0a5.rst43 Port _collections module to multiphase initialization (:pep:`489`).
D3.9.0a1.rst3162 Converted _collections._count_elements to use the Argument Clinic.
/external/python/cpython2/Doc/library/
Dcollections.rst890 .. _collections-abstract-base-classes: