Searched refs:KT (Results 1 - 3 of 3) sorted by relevance
/third_party/node/deps/v8/src/parsing/ |
H A D | token.cc | 37 #define KT(a, b, c) \ macro 41 const uint8_t Token::token_flags[] = {TOKEN_LIST(KT, KK)}; 42 #undef KT macro
|
/third_party/python/Lib/test/ |
H A D | test_typing.py | 18 from typing import T, KT, VT # Not in __all__. namespace 440 self.assertEqual(repr(KT), '~KT') 2027 C2 = Callable[[KT, T], VT] 2043 C5 = Callable[[typing.List[T], tuple[KT, T], VT], int] 3584 KT, VT = tp.__args__ 3586 isinstance(k, KT) and isinstance(v, VT) 3693 self.assertEqual(Callable[[T], T][KT], Callable[[KT], KT]) [all...] |
/third_party/python/Lib/ |
H A D | typing.py | 1780 class Mapping(Generic[KT, VT]): 1781 def __getitem__(self, key: KT) -> VT: 1787 def lookup_name(mapping: Mapping[KT, VT], key: KT, default: VT) -> VT: 2656 KT = TypeVar('KT') # Key type. variable
|
Completed in 13 milliseconds