/third_party/python/Lib/importlib/resources/ |
H A D | _itertools.py | 9 TypeVar, 14 _T = TypeVar('_T') 15 _U = TypeVar('_U')
|
/third_party/python/Lib/test/ |
H A D | test_typing.py | 17 from typing import TypeVar, TypeVarTuple, Unpack, AnyStr namespace 362 T = TypeVar('T') 365 # T is an instance of TypeVar 366 self.assertIsInstance(T, TypeVar) 374 T_bound = TypeVar('T_bound', bound=int) 379 T_constraints = TypeVar('T_constraints', int, str) 384 T_co = TypeVar('T_co', covariant=True) 389 T_contra = TypeVar('T_contra', contravariant=True) 395 T = TypeVar('T') 400 T = TypeVar(' [all...] |
H A D | mod_generics_cache.py | 3 from typing import TypeVar, Generic, Optional namespace 8 T = TypeVar('T')
|
H A D | _typed_dict_helper.py | 16 from typing import Annotated, Generic, Optional, Required, TypedDict, TypeVar namespace 24 T = TypeVar("T")
|
H A D | test_types.py | 18 T = typing.TypeVar("T") 738 T = typing.TypeVar('T') 784 TV = typing.TypeVar('T') 814 typing.Hashable, typing.TypeVar('T')) 821 T = typing.TypeVar("T") 822 S = typing.TypeVar("S") 837 T = typing.TypeVar('T') 838 S = typing.TypeVar('S') 879 T = typing.TypeVar("T") 885 T = typing.TypeVar(' [all...] |
H A D | test_genericalias.py | 53 from typing import TypeVar namespace 54 T = TypeVar('T') 55 K = TypeVar('K') 56 V = TypeVar('V')
|
H A D | test_dataclasses.py | 17 from typing import ClassVar, Any, List, Union, Tuple, Dict, Generic, TypeVar, Optional, Protocol namespace 1996 T = TypeVar('T') 2011 S = TypeVar('S') 2012 T = TypeVar('T') 2034 T = TypeVar('T')
|
H A D | test_pydoc.py | 1085 T = typing.TypeVar('T')
|
/third_party/python/Lib/importlib/metadata/ |
H A D | _meta.py | 1 from typing import Any, Dict, Iterator, List, Protocol, TypeVar, Union namespace 4 _T = TypeVar("_T")
|
/third_party/mbedtls/scripts/mbedtls_dev/ |
H A D | test_data_generation.py | 31 from typing import Callable, Dict, Iterable, Iterator, List, Type, TypeVar namespace 36 T = TypeVar('T') #pylint: disable=invalid-name
|
H A D | bignum_common.py | 8 from typing import Iterator, List, Tuple, TypeVar, Any namespace 17 T = TypeVar('T') #pylint: disable=invalid-name
|
/third_party/python/Tools/peg_generator/pegen/ |
H A D | parser.py | 8 from typing import Any, Callable, ClassVar, Dict, Optional, Tuple, Type, TypeVar, cast namespace 12 T = TypeVar("T") 13 P = TypeVar("P", bound="Parser") 14 F = TypeVar("F", bound=Callable[..., Any])
|
/third_party/jinja2/ |
H A D | async_utils.py | 9 V = t.TypeVar("V")
|
H A D | sandbox.py | 20 F = t.TypeVar("F", bound=t.Callable[..., t.Any])
|
H A D | filters.py | 41 F = t.TypeVar("F", bound=t.Callable[..., t.Any]) 42 K = t.TypeVar("K") 43 V = t.TypeVar("V")
|
H A D | runtime.py | 26 V = t.TypeVar("V") 27 F = t.TypeVar("F", bound=t.Callable[..., t.Any])
|
H A D | utils.py | 19 F = t.TypeVar("F", bound=t.Callable[..., t.Any])
|
H A D | parser.py | 15 _ImportInclude = t.TypeVar("_ImportInclude", nodes.Import, nodes.Include) 16 _MacroCall = t.TypeVar("_MacroCall", nodes.Macro, nodes.CallBlock)
|
H A D | nodes.py | 18 _NodeBound = t.TypeVar("_NodeBound", bound="Node")
|
H A D | environment.py | 62 _env_bound = t.TypeVar("_env_bound", bound="Environment")
|
/third_party/python/Lib/ |
H A D | typing.py | 13 TypeVar, ParamSpec, TypeVarTuple. 59 'TypeVar', 920 return isinstance(x, (TypeVar, ParamSpec)) or _is_unpacked_typevartuple(x) 933 This is used by TypeVar and ParamSpec, which both employ the notions of 967 class TypeVar(_Final, _Immutable, _BoundVarianceMixin, _PickleUsingNameMixin, 973 T = TypeVar('T') # Can be anything 974 A = TypeVar('A', str, bytes) # Must be str or bytes 1020 msg = "TypeVar(name, constraint, ...): constraints must be types." 1042 Just as a TypeVar (type variable) is a placeholder for a single type, 1178 T = TypeVar(' 968 _root=True): global() class [all...] |
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/packaging/ |
H A D | specifiers.py | 22 TypeVar, 30 UnparsedVersionVar = TypeVar("UnparsedVersionVar", bound=UnparsedVersion)
|
H A D | metadata.py | 23 T = typing.TypeVar("T")
|
/third_party/markupsafe/ |
H A D | __init__.py | 285 _ListOrDict = t.TypeVar("_ListOrDict", list, dict)
|
/third_party/mesa3d/bin/pick/ |
H A D | ui.py | 34 WidgetType = typing.TypeVar('WidgetType', bound=urwid.Widget)
|