Home
last modified time | relevance | path

Searched defs:SourceLocationLike (Results 1 – 3 of 3) sorted by relevance

/petsc/lib/petsc/bin/maint/petsclinter/petsclinter/classes/
H A D_src_pos.py42 …def __init__(self, source_location: SourceLocationLike, tu: Optional[clx.TranslationUnit] = None) …
84 def __lt__(self, other: SourceLocationLike) -> bool:
87 def __ge__(self, other: SourceLocationLike) -> bool:
91 …def cast(cls, other: SourceLocationLike, tu: Optional[clx.TranslationUnit] = None) -> SourceLocati…
205 def as_clang_source_location(cls, other: SourceLocationLike) -> clx.SourceLocation:
298 def __lt__(self, other: Union[SourceRangeLike, SourceLocationLike]) -> bool: argument
316 def __contains__(self, other: Union[SourceRangeLike, SourceLocationLike]) -> bool: argument
384 …def from_locations(cls, left: SourceLocationLike, right: SourceLocationLike, tu: Optional[clx.Tran…
H A D_diag.py437 …ag: str, message: str, location: SourceLocationLike, patch: Optional[Patch] = None, notes: Optiona…
543 def add_note(self, note: str, location: Optional[SourceLocationLike] = None) -> Diagnostic:
/petsc/lib/petsc/bin/maint/petsclinter/petsclinter/
H A D_typing.py69 SourceLocationLike: TypeAlias = Union[clx.SourceLocation, SourceLocation] variable