HomeSort by: relevance | last modified time | path
    Searched refs:PresumedLoc (Results 1 - 25 of 35) sorted by relevancy

1 2

  /src/external/apache2/llvm/dist/clang/include/clang/Frontend/
TextDiagnostic.h 76 void emitDiagnosticMessage(FullSourceLoc Loc, PresumedLoc PLoc,
81 void emitDiagnosticLoc(FullSourceLoc Loc, PresumedLoc PLoc,
91 void emitIncludeLocation(FullSourceLoc Loc, PresumedLoc PLoc) override;
93 void emitImportLocation(FullSourceLoc Loc, PresumedLoc PLoc,
96 void emitBuildingModuleLocation(FullSourceLoc Loc, PresumedLoc PLoc,
DiagnosticRenderer.h 76 virtual void emitDiagnosticMessage(FullSourceLoc Loc, PresumedLoc PLoc,
82 virtual void emitDiagnosticLoc(FullSourceLoc Loc, PresumedLoc PLoc,
91 virtual void emitIncludeLocation(FullSourceLoc Loc, PresumedLoc PLoc) = 0;
92 virtual void emitImportLocation(FullSourceLoc Loc, PresumedLoc PLoc,
94 virtual void emitBuildingModuleLocation(FullSourceLoc Loc, PresumedLoc PLoc,
104 void emitIncludeStack(FullSourceLoc Loc, PresumedLoc PLoc,
150 void emitIncludeLocation(FullSourceLoc Loc, PresumedLoc PLoc) override;
152 void emitImportLocation(FullSourceLoc Loc, PresumedLoc PLoc,
155 void emitBuildingModuleLocation(FullSourceLoc Loc, PresumedLoc PLoc,
  /src/external/apache2/llvm/dist/clang/lib/Basic/
SourceLocation.cpp 69 PresumedLoc PLoc = SM.getPresumedLoc(*this);
106 static PresumedLoc PrintDifference(raw_ostream &OS, const SourceManager &SM,
107 SourceLocation Loc, PresumedLoc Previous) {
110 PresumedLoc PLoc = SM.getPresumedLoc(Loc);
179 PresumedLoc FullSourceLoc::getPresumedLoc(bool UseLineDirectives) const {
181 return PresumedLoc();
SourceManager.cpp 1251 PresumedLoc PLoc = getPresumedLoc(Loc);
1456 PresumedLoc PLoc = getPresumedLoc(Loc);
1516 PresumedLoc SourceManager::getPresumedLoc(SourceLocation Loc,
1518 if (Loc.isInvalid()) return PresumedLoc();
1526 return PresumedLoc();
1543 return PresumedLoc();
1546 return PresumedLoc();
1582 return PresumedLoc(Filename.data(), FID, LineNo, ColNo, IncludeLoc);
1585 /// Returns whether the PresumedLoc for a given SourceLocation is
  /src/external/apache2/llvm/dist/clang/lib/Index/
FileIndexRecord.cpp 68 PresumedLoc PLoc = SM.getPresumedLoc(Loc);
78 PresumedLoc PLoc = SM.getPresumedLoc(Loc);
  /src/external/apache2/llvm/dist/clang/lib/Frontend/
DiagnosticRenderer.cpp 99 emitDiagnosticMessage(Loc, PresumedLoc(), Level, Message, Ranges, D);
120 PresumedLoc PLoc = Loc.getPresumedLoc(DiagOpts->ShowPresumedLoc);
150 emitDiagnosticMessage(FullSourceLoc(), PresumedLoc(), DiagnosticsEngine::Note,
165 void DiagnosticRenderer::emitIncludeStack(FullSourceLoc Loc, PresumedLoc PLoc,
196 PresumedLoc PLoc = Loc.getPresumedLoc(DiagOpts->ShowPresumedLoc);
237 PresumedLoc PLoc = Loc.getPresumedLoc(DiagOpts->ShowPresumedLoc);
600 PresumedLoc PLoc) {
610 PresumedLoc PLoc,
624 PresumedLoc PLoc,
SerializedDiagnosticPrinter.cpp 68 void emitDiagnosticMessage(FullSourceLoc Loc, PresumedLoc PLoc,
73 void emitDiagnosticLoc(FullSourceLoc Loc, PresumedLoc PLoc,
191 void EmitDiagnosticMessage(FullSourceLoc Loc, PresumedLoc PLoc,
216 void AddLocToRecord(FullSourceLoc Loc, PresumedLoc PLoc,
222 AddLocToRecord(Loc, Loc.hasManager() ? Loc.getPresumedLoc() : PresumedLoc(),
346 void SDiagsWriter::AddLocToRecord(FullSourceLoc Loc, PresumedLoc PLoc,
610 EmitDiagnosticMessage(FullSourceLoc(), PresumedLoc(), DiagLevel,
642 void SDiagsWriter::EmitDiagnosticMessage(FullSourceLoc Loc, PresumedLoc PLoc,
672 FullSourceLoc Loc, PresumedLoc PLoc, DiagnosticsEngine::Level Level,
737 PresumedLoc PLoc = Loc.hasManager() ? Loc.getPresumedLoc() : PresumedLoc()
    [all...]
HeaderIncludeGen.cpp 137 PresumedLoc UserLoc = SM.getPresumedLoc(Loc);
LogDiagnosticPrinter.cpp 145 PresumedLoc PLoc = SM.getPresumedLoc(Info.getLocation());
PrintPreprocessedOutput.cpp 157 PresumedLoc PLoc = SM.getPresumedLoc(Loc);
267 PresumedLoc UserLoc = SourceMgr.getPresumedLoc(Loc);
920 PresumedLoc PLoc = SourceMgr.getPresumedLoc(Tok.getLocation());
FrontendActions.cpp 474 const PresumedLoc DefLoc =
481 const PresumedLoc PoiLoc =
TextDiagnostic.cpp 674 FullSourceLoc Loc, PresumedLoc PLoc, DiagnosticsEngine::Level Level,
794 void TextDiagnostic::emitDiagnosticLoc(FullSourceLoc Loc, PresumedLoc PLoc,
898 void TextDiagnostic::emitIncludeLocation(FullSourceLoc Loc, PresumedLoc PLoc) {
906 void TextDiagnostic::emitImportLocation(FullSourceLoc Loc, PresumedLoc PLoc,
916 PresumedLoc PLoc,
1341 PresumedLoc PLoc = SM.getPresumedLoc(BLoc);
  /src/external/apache2/llvm/dist/clang/tools/libclang/
CIndexInclusionStack.cpp 50 PresumedLoc PLoc = SM.getPresumedLoc(L);
CIndexDiagnostic.cpp 110 void emitDiagnosticMessage(FullSourceLoc Loc, PresumedLoc PLoc,
126 void emitDiagnosticLoc(FullSourceLoc Loc, PresumedLoc PLoc,
CXSourceLocation.cpp 283 PresumedLoc PreLoc = SM.getPresumedLoc(Loc);
  /src/external/apache2/llvm/dist/clang/include/clang/Basic/
JsonSupport.h 91 PresumedLoc PLoc = SM.getPresumedLoc(Loc);
SourceLocation.h 303 /// You can get a PresumedLoc from a SourceLocation with SourceManager.
304 class PresumedLoc {
311 PresumedLoc() = default;
312 PresumedLoc(const char *FN, FileID FID, unsigned Ln, unsigned Co,
393 PresumedLoc getPresumedLoc(bool UseLineDirectives = true) const;
SourceManager.h 1438 PresumedLoc getPresumedLoc(SourceLocation Loc,
1441 /// Returns whether the PresumedLoc for a given SourceLocation is
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
SanitizerMetadata.cpp 93 PresumedLoc PLoc = CGM.getContext().getSourceManager().getPresumedLoc(Loc);
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
AnalyzerStatsChecker.cpp 92 PresumedLoc Loc = SM.getPresumedLoc(D->getLocation());
  /src/external/apache2/llvm/dist/clang/tools/arcmt-test/
arcmt-test.cpp 311 PresumedLoc PL = SM.getPresumedLoc(loc);
323 PresumedLoc PL = SM.getPresumedLoc(range.getBegin());
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Frontend/
AnalysisConsumer.cpp 192 PresumedLoc Loc = SM.getPresumedLoc(D->getLocation());
590 PresumedLoc Loc = Ctx->getSourceManager().getPresumedLoc(D->getLocation());
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
JSONNodeDumper.h 149 void writeIncludeStack(PresumedLoc Loc, bool JustFirst = false);
  /src/external/apache2/llvm/dist/clang/lib/Lex/
PPMacroExpansion.cpp 1506 PresumedLoc PLoc = SourceMgr.getPresumedLoc(Loc);
1515 PresumedLoc PLoc = SourceMgr.getPresumedLoc(Tok.getLocation());
1576 PresumedLoc PLoc = SourceMgr.getPresumedLoc(Tok.getLocation());
  /src/external/apache2/llvm/dist/clang/lib/AST/
JSONNodeDumper.cpp 193 void JSONNodeDumper::writeIncludeStack(PresumedLoc Loc, bool JustFirst) {
212 PresumedLoc Presumed = SM.getPresumedLoc(Loc);

Completed in 32 milliseconds

1 2