HomeSort by relevance Sort by last modified time
    Searched refs:PLoc (Results 1 - 20 of 20) sorted by null

  /external/clang/include/clang/Frontend/
TextDiagnostic.h 79 virtual void emitDiagnosticMessage(SourceLocation Loc,PresumedLoc PLoc,
86 virtual void emitDiagnosticLoc(SourceLocation Loc, PresumedLoc PLoc,
101 virtual void emitIncludeLocation(SourceLocation Loc, PresumedLoc PLoc,
104 virtual void emitImportLocation(SourceLocation Loc, PresumedLoc PLoc,
108 virtual void emitBuildingModuleLocation(SourceLocation Loc, PresumedLoc PLoc,
DiagnosticRenderer.h 75 virtual void emitDiagnosticMessage(SourceLocation Loc, PresumedLoc PLoc,
82 virtual void emitDiagnosticLoc(SourceLocation Loc, PresumedLoc PLoc,
95 virtual void emitIncludeLocation(SourceLocation Loc, PresumedLoc PLoc,
97 virtual void emitImportLocation(SourceLocation Loc, PresumedLoc PLoc,
100 virtual void emitBuildingModuleLocation(SourceLocation Loc, PresumedLoc PLoc,
111 void emitIncludeStack(SourceLocation Loc, PresumedLoc PLoc,
165 PresumedLoc PLoc,
168 virtual void emitImportLocation(SourceLocation Loc, PresumedLoc PLoc,
172 virtual void emitBuildingModuleLocation(SourceLocation Loc, PresumedLoc PLoc,
  /external/clang/tools/libclang/
CIndexInclusionStack.cpp 60 PresumedLoc PLoc = SM.getPresumedLoc(L);
62 L = PLoc.isValid()? PLoc.getIncludeLoc() : SourceLocation();
CIndexDiagnostic.cpp 113 virtual void emitDiagnosticMessage(SourceLocation Loc, PresumedLoc PLoc,
131 virtual void emitDiagnosticLoc(SourceLocation Loc, PresumedLoc PLoc,
  /external/clang/lib/Frontend/
DiagnosticRenderer.cpp 159 PresumedLoc PLoc = SM->getPresumedLoc(Loc, DiagOpts->ShowPresumedLoc);
163 emitIncludeStack(Loc, PLoc, Level, *SM);
166 emitDiagnosticMessage(Loc, PLoc, Level, Message, Ranges, SM, D);
202 /// \param PLoc The presumed location of the diagnostic location.
205 PresumedLoc PLoc,
208 SourceLocation IncludeLoc = PLoc.getIncludeLoc();
236 PresumedLoc PLoc = SM.getPresumedLoc(Loc, DiagOpts->ShowPresumedLoc);
237 if (PLoc.isInvalid())
251 emitIncludeStackRecursively(PLoc.getIncludeLoc(), SM);
254 emitIncludeLocation(Loc, PLoc, SM)
    [all...]
SerializedDiagnosticPrinter.cpp 63 PresumedLoc PLoc,
70 virtual void emitDiagnosticLoc(SourceLocation Loc, PresumedLoc PLoc,
139 PresumedLoc PLoc,
165 PresumedLoc PLoc, RecordDataImpl &Record,
288 PresumedLoc PLoc,
291 if (PLoc.isInvalid()) {
300 Record.push_back(getEmitFile(PLoc.getFilename()));
301 Record.push_back(PLoc.getLine());
302 Record.push_back(PLoc.getColumn()+TokSize);
574 PresumedLoc PLoc,
    [all...]
TextDiagnostic.cpp 677 PresumedLoc PLoc,
687 emitDiagnosticLoc(Loc, PLoc, Level, Ranges, *SM);
766 void TextDiagnostic::emitDiagnosticLoc(SourceLocation Loc, PresumedLoc PLoc,
770 if (PLoc.isInvalid()) {
787 unsigned LineNo = PLoc.getLine();
795 OS << PLoc.getFilename();
804 if (unsigned ColNo = PLoc.getColumn()) {
875 PresumedLoc PLoc,
878 OS << "In file included from " << PLoc.getFilename() << ':'
879 << PLoc.getLine() << ":\n"
    [all...]
PrintPreprocessedOutput.cpp 147 PresumedLoc PLoc = SM.getPresumedLoc(Loc);
148 if (PLoc.isInvalid())
150 return MoveToLine(PLoc.getLine()) || (PLoc.getLine() == 1);
657 PresumedLoc PLoc = SourceMgr.getPresumedLoc(Tok.getLocation());
658 if (PLoc.isInvalid())
661 if (strcmp(PLoc.getFilename(), "<built-in>"))
  /external/clang/lib/Basic/
SourceLocation.cpp 45 PresumedLoc PLoc = SM.getPresumedLoc(*this);
47 if (PLoc.isInvalid()) {
52 OS << PLoc.getFilename() << ':' << PLoc.getLine()
53 << ':' << PLoc.getColumn();
  /external/clang/lib/Lex/
PPMacroExpansion.cpp     [all...]
Pragma.cpp 423 PresumedLoc PLoc = SourceMgr.getPresumedLoc(SysHeaderTok.getLocation());
424 if (PLoc.isInvalid())
427 unsigned FilenameID = SourceMgr.getLineTableFilenameID(PLoc.getFilename());
437 SourceMgr.AddLineNote(SysHeaderTok.getLocation(), PLoc.getLine(), FilenameID,
    [all...]
PPDirectives.cpp     [all...]
  /external/clang/lib/AST/
ASTDumper.cpp 386 PresumedLoc PLoc = SM->getPresumedLoc(SpellingLoc);
388 if (PLoc.isInvalid()) {
393 if (strcmp(PLoc.getFilename(), LastLocFilename) != 0) {
394 OS << PLoc.getFilename() << ':' << PLoc.getLine()
395 << ':' << PLoc.getColumn();
396 LastLocFilename = PLoc.getFilename();
397 LastLocLine = PLoc.getLine();
398 } else if (PLoc.getLine() != LastLocLine) {
399 OS << "line" << ':' << PLoc.getLine(
    [all...]
TypePrinter.cpp 883 PresumedLoc PLoc = D->getASTContext().getSourceManager().getPresumedLoc(
885 if (PLoc.isValid()) {
886 OS << " at " << PLoc.getFilename()
887 << ':' << PLoc.getLine()
888 << ':' << PLoc.getColumn();
    [all...]
  /frameworks/compile/slang/
slang_rs.cpp 263 clang::PresumedLoc PLoc = SourceMgr.getPresumedLoc(FSL);
265 const char *Filename = PLoc.getFilename();
  /external/clang/lib/CodeGen/
CGDebugInfo.cpp 226 PresumedLoc PLoc = SM.getPresumedLoc(Loc);
228 if (PLoc.isInvalid() || StringRef(PLoc.getFilename()).empty())
233 const char *fname = PLoc.getFilename();
243 llvm::DIFile F = DBuilder.createFile(PLoc.getFilename(), getCurrentDirname());
260 PresumedLoc PLoc = SM.getPresumedLoc(Loc.isValid() ? Loc : CurLoc);
261 return PLoc.isValid()? PLoc.getLine() : 0;
274 PresumedLoc PLoc = SM.getPresumedLoc(Loc.isValid() ? Loc : CurLoc);
275 return PLoc.isValid()? PLoc.getColumn() : 0
    [all...]
CodeGenModule.cpp     [all...]
CGExpr.cpp     [all...]
  /external/clang/lib/Rewrite/Frontend/
RewriteModernObjC.cpp     [all...]
  /external/clang/include/clang/Sema/
Sema.h     [all...]

Completed in 614 milliseconds