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

  /external/clang/include/clang/Frontend/
TextDiagnostic.h 78 void emitDiagnosticMessage(SourceLocation Loc,PresumedLoc PLoc,
85 void emitDiagnosticLoc(SourceLocation Loc, PresumedLoc PLoc,
98 void emitIncludeLocation(SourceLocation Loc, PresumedLoc PLoc,
101 void emitImportLocation(SourceLocation Loc, PresumedLoc PLoc,
105 void emitBuildingModuleLocation(SourceLocation Loc, PresumedLoc PLoc,
DiagnosticRenderer.h 75 virtual void emitDiagnosticMessage(SourceLocation Loc, PresumedLoc PLoc,
82 virtual void emitDiagnosticLoc(SourceLocation Loc, PresumedLoc PLoc,
93 virtual void emitIncludeLocation(SourceLocation Loc, PresumedLoc PLoc,
95 virtual void emitImportLocation(SourceLocation Loc, PresumedLoc PLoc,
98 virtual void emitBuildingModuleLocation(SourceLocation Loc, PresumedLoc PLoc,
110 void emitIncludeStack(SourceLocation Loc, PresumedLoc PLoc,
163 void emitIncludeLocation(SourceLocation Loc, PresumedLoc PLoc,
166 void emitImportLocation(SourceLocation Loc, PresumedLoc PLoc,
170 void emitBuildingModuleLocation(SourceLocation Loc, PresumedLoc PLoc,
  /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();
SourceManager.cpp     [all...]
  /external/clang/tools/libclang/
CIndexInclusionStack.cpp 54 PresumedLoc PLoc = SM.getPresumedLoc(L);
56 L = PLoc.isValid()? PLoc.getIncludeLoc() : SourceLocation();
CIndexDiagnostic.cpp 115 void emitDiagnosticMessage(SourceLocation Loc, PresumedLoc PLoc,
133 void emitDiagnosticLoc(SourceLocation Loc, PresumedLoc PLoc,
  /external/clang/lib/Frontend/
DiagnosticRenderer.cpp 117 PresumedLoc PLoc = SM->getPresumedLoc(Loc, DiagOpts->ShowPresumedLoc);
121 emitIncludeStack(Loc, PLoc, Level, *SM);
124 emitDiagnosticMessage(Loc, PLoc, Level, Message, Ranges, SM, D);
164 /// \param PLoc The presumed location of the diagnostic location.
167 PresumedLoc PLoc,
171 PLoc.isInvalid() ? SourceLocation() : PLoc.getIncludeLoc();
199 PresumedLoc PLoc = SM.getPresumedLoc(Loc, DiagOpts->ShowPresumedLoc);
200 if (PLoc.isInvalid())
214 emitIncludeStackRecursively(PLoc.getIncludeLoc(), SM)
    [all...]
LogDiagnosticPrinter.cpp 145 PresumedLoc PLoc = SM.getPresumedLoc(Info.getLocation());
147 if (PLoc.isInvalid()) {
156 DE.Filename = PLoc.getFilename();
157 DE.Line = PLoc.getLine();
158 DE.Column = PLoc.getColumn();
SerializedDiagnosticPrinter.cpp 70 PresumedLoc PLoc,
77 void emitDiagnosticLoc(SourceLocation Loc, PresumedLoc PLoc,
200 PresumedLoc PLoc,
228 PresumedLoc PLoc, RecordDataImpl &Record,
358 PresumedLoc PLoc,
361 if (PLoc.isInvalid()) {
370 Record.push_back(getEmitFile(PLoc.getFilename()));
371 Record.push_back(PLoc.getLine());
372 Record.push_back(PLoc.getColumn()+TokSize);
648 PresumedLoc PLoc,
    [all...]
TextDiagnostic.cpp 676 PresumedLoc PLoc,
686 emitDiagnosticLoc(Loc, PLoc, Level, Ranges, *SM);
773 void TextDiagnostic::emitDiagnosticLoc(SourceLocation Loc, PresumedLoc PLoc,
777 if (PLoc.isInvalid()) {
791 unsigned LineNo = PLoc.getLine();
799 OS << PLoc.getFilename();
808 if (unsigned ColNo = PLoc.getColumn()) {
884 PresumedLoc PLoc,
886 if (DiagOpts->ShowLocation && PLoc.isValid())
887 OS << "In file included from " << PLoc.getFilename() << ':
    [all...]
PrintPreprocessedOutput.cpp 150 PresumedLoc PLoc = SM.getPresumedLoc(Loc);
151 if (PLoc.isInvalid())
153 return MoveToLine(PLoc.getLine()) || (PLoc.getLine() == 1);
794 PresumedLoc PLoc = SourceMgr.getPresumedLoc(Tok.getLocation());
795 if (PLoc.isInvalid())
798 if (strcmp(PLoc.getFilename(), "<built-in>"))
  /external/clang/lib/CodeGen/
SanitizerMetadata.cpp 83 PresumedLoc PLoc = CGM.getContext().getSourceManager().getPresumedLoc(Loc);
84 if (!PLoc.isValid())
88 llvm::MDString::get(VMContext, PLoc.getFilename()),
90 llvm::Type::getInt32Ty(VMContext), PLoc.getLine())),
92 llvm::Type::getInt32Ty(VMContext), PLoc.getColumn())),
CGDebugInfo.cpp 319 PresumedLoc PLoc = SM.getPresumedLoc(Loc);
321 if (PLoc.isInvalid() || StringRef(PLoc.getFilename()).empty())
327 const char *fname = PLoc.getFilename();
336 llvm::DIFile *F = DBuilder.createFile(remapDIPath(PLoc.getFilename()),
359 PresumedLoc PLoc = SM.getPresumedLoc(Loc.isValid() ? Loc : CurLoc);
360 return PLoc.isValid() ? PLoc.getLine() : 0;
372 PresumedLoc PLoc = SM.getPresumedLoc(Loc.isValid() ? Loc : CurLoc);
373 return PLoc.isValid() ? PLoc.getColumn() : 0
    [all...]
CodeGenModule.cpp     [all...]
CGOpenMPRuntime.cpp     [all...]
CGExpr.cpp     [all...]
  /external/clang/lib/Lex/
PPMacroExpansion.cpp     [all...]
Pragma.cpp 433 PresumedLoc PLoc = SourceMgr.getPresumedLoc(SysHeaderTok.getLocation());
434 if (PLoc.isInvalid())
437 unsigned FilenameID = SourceMgr.getLineTableFilenameID(PLoc.getFilename());
447 SourceMgr.AddLineNote(SysHeaderTok.getLocation(), PLoc.getLine()+1,
    [all...]
PPDirectives.cpp     [all...]
  /external/clang/lib/AST/
ASTDumper.cpp 597 PresumedLoc PLoc = SM->getPresumedLoc(SpellingLoc);
599 if (PLoc.isInvalid()) {
604 if (strcmp(PLoc.getFilename(), LastLocFilename) != 0) {
605 OS << PLoc.getFilename() << ':' << PLoc.getLine()
606 << ':' << PLoc.getColumn();
607 LastLocFilename = PLoc.getFilename();
608 LastLocLine = PLoc.getLine();
609 } else if (PLoc.getLine() != LastLocLine) {
610 OS << "line" << ':' << PLoc.getLine(
    [all...]
TypePrinter.cpp     [all...]
  /external/clang/lib/Frontend/Rewrite/
RewriteModernObjC.cpp     [all...]
  /external/clang/include/clang/Sema/
Sema.h     [all...]

Completed in 2501 milliseconds