Home
last modified time | relevance | path

Searched refs:Scope (Results 1 – 3 of 3) sorted by relevance

/petsc/lib/petsc/bin/maint/petsclinter/petsclinter/classes/
H A D_scope.py8 class Scope: class
49 children: list[Scope]
56 def __lt__(self, other: Scope) -> bool: argument
57 assert isinstance(other, Scope)
60 def __gt__(self, other: Scope) -> bool: argument
61 assert isinstance(other, Scope)
64 def __le__(self, other: Scope) -> bool: argument
65 assert isinstance(other, Scope)
68 def __ge__(self, other: Scope) -> bool: argument
69 assert isinstance(other, Scope)
[all …]
H A D_linter.py22 from ._scope import Scope
196 …def _check_duplicate_function_calls(self, processed_funcs: dict[str, list[tuple[Cursor, Scope]]]) … argument
240 …l_names: Container[str]) -> Generator[Union[tuple[clx.Cursor, clx.Cursor, Scope], clx.Cursor], Non…
266 …def walk_scope_switch(parent: clx.Cursor, scope: Scope) -> Generator[tuple[clx.Cursor, clx.Cursor,… argument
289 …lk_scope(parent: clx.Cursor, scope: Optional[Scope] = None) -> Generator[tuple[clx.Cursor, clx.Cur… argument
295 scope = Scope()
/petsc/lib/petsc/bin/maint/petsclinter/petsclinter/
H A D_typing.py59 from .classes._scope import Scope