Home
last modified time | relevance | path

Searched refs:ValuesView (Results 1 – 19 of 19) sorted by relevance

/external/python/cpython3/Lib/
D_collections_abc.py841 return ValuesView(self)
912 class ValuesView(MappingView, Collection): class
928 ValuesView.register(dict_values)
Dtyping.py2140 ValuesView = _alias(collections.abc.ValuesView, 1) variable
/external/python/cpython2/Lib/
D_abcoll.py479 class ValuesView(MappingView): class
491 ValuesView.register(type({}.viewvalues()))
Dcollections.py240 return ValuesView(self)
/external/guava/guava/src/com/google/common/collect/
DCompactLinkedHashMap.java268 class ValuesImpl extends ValuesView { in createValues()
DCompactHashMap.java991 return new ValuesView();
995 class ValuesView extends Maps.Values<K, V> {
996 ValuesView() {
/external/pigweed/pw_tokenizer/py/pw_tokenizer/
Dtokens.py40 ValuesView,
181 def entries(self) -> ValuesView[TokenizedStringEntry]:
/external/guava/android/guava/src/com/google/common/collect/
DCompactHashMap.java917 return new ValuesView();
921 class ValuesView extends AbstractCollection<V> {
/external/python/cpython3/Doc/library/
Dcollections.abc.rst173 :class:`ValuesView` :class:`MappingView`, ``__contains__``, ``_…
288 ValuesView
Dtyping.rst1783 .. class:: ValuesView(MappingView[VT_co])
1785 A generic version of :class:`collections.abc.ValuesView`.
1788 :class:`collections.abc.ValuesView` now supports ``[]``. See :pep:`585`
Dstdtypes.rst4955 * :class:`collections.abc.ValuesView`
/external/python/cpython2/Lib/test/
Dtest_dictviews.py199 self.assertIsInstance(d.viewvalues(), collections.ValuesView)
/external/python/cpython3/Lib/test/
Dtest_genericalias.py71 KeysView, ItemsView, ValuesView,
Dtest_dictviews.py320 self.assertIsInstance(d.values(), collections.abc.ValuesView)
Dtest_collections.py26 from collections.abc import Mapping, MutableMapping, KeysView, ItemsView, ValuesView
1583 ValuesView({1: nan, 2: obj})
Dtest_typing.py5147 typing.ValuesView: 'ValuesView',
5185 typing.ValuesView[Any]: 'ValuesView',
/external/python/cpython3/Misc/NEWS.d/
D3.7.0b1.rst436 collections.abc.ValuesView now inherits from collections.abc.Collection.
/external/python/cpython2/Doc/library/
Dcollections.rst943 :class:`ValuesView` :class:`MappingView` ``__contains__``, ``__ite…
983 ValuesView
/external/python/cpython3/Lib/collections/
D__init__.py69 class _OrderedDictValuesView(_collections_abc.ValuesView):