HomeSort by: relevance | last modified time | path
    Searched refs:typing (Results 1 - 25 of 55) sorted by relevancy

1 2 3

  /src/external/gpl3/gdb.old/dist/gdb/python/lib/gdb/dap/
typecheck.py 20 import typing
26 base = typing.get_origin(typevar)
29 arg_types = typing.get_args(typevar)
30 if base == collections.abc.Mapping or base == typing.Mapping:
39 elif base == collections.abc.Sequence or base == typing.Sequence:
48 elif base == typing.Union:
56 # The type checker relies on 'typing.get_origin', which was added
57 # in Python 3.8. (It also relies on 'typing.get_args', but that
59 if not hasattr(typing, "get_origin"):
62 hints = typing.get_type_hints(func
    [all...]
locations.py 17 from typing import Optional
frames.py 17 from typing import Dict
evaluate.py 17 from typing import Optional
bt.py 17 from typing import Optional
launch.py 19 from typing import Mapping, Optional, Sequence
  /src/external/gpl3/gdb/dist/gdb/python/lib/gdb/dap/
typecheck.py 20 import typing namespace
26 base = typing.get_origin(typevar)
29 arg_types = typing.get_args(typevar)
30 if base == collections.abc.Mapping or base == typing.Mapping:
39 elif base == collections.abc.Sequence or base == typing.Sequence:
48 elif base == typing.Union:
56 # The type checker relies on 'typing.get_origin', which was added
57 # in Python 3.8. (It also relies on 'typing.get_args', but that
59 if not hasattr(typing, "get_origin"):
62 hints = typing.get_type_hints(func
    [all...]
locations.py 17 from typing import Optional
completions.py 16 from typing import Optional
frames.py 17 from typing import Dict
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.dap/
type_check.py 18 import typing
52 def sequence_type(*, s: typing.Sequence[str]):
66 def map_type(*, m: typing.Mapping[str, int]):
79 def opt_type(*, u: typing.Optional[int]):
91 if hasattr(typing, "get_origin"):
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.dap/
type_check.py 18 import typing namespace
52 def sequence_type(*, s: typing.Sequence[str]):
66 def map_type(*, m: typing.Mapping[str, int]):
79 def opt_type(*, u: typing.Optional[int]):
91 if hasattr(typing, "get_origin"):
  /src/external/apache2/llvm/dist/clang/utils/analyzer/
entrypoint.py 7 from typing import List, Tuple
SATestBenchmark.py 19 from typing import List, Tuple
SATestUtils.py 6 from typing import List, IO, Optional, Tuple
  /src/external/mpl/bind/dist/bin/tests/system/isctest/
template.py 16 from typing import Any
instance.py 15 from typing import NamedTuple
text.py 17 from typing import TextIO
  /src/external/bsd/zstd/dist/tests/cli-tests/
run.py 21 import typing
105 def pop_line(data: bytes) -> typing.Tuple[typing.Optional[bytes], bytes]:
198 env: typing.Dict[str, str],
199 timeout: typing.Optional[int],
288 def _test_environment(self) -> typing.Dict[str, str]:
542 TestSuites = typing.Dict[str, typing.List[str]]
561 tests: typing.List[str], options: Options
  /src/external/gpl3/gcc/dist/contrib/
check-internal-format-escaping.py 26 from typing import Dict, Match
  /src/external/gpl3/gcc.old/dist/contrib/
check-internal-format-escaping.py 26 from typing import Dict, Match
  /src/external/gpl3/gdb.old/dist/gdb/
copyright.py 40 from typing import List, Optional
check-include-guards.py 28 from typing import List
gdbarch_types.py 20 from typing import List, Optional, Tuple, Union
  /src/external/gpl3/gdb/dist/gdb/
copyright.py 42 from typing import Iterable

Completed in 24 milliseconds

1 2 3