Lines Matching refs:AllSources

126     const AllSources &allSources) const {  in Invert()
148 AllSources::AllSources() : range_{1, 1} { in AllSources() function in Fortran::parser::AllSources
155 AllSources::~AllSources() {} in ~AllSources()
157 const char &AllSources::operator[](Provenance at) const { in operator []()
162 void AllSources::ClearSearchPath() { searchPath_.clear(); } in ClearSearchPath()
164 void AllSources::AppendSearchPathDirectory(std::string directory) { in AppendSearchPathDirectory()
169 const SourceFile *AllSources::Open(std::string path, llvm::raw_ostream &error, in Open()
192 const SourceFile *AllSources::ReadStandardInput(llvm::raw_ostream &error) { in ReadStandardInput()
200 ProvenanceRange AllSources::AddIncludedFile( in AddIncludedFile()
209 ProvenanceRange AllSources::AddMacroCall( in AddMacroCall()
218 ProvenanceRange AllSources::AddCompilerInsertion(std::string text) { in AddCompilerInsertion()
226 void AllSources::EmitMessage(llvm::raw_ostream &o, in EmitMessage()
294 const SourceFile *AllSources::GetSourceFile( in GetSourceFile()
318 const char *AllSources::GetSource(ProvenanceRange range) const { in GetSource()
326 std::optional<SourcePosition> AllSources::GetSourcePosition( in GetSourcePosition()
345 std::optional<ProvenanceRange> AllSources::GetFirstFileProvenance() const { in GetFirstFileProvenance()
354 std::string AllSources::GetPath(Provenance at) const { in GetPath()
359 int AllSources::GetLineNumber(Provenance at) const { in GetLineNumber()
365 Provenance AllSources::CompilerInsertionProvenance(char ch) { in CompilerInsertionProvenance()
376 ProvenanceRange AllSources::IntersectionWithSourceFiles( in IntersectionWithSourceFiles()
392 AllSources::Origin::Origin(ProvenanceRange r, const SourceFile &source) in Origin()
394 AllSources::Origin::Origin(ProvenanceRange r, const SourceFile &included, in Origin()
397 AllSources::Origin::Origin(ProvenanceRange r, ProvenanceRange def, in Origin()
400 AllSources::Origin::Origin(ProvenanceRange r, const std::string &text) in Origin()
403 const char &AllSources::Origin::operator[](std::size_t n) const { in operator []()
417 const AllSources::Origin &AllSources::MapToOrigin(Provenance at) const { in MapToOrigin()
473 AllSources &allSources) { in CompileProvenanceRangeToOffsetMappings()
507 llvm::raw_ostream &AllSources::Dump(llvm::raw_ostream &o) const { in Dump()
550 AllCookedSources::AllCookedSources(AllSources &s) : allSources_{s} {} in AllCookedSources()