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,
135 PresumedLoc PLoc,
161 PresumedLoc PLoc, RecordDataImpl &Record,
284 PresumedLoc PLoc,
287 if (PLoc.isInvalid()) {
296 Record.push_back(getEmitFile(PLoc.getFilename()));
297 Record.push_back(PLoc.getLine());
298 Record.push_back(PLoc.getColumn()+TokSize);
570 PresumedLoc PLoc,
    [all...]
TextDiagnostic.cpp 681 PresumedLoc PLoc,
691 emitDiagnosticLoc(Loc, PLoc, Level, Ranges, *SM);
770 void TextDiagnostic::emitDiagnosticLoc(SourceLocation Loc, PresumedLoc PLoc,
774 if (PLoc.isInvalid()) {
788 unsigned LineNo = PLoc.getLine();
796 OS << PLoc.getFilename();
805 if (unsigned ColNo = PLoc.getColumn()) {
876 PresumedLoc PLoc,
879 OS << "In file included from " << PLoc.getFilename() << ':'
880 << PLoc.getLine() << ":\n"
    [all...]
PrintPreprocessedOutput.cpp 162 PresumedLoc PLoc = SM.getPresumedLoc(Loc);
163 if (PLoc.isInvalid())
165 return MoveToLine(PLoc.getLine()) || (PLoc.getLine() == 1);
735 PresumedLoc PLoc = SourceMgr.getPresumedLoc(Tok.getLocation());
736 if (PLoc.isInvalid())
739 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 428 PresumedLoc PLoc = SourceMgr.getPresumedLoc(SysHeaderTok.getLocation());
429 if (PLoc.isInvalid())
432 unsigned FilenameID = SourceMgr.getLineTableFilenameID(PLoc.getFilename());
442 SourceMgr.AddLineNote(SysHeaderTok.getLocation(), PLoc.getLine()+1,
    [all...]
PPDirectives.cpp     [all...]
  /external/clang/lib/AST/
ASTDumper.cpp 392 PresumedLoc PLoc = SM->getPresumedLoc(SpellingLoc);
394 if (PLoc.isInvalid()) {
399 if (strcmp(PLoc.getFilename(), LastLocFilename) != 0) {
400 OS << PLoc.getFilename() << ':' << PLoc.getLine()
401 << ':' << PLoc.getColumn();
402 LastLocFilename = PLoc.getFilename();
403 LastLocLine = PLoc.getLine();
404 } else if (PLoc.getLine() != LastLocLine) {
405 OS << "line" << ':' << PLoc.getLine(
    [all...]
TypePrinter.cpp 897 PresumedLoc PLoc = D->getASTContext().getSourceManager().getPresumedLoc(
899 if (PLoc.isValid()) {
900 OS << " at " << PLoc.getFilename()
901 << ':' << PLoc.getLine()
902 << ':' << PLoc.getColumn();
    [all...]
  /frameworks/compile/slang/
slang_rs.cpp 259 clang::PresumedLoc PLoc = SourceMgr.getPresumedLoc(FSL);
261 const char *Filename = PLoc.getFilename();
  /external/clang/lib/CodeGen/
CGDebugInfo.cpp 276 PresumedLoc PLoc = SM.getPresumedLoc(Loc);
278 if (PLoc.isInvalid() || StringRef(PLoc.getFilename()).empty())
283 const char *fname = PLoc.getFilename();
293 llvm::DIFile F = DBuilder.createFile(PLoc.getFilename(), getCurrentDirname());
310 PresumedLoc PLoc = SM.getPresumedLoc(Loc.isValid() ? Loc : CurLoc);
311 return PLoc.isValid()? PLoc.getLine() : 0;
324 PresumedLoc PLoc = SM.getPresumedLoc(Loc.isValid() ? Loc : CurLoc);
325 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 102 milliseconds