Home
last modified time | relevance | path

Searched refs:allCooked (Results 1 – 9 of 9) sorted by relevance

/external/llvm-project/flang/lib/Parser/
Dmessage.cpp168 void Message::ResolveProvenances(const AllCookedSources &allCooked) { in ResolveProvenances() argument
171 allCooked.GetProvenanceRange(*cb)}) { in ResolveProvenances()
176 attachment->ResolveProvenances(allCooked); in ResolveProvenances()
181 const AllCookedSources &allCooked) const { in GetProvenanceRange()
184 [&](CharBlock cb) { return allCooked.GetProvenanceRange(cb); }, in GetProvenanceRange()
190 void Message::Emit(llvm::raw_ostream &o, const AllCookedSources &allCooked, in Emit() argument
192 std::optional<ProvenanceRange> provenanceRange{GetProvenanceRange(allCooked)}; in Emit()
198 const AllSources &sources{allCooked.allSources()}; in Emit()
209 o, attachment->GetProvenanceRange(allCooked), text, echoSourceLine); in Emit()
294 void Messages::ResolveProvenances(const AllCookedSources &allCooked) { in ResolveProvenances() argument
[all …]
Dinstrumented-parser.cpp67 llvm::raw_ostream &o, const AllCookedSources &allCooked) const { in Dump()
71 Message{at, tagLog.first}.Emit(o, allCooked, true); in Dump()
74 entry.messages.Emit(o, allCooked); in Dump()
Dparsing.cpp20 Parsing::Parsing(AllCookedSources &allCooked) : allCooked_{allCooked} {} in Parsing() argument
Ddebug-parser.cpp21 message.Emit(*out, ustate->allCooked(), true); in Parse()
/external/llvm-project/flang/include/flang/Parser/
Duser-state.h37 UserState(const AllCookedSources &allCooked, in UserState() argument
39 : allCooked_{allCooked}, features_{features} {} in UserState()
41 const AllCookedSources &allCooked() const { return allCooked_; } in allCooked() function
Dparsing.h48 AllCookedSources &allCooked() { return allCooked_; } in allCooked() function
/external/llvm-project/flang/include/flang/Lower/
DBridge.h58 const Fortran::parser::AllCookedSources &allCooked) { in create() argument
59 return LoweringBridge{defaultKinds, intrinsics, allCooked}; in create()
/external/llvm-project/flang/lib/Semantics/
Dsemantics.cpp364 const parser::AllCookedSources &allCooked{context_.allCookedSources()}; in DumpSymbolsSources() local
367 if (auto sourceInfo{allCooked.GetSourcePositionRange(symbol.name())}) { in DumpSymbolsSources()
/external/llvm-project/flang/tools/f18-parse-demo/
Df18-parse-demo.cpp171 parsing.messages().Emit(llvm::errs(), parsing.allCooked()); in CompileFortran()
195 parsing.messages().Emit(llvm::errs(), parsing.allCooked()); in CompileFortran()