HomeSort by relevance Sort by last modified time
    Searched refs:PLoc (Results 1 - 22 of 22) 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,
161 void emitIncludeLocation(SourceLocation Loc, PresumedLoc PLoc,
164 void emitImportLocation(SourceLocation Loc, PresumedLoc PLoc,
168 void emitBuildingModuleLocation(SourceLocation Loc, PresumedLoc PLoc,
  /external/clang/tools/libclang/
CIndexInclusionStack.cpp 64 PresumedLoc PLoc = SM.getPresumedLoc(L);
66 L = PLoc.isValid()? PLoc.getIncludeLoc() : SourceLocation();
CIndexDiagnostic.cpp 116 void emitDiagnosticMessage(SourceLocation Loc, PresumedLoc PLoc,
134 void emitDiagnosticLoc(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();
  /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);
208 /// \param PLoc The presumed location of the diagnostic location.
211 PresumedLoc PLoc,
214 SourceLocation IncludeLoc = PLoc.getIncludeLoc();
242 PresumedLoc PLoc = SM.getPresumedLoc(Loc, DiagOpts->ShowPresumedLoc);
243 if (PLoc.isInvalid())
257 emitIncludeStackRecursively(PLoc.getIncludeLoc(), SM);
260 emitIncludeLocation(Loc, PLoc, SM)
    [all...]
LogDiagnosticPrinter.cpp 141 PresumedLoc PLoc = SM.getPresumedLoc(Info.getLocation());
143 if (PLoc.isInvalid()) {
152 DE.Filename = PLoc.getFilename();
153 DE.Line = PLoc.getLine();
154 DE.Column = PLoc.getColumn();
SerializedDiagnosticPrinter.cpp 63 PresumedLoc PLoc,
70 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);
584 PresumedLoc PLoc,
    [all...]
TextDiagnostic.cpp 675 PresumedLoc PLoc,
685 emitDiagnosticLoc(Loc, PLoc, Level, Ranges, *SM);
772 void TextDiagnostic::emitDiagnosticLoc(SourceLocation Loc, PresumedLoc PLoc,
776 if (PLoc.isInvalid()) {
790 unsigned LineNo = PLoc.getLine();
798 OS << PLoc.getFilename();
807 if (unsigned ColNo = PLoc.getColumn()) {
874 PresumedLoc PLoc,
877 OS << "In file included from " << PLoc.getFilename() << ':'
878 << PLoc.getLine() << ":\n"
    [all...]
PrintPreprocessedOutput.cpp 154 PresumedLoc PLoc = SM.getPresumedLoc(Loc);
155 if (PLoc.isInvalid())
157 return MoveToLine(PLoc.getLine()) || (PLoc.getLine() == 1);
742 PresumedLoc PLoc = SourceMgr.getPresumedLoc(Tok.getLocation());
743 if (PLoc.isInvalid())
746 if (strcmp(PLoc.getFilename(), "<built-in>"))
  /external/clang/lib/CodeGen/
CGOpenMPRuntime.cpp 106 PresumedLoc PLoc = CGF.getContext().getSourceManager().getPresumedLoc(Loc);
107 OS2 << ";" << PLoc.getFilename() << ";";
112 OS2 << ";" << PLoc.getLine() << ";" << PLoc.getColumn() << ";;";
CGDebugInfo.cpp 251 PresumedLoc PLoc = SM.getPresumedLoc(Loc);
253 if (PLoc.isInvalid() || StringRef(PLoc.getFilename()).empty())
258 const char *fname = PLoc.getFilename();
268 llvm::DIFile F = DBuilder.createFile(PLoc.getFilename(), getCurrentDirname());
285 PresumedLoc PLoc = SM.getPresumedLoc(Loc.isValid() ? Loc : CurLoc);
286 return PLoc.isValid()? PLoc.getLine() : 0;
299 PresumedLoc PLoc = SM.getPresumedLoc(Loc.isValid() ? Loc : CurLoc);
300 return PLoc.isValid()? PLoc.getColumn() : 0
    [all...]
CodeGenModule.cpp     [all...]
CGExpr.cpp     [all...]
  /external/clang/lib/Lex/
PPMacroExpansion.cpp     [all...]
Pragma.cpp 430 PresumedLoc PLoc = SourceMgr.getPresumedLoc(SysHeaderTok.getLocation());
431 if (PLoc.isInvalid())
434 unsigned FilenameID = SourceMgr.getLineTableFilenameID(PLoc.getFilename());
444 SourceMgr.AddLineNote(SysHeaderTok.getLocation(), PLoc.getLine()+1,
    [all...]
PPDirectives.cpp     [all...]
  /external/clang/lib/AST/
ASTDumper.cpp 456 PresumedLoc PLoc = SM->getPresumedLoc(SpellingLoc);
458 if (PLoc.isInvalid()) {
463 if (strcmp(PLoc.getFilename(), LastLocFilename) != 0) {
464 OS << PLoc.getFilename() << ':' << PLoc.getLine()
465 << ':' << PLoc.getColumn();
466 LastLocFilename = PLoc.getFilename();
467 LastLocLine = PLoc.getLine();
468 } else if (PLoc.getLine() != LastLocLine) {
469 OS << "line" << ':' << PLoc.getLine(
    [all...]
TypePrinter.cpp 922 PresumedLoc PLoc = D->getASTContext().getSourceManager().getPresumedLoc(
924 if (PLoc.isValid()) {
925 OS << " at " << PLoc.getFilename()
926 << ':' << PLoc.getLine()
927 << ':' << PLoc.getColumn();
    [all...]
  /frameworks/compile/slang/
slang_rs.cpp 258 clang::PresumedLoc PLoc = SourceMgr.getPresumedLoc(FSL);
260 const char *Filename = PLoc.getFilename();
  /external/clang/lib/Rewrite/Frontend/
RewriteModernObjC.cpp     [all...]
  /external/clang/include/clang/Sema/
Sema.h     [all...]

Completed in 338 milliseconds