Home
last modified time | relevance | path

Searched refs:MutableMapping (Results 1 – 25 of 61) sorted by relevance

123

/external/protobuf/python/google/protobuf/internal/
Dcontainers.py120 class MutableMapping(Mapping): class
181 collections_abc.MutableMapping.register(MutableMapping)
186 MutableMapping = collections_abc.MutableMapping variable
456 class ScalarMap(MutableMapping):
546 class MessageMap(MutableMapping):
/external/fonttools/Lib/fontTools/misc/plistlib/
D__init__.py9 MutableMapping,
186 dict_type: Type[MutableMapping[str, Any]] = dict,
227 if not isinstance(stack_top, collections.abc.MutableMapping):
492 dict_type: Type[MutableMapping[str, Any]] = dict,
524 dict_type: Type[MutableMapping[str, Any]] = dict,
556 dict_type: Type[MutableMapping[str, Any]] = dict,
/external/python/cpython2/Lib/bsddb/
Ddbshelve.py72 from UserDict import DictMixin as MutableMapping unknown
75 MutableMapping = collections.MutableMapping variable
118 class DBShelf(MutableMapping):
D__init__.py89 MutableMapping = UserDict.DictMixin variable
92 MutableMapping = collections.MutableMapping variable
94 class _iter_mixin(MutableMapping):
Ddbobj.py33 from UserDict import DictMixin as MutableMapping unknown
36 MutableMapping = collections.MutableMapping variable
123 class DB(MutableMapping):
/external/python/cpython3/Lib/
Dshelve.py66 class _ClosedDict(collections.abc.MutableMapping):
77 class Shelf(collections.abc.MutableMapping):
Dconfigparser.py141 from collections.abc import MutableMapping
560 class RawConfigParser(MutableMapping):
1237 class SectionProxy(MutableMapping):
1307 class ConverterMapping(MutableMapping):
Dweakref.py93 class WeakValueDictionary(_collections_abc.MutableMapping):
354 class WeakKeyDictionary(_collections_abc.MutableMapping):
D_collections_abc.py791 class MutableMapping(Mapping): class
875 MutableMapping.register(dict)
/external/fonttools/Lib/fontTools/ttLib/tables/
D_t_r_a_k.py13 from collections.abc import MutableMapping
125 class TrackData(MutableMapping):
252 class TrackTableEntry(MutableMapping):
/external/python/cpython3/Lib/test/
Dtest_shelve.py5 from collections.abc import MutableMapping
11 class byteskeydict(MutableMapping):
Dtest_typing.py13 from typing import Tuple, List, Dict, MutableMapping
341 self.assertNotEqual(Optional[typing.MutableMapping], Union)
1616 class MyMapping(MutableMapping[str, str]): pass
1621 class MM(MutableMapping[str, str]):
1634 self.assertIsInstance(MM(), collections.abc.MutableMapping)
1635 self.assertIsInstance(MM(), MutableMapping)
1640 class MM1(MutableMapping[str, str], collections.abc.MutableMapping):
1642 class MM2(collections.abc.MutableMapping, MutableMapping[str, str]):
1644 self.assertEqual(MM2.__bases__, (collections.abc.MutableMapping, Generic))
3180 self.assertIsInstance({}, typing.MutableMapping)
[all …]
Dtest_functools.py1841 bases = [c.Sequence, c.MutableMapping, c.Mapping, c.Set]
1844 self.assertEqual(m, [dict, c.MutableMapping, c.Mapping,
1847 bases = [c.Container, c.Mapping, c.MutableMapping, collections.OrderedDict]
1850 self.assertEqual(m, [collections.ChainMap, c.MutableMapping, c.Mapping,
1870 bases = [c.MutableSequence, c.MutableMapping]
1874 collections.defaultdict, dict, c.MutableMapping, c.Mapping,
1912 g.register(c.MutableMapping, lambda obj: "mutablemapping")
2102 @i.register(c.MutableMapping)
2215 c.MutableMapping.register(X) # Will not invalidate the cache,
2244 g.register(c.MutableMapping, lambda arg: "mutablemapping")
/external/fonttools/Lib/fontTools/misc/
DmacRes.py6 from collections.abc import MutableMapping
13 class ResourceReader(MutableMapping):
/external/python/cpython2/Lib/test/
Dtest_ordered_dict.py6 from collections import MutableMapping
77 self.assertIsInstance(OrderedDict(), MutableMapping)
78 self.assertTrue(issubclass(OrderedDict, MutableMapping))
/external/libchrome/third_party/jinja2/
Dsandbox.py82 from collections import MutableSet, MutableMapping, MutableSequence
84 _mutable_mapping_types += (MutableMapping,)
Dutils.py485 from collections import MutableMapping
486 MutableMapping.register(LRUCache)
/external/autotest/utils/
Dlabellib.py31 class LabelsMapping(collections.MutableMapping):
/external/tensorflow/tensorflow/python/util/
Dobject_identity.py122 class ObjectIdentityDictionary(collections_abc.MutableMapping):
/external/tensorflow/tensorflow/python/keras/utils/
Dobject_identity.py121 class ObjectIdentityDictionary(collections_abc.MutableMapping):
/external/python/cpython2/Lib/
D_abcoll.py493 class MutableMapping(Mapping): class
584 MutableMapping.register(dict)
DUserDict.py117 _abcoll.MutableMapping.register(IterableUserDict)
/external/python/cpython3/Lib/collections/
D__init__.py232 update = __update = _collections_abc.MutableMapping.update
246 __ne__ = _collections_abc.MutableMapping.__ne__
911 class ChainMap(_collections_abc.MutableMapping):
1040 class UserDict(_collections_abc.MutableMapping):
/external/python/jinja/src/jinja2/
Dsandbox.py52 abc.MutableMapping,
/external/python/cpython3/Lib/dbm/
Ddumb.py35 class _Database(collections.abc.MutableMapping):

123