Home
last modified time | relevance | path

Searched refs:MutableMapping (Results 1 - 25 of 31) sorted by relevance

12

/third_party/jinja2/
H A Denvironment.py82 ) -> t.Optional[t.MutableMapping[t.Tuple[weakref.ref, str], "Template"]]:
94 cache: t.Optional[t.MutableMapping],
95 ) -> t.Optional[t.MutableMapping[t.Tuple[weakref.ref, str], "Template"]]:
952 self, name: str, globals: t.Optional[t.MutableMapping[str, t.Any]]
980 globals: t.Optional[t.MutableMapping[str, t.Any]] = None,
1017 globals: t.Optional[t.MutableMapping[str, t.Any]] = None,
1073 globals: t.Optional[t.MutableMapping[str, t.Any]] = None,
1089 globals: t.Optional[t.MutableMapping[str, t.Any]] = None,
1108 self, d: t.Optional[t.MutableMapping[str, t.Any]]
1109 ) -> t.MutableMapping[st
[all...]
H A Dloaders.py111 globals: t.Optional[t.MutableMapping[str, t.Any]] = None,
518 globals: t.Optional[t.MutableMapping[str, t.Any]] = None,
568 globals: t.Optional[t.MutableMapping[str, t.Any]] = None,
640 globals: t.Optional[t.MutableMapping[str, t.Any]] = None,
H A Dsandbox.py57 abc.MutableMapping,
H A Druntime.py97 globals: t.Optional[t.MutableMapping[str, t.Any]] = None,
169 globals: t.Optional[t.MutableMapping[str, t.Any]] = None,
H A Dutils.py420 @abc.MutableMapping.register
/third_party/protobuf/python/google/protobuf/internal/
H A Dcontainers.py53 # We would use collections_abc.MutableMapping all the time, but in Python 2
63 # So this is the Python 2.7 definition of Mapping/MutableMapping functions
121 class MutableMapping(Mapping): class
182 collections_abc.MutableMapping.register(MutableMapping)
185 # In Python 3 we can just use MutableMapping directly, because it defines
187 MutableMapping = collections_abc.MutableMapping variable
458 class ScalarMap(MutableMapping):
548 class MessageMap(MutableMapping)
[all...]
/third_party/python/Lib/
H A Dshelve.py66 class _ClosedDict(collections.abc.MutableMapping):
77 class Shelf(collections.abc.MutableMapping):
H A Dconfigparser.py142 from collections.abc import MutableMapping namespace
570 class RawConfigParser(MutableMapping):
1256 class SectionProxy(MutableMapping):
1326 class ConverterMapping(MutableMapping):
H A Dweakref.py92 class WeakValueDictionary(_collections_abc.MutableMapping):
356 class WeakKeyDictionary(_collections_abc.MutableMapping):
H A Dos.py664 from _collections_abc import MutableMapping, Mapping namespace
666 class _Environ(MutableMapping):
H A D_collections_abc.py23 "Mapping", "MutableMapping",
30 # speed up interpreter startup. Some of the types such as MutableMapping are
886 class MutableMapping(Mapping): class
887 """A MutableMapping is a generic container for associating
968 MutableMapping.register(dict)
/third_party/node/tools/inspector_protocol/jinja2/
H A Dsandbox.py82 from collections import MutableSet, MutableMapping, MutableSequence namespace
84 _mutable_mapping_types += (MutableMapping,)
212 `MutableMapping`, and `MutableSequence`.
H A Dutils.py485 from collections import MutableMapping namespace
486 MutableMapping.register(LRUCache)
/third_party/python/Lib/test/
H A Dtest_shelve.py10 from collections.abc import MutableMapping namespace
16 class byteskeydict(MutableMapping):
H A Dtest_collections.py26 from collections.abc import Mapping, MutableMapping, KeysView, ItemsView, ValuesView namespace
1015 # Check also Mapping, MutableMapping, and Sequence
1018 self.assertFalse(issubclass(MutableMapping, Reversible), repr(MutableMapping))
1070 # Check also Mapping, MutableMapping, etc.
1073 self.assertTrue(issubclass(MutableMapping, Collection),
1074 repr(MutableMapping))
1854 self.assertIsInstance(sample(), MutableMapping)
1855 self.assertTrue(issubclass(sample, MutableMapping))
1856 self.validate_abstract_methods(MutableMapping, '__contains_
[all...]
H A Dtest_ordered_dict.py11 from collections.abc import MutableMapping namespace
136 self.assertIsInstance(OrderedDict(), MutableMapping)
137 self.assertTrue(issubclass(OrderedDict, MutableMapping))
H A Dtest_typing.py20 from typing import Tuple, List, Dict, MutableMapping namespace
1776 self.assertNotEqual(Optional[typing.MutableMapping], Union)
3543 class MyMapping(MutableMapping[str, str]): pass
3548 class MM(MutableMapping[str, str]):
3561 self.assertIsInstance(MM(), collections.abc.MutableMapping)
3562 self.assertIsInstance(MM(), MutableMapping)
3567 class MM1(MutableMapping[str, str], collections.abc.MutableMapping):
3569 class MM2(collections.abc.MutableMapping, MutableMapping[st
[all...]
H A Dtest_functools.py1977 bases = [c.Sequence, c.MutableMapping, c.Mapping, c.Set]
1980 self.assertEqual(m, [dict, c.MutableMapping, c.Mapping,
1983 bases = [c.Container, c.Mapping, c.MutableMapping, collections.OrderedDict]
1986 self.assertEqual(m, [collections.ChainMap, c.MutableMapping, c.Mapping,
2001 # precedes MutableMapping which means single dispatch will always
2006 bases = [c.MutableSequence, c.MutableMapping]
2010 collections.defaultdict, dict, c.MutableMapping, c.Mapping,
2048 g.register(c.MutableMapping, lambda obj: "mutablemapping")
2219 # Even though Sized and Container are explicit bases of MutableMapping,
2221 # MutableMapping'
[all...]
/third_party/node/deps/v8/third_party/jinja2/
H A Dsandbox.py79 _mutable_mapping_types += (abc.MutableMapping,)
236 `MutableMapping`, and `MutableSequence`.
H A Dutils.py539 abc.MutableMapping.register(LRUCache)
/third_party/python/Lib/dbm/
H A Ddumb.py35 class _Database(collections.abc.MutableMapping):
/third_party/skia/third_party/externals/jinja2/
H A Dsandbox.py79 _mutable_mapping_types += (abc.MutableMapping,)
236 `MutableMapping`, and `MutableSequence`.
H A Dutils.py539 abc.MutableMapping.register(LRUCache)
/third_party/python/Lib/collections/
H A D__init__.py215 update = __update = _collections_abc.MutableMapping.update
229 __ne__ = _collections_abc.MutableMapping.__ne__
974 class ChainMap(_collections_abc.MutableMapping):
1106 class UserDict(_collections_abc.MutableMapping):
1139 # Now, add the methods in dicts but not in MutableMapping
/third_party/python/Lib/test/support/
H A Dos_helper.py663 class EnvironmentVarGuard(collections.abc.MutableMapping):

Completed in 39 milliseconds

12