Searched refs:FrozenSet (Results 1 - 11 of 11) sorted by relevance
/third_party/mbedtls/scripts/mbedtls_dev/ |
H A D | psa_information.py | 10 from typing import FrozenSet, List, Optional namespace 121 def read_implemented_dependencies(filename: str) -> FrozenSet[str]: 125 _implemented_dependencies = None #type: Optional[FrozenSet[str]] #pylint: disable=invalid-name
|
H A D | crypto_knowledge.py | 12 from typing import FrozenSet, Iterable, List, Optional, Tuple, Dict namespace 480 def permitted_truncations(cls, base: str) -> FrozenSet[int]:
|
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/packaging/ |
H A D | utils.py | 6 from typing import FrozenSet, NewType, Tuple, Union, cast namespace 105 ) -> Tuple[NormalizedName, Version, BuildTag, FrozenSet[Tag]]:
|
H A D | tags.py | 14 FrozenSet, 98 def parse_tag(tag: str) -> FrozenSet[Tag]:
|
/third_party/jinja2/ |
H A D | sandbox.py | 40 _mutable_spec: t.Tuple[t.Tuple[t.Type, t.FrozenSet[str]], ...] = ( 235 intercepted_binops: t.FrozenSet[str] = frozenset() 250 intercepted_unops: t.FrozenSet[str] = frozenset()
|
/third_party/mbedtls/scripts/ |
H A D | code_style.py | 13 from typing import FrozenSet, List, Optional namespace 35 def list_generated_files() -> FrozenSet[str]:
|
/third_party/python/Tools/scripts/ |
H A D | deepfreeze.py | 17 from typing import Dict, FrozenSet, TextIO, Tuple namespace 371 def generate_frozenset(self, name: str, fs: FrozenSet[object]) -> str:
|
/third_party/mbedtls/tests/scripts/ |
H A D | generate_psa_tests.py | 14 from typing import Callable, Dict, FrozenSet, Iterable, Iterator, List, Optional namespace 252 not_deps: FrozenSet[str] = frozenset(),
|
H A D | check_files.py | 22 from typing import FrozenSet, Optional, Pattern # pylint: disable=unused-import namespace 47 suffix_exemptions = frozenset() #type: FrozenSet[str]
|
/third_party/python/Lib/test/ |
H A D | test_typing.py | 3670 self.assertNotEqual(typing.FrozenSet[A[str]], 3671 typing.FrozenSet[mod_generics_cache.B.A[str]]) 3874 typing.DefaultDict, typing.FrozenSet[int]] 5738 self.assertIsSubclass(frozenset, typing.FrozenSet) 5739 self.assertNotIsSubclass(set, typing.FrozenSet) 5887 typing.FrozenSet() 5889 typing.FrozenSet[T]() 5891 typing.FrozenSet[int]() 5895 class MyFrozenSet(typing.FrozenSet[int]): 7959 typing.FrozenSet [all...] |
/third_party/python/Lib/ |
H A D | typing.py | 108 'FrozenSet', 2721 FrozenSet = _alias(frozenset, 1, inst=False, name='FrozenSet') variable
|
Completed in 24 milliseconds