Home
last modified time | relevance | path

Searched refs:from_locations (Results 1 – 7 of 7) sorted by relevance

/petsc/lib/petsc/bin/maint/petsclinter/petsclinter/classes/
H A D_src_pos.py168 return func(SourceRange.from_locations(self, right), *args, **kwargs)
384 …def from_locations(cls, left: SourceLocationLike, right: SourceLocationLike, tu: Optional[clx.Tran… member in SourceRange
412 return cls(clx.SourceRange.from_locations(as_clang_sl(left), as_clang_sl(right)), tu=tu)
440 return cls(clx.SourceRange.from_locations(begin, end), tu=tu)
498 return cls.from_locations(start, end, tu=tu)
H A D_linter.py229 patch = Patch(SourceRange.from_locations(start, end), '')
648 patch=Patch(SourceRange.from_locations(start, start), 'static ')
H A D_cursor.py525 extent = SourceRange.from_locations(begin, fnline)
/petsc/lib/petsc/bin/maint/petsclinter/petsclinter/checks/
H A D_util.py462 line_range = SourceRange.from_locations(line_start, line_end).source_range
/petsc/lib/petsc/bin/maint/petsclinter/petsclinter/classes/docs/
H A D_doc_str.py970 floc = SourceRange.from_locations(self.make_source_location(end_line, 1), cursor_start)
H A D_doc_section_base.py332 self.extent = SourceRange.from_locations(self.lines()[0][0].start, self.lines()[-1][0].end)
H A D_doc_section.py513 … crange=SourceRange.from_locations(arg_cursors[0].extent.start, arg_cursors[-1].extent.end)