/third_party/jinja2/ |
H A D | environment.py | 82 ) -> 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 D | loaders.py | 111 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 D | sandbox.py | 57 abc.MutableMapping,
|
H A D | runtime.py | 97 globals: t.Optional[t.MutableMapping[str, t.Any]] = None, 169 globals: t.Optional[t.MutableMapping[str, t.Any]] = None,
|
H A D | utils.py | 420 @abc.MutableMapping.register
|
/third_party/protobuf/python/google/protobuf/internal/ |
H A D | containers.py | 53 # 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 D | shelve.py | 66 class _ClosedDict(collections.abc.MutableMapping): 77 class Shelf(collections.abc.MutableMapping):
|
H A D | configparser.py | 142 from collections.abc import MutableMapping namespace 570 class RawConfigParser(MutableMapping): 1256 class SectionProxy(MutableMapping): 1326 class ConverterMapping(MutableMapping):
|
H A D | weakref.py | 92 class WeakValueDictionary(_collections_abc.MutableMapping): 356 class WeakKeyDictionary(_collections_abc.MutableMapping):
|
H A D | os.py | 664 from _collections_abc import MutableMapping, Mapping namespace 666 class _Environ(MutableMapping):
|
H A D | _collections_abc.py | 23 "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 D | sandbox.py | 82 from collections import MutableSet, MutableMapping, MutableSequence namespace 84 _mutable_mapping_types += (MutableMapping,) 212 `MutableMapping`, and `MutableSequence`.
|
H A D | utils.py | 485 from collections import MutableMapping namespace 486 MutableMapping.register(LRUCache)
|
/third_party/python/Lib/test/ |
H A D | test_shelve.py | 10 from collections.abc import MutableMapping namespace 16 class byteskeydict(MutableMapping):
|
H A D | test_collections.py | 26 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 D | test_ordered_dict.py | 11 from collections.abc import MutableMapping namespace 136 self.assertIsInstance(OrderedDict(), MutableMapping) 137 self.assertTrue(issubclass(OrderedDict, MutableMapping))
|
H A D | test_typing.py | 20 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 D | test_functools.py | 1977 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 D | sandbox.py | 79 _mutable_mapping_types += (abc.MutableMapping,) 236 `MutableMapping`, and `MutableSequence`.
|
H A D | utils.py | 539 abc.MutableMapping.register(LRUCache)
|
/third_party/python/Lib/dbm/ |
H A D | dumb.py | 35 class _Database(collections.abc.MutableMapping):
|
/third_party/skia/third_party/externals/jinja2/ |
H A D | sandbox.py | 79 _mutable_mapping_types += (abc.MutableMapping,) 236 `MutableMapping`, and `MutableSequence`.
|
H A D | utils.py | 539 abc.MutableMapping.register(LRUCache)
|
/third_party/python/Lib/collections/ |
H A D | __init__.py | 215 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 D | os_helper.py | 663 class EnvironmentVarGuard(collections.abc.MutableMapping):
|