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

  /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/tools/libclang/
CIndexInclusionStack.cpp 60 PresumedLoc PLoc = SM.getPresumedLoc(L);
62 L = PLoc.isValid()? PLoc.getIncludeLoc() : SourceLocation();
  /external/clang/lib/Frontend/
LogDiagnosticPrinter.cpp 127 PresumedLoc PLoc = SM.getPresumedLoc(Info.getLocation());
129 if (PLoc.isInvalid()) {
138 DE.Filename = PLoc.getFilename();
139 DE.Line = PLoc.getLine();
140 DE.Column = PLoc.getColumn();
TextDiagnosticPrinter.cpp 63 PresumedLoc PLoc = SM.getPresumedLoc(Loc);
64 if (PLoc.isInvalid())
68 PrintIncludeStack(Level, PLoc.getIncludeLoc(), SM);
71 OS << "In file included from " << PLoc.getFilename()
72 << ':' << PLoc.getLine() << ":\n";
395 PresumedLoc PLoc = SM.getPresumedLoc(Loc);
396 if (PLoc.isInvalid())
401 if (LastWarningLoc != PLoc.getIncludeLoc()) {
402 LastWarningLoc = PLoc.getIncludeLoc();
408 OS << PLoc.getFilename() << ':' << PLoc.getLine() << ':'
    [all...]
PrintPreprocessedOutput.cpp 135 PresumedLoc PLoc = SM.getPresumedLoc(Loc);
136 if (PLoc.isInvalid())
138 return MoveToLine(PLoc.getLine());
617 PresumedLoc PLoc = SourceMgr.getPresumedLoc(Tok.getLocation());
618 if (PLoc.isInvalid())
621 if (strcmp(PLoc.getFilename(), "<built-in>"))
  /external/clang/lib/AST/
StmtDumper.cpp 183 PresumedLoc PLoc = SM->getPresumedLoc(SpellingLoc);
185 if (PLoc.isInvalid()) {
190 if (strcmp(PLoc.getFilename(), LastLocFilename) != 0) {
191 OS << PLoc.getFilename() << ':' << PLoc.getLine()
192 << ':' << PLoc.getColumn();
193 LastLocFilename = PLoc.getFilename();
194 LastLocLine = PLoc.getLine();
195 } else if (PLoc.getLine() != LastLocLine) {
196 OS << "line" << ':' << PLoc.getLine(
    [all...]
TypePrinter.cpp 661 PresumedLoc PLoc = D->getASTContext().getSourceManager().getPresumedLoc(
663 if (PLoc.isValid()) {
664 OS << " at " << PLoc.getFilename()
665 << ':' << PLoc.getLine()
666 << ':' << PLoc.getColumn();
    [all...]
  /external/clang/lib/Lex/
PPMacroExpansion.cpp     [all...]
Pragma.cpp 325 PresumedLoc PLoc = SourceMgr.getPresumedLoc(SysHeaderTok.getLocation());
326 if (PLoc.isInvalid())
329 unsigned FilenameID = SourceMgr.getLineTableFilenameID(PLoc.getFilename());
339 SourceMgr.AddLineNote(SysHeaderTok.getLocation(), PLoc.getLine(), FilenameID,
    [all...]
PPDirectives.cpp 829 PresumedLoc PLoc = SM.getPresumedLoc(FlagTok.getLocation());
830 if (PLoc.isInvalid())
835 SourceLocation IncLoc = PLoc.getIncludeLoc();
    [all...]
  /frameworks/compile/slang/
slang_rs.cpp 243 clang::PresumedLoc PLoc = SourceMgr.getPresumedLoc(FSL);
245 const char *Filename = PLoc.getFilename();
  /external/clang/lib/CodeGen/
CGDebugInfo.cpp 173 PresumedLoc PLoc = SM.getPresumedLoc(Loc);
175 if (PLoc.isInvalid() || llvm::StringRef(PLoc.getFilename()).empty())
180 const char *fname = PLoc.getFilename();
190 llvm::DIFile F = DBuilder.createFile(PLoc.getFilename(), getCurrentDirname());
207 PresumedLoc PLoc = SM.getPresumedLoc(Loc.isValid() ? Loc : CurLoc);
208 return PLoc.isValid()? PLoc.getLine() : 0;
216 PresumedLoc PLoc = SM.getPresumedLoc(Loc.isValid() ? Loc : CurLoc);
217 return PLoc.isValid()? PLoc.getColumn() : 0
    [all...]
  /external/clang/include/clang/Sema/
Sema.h     [all...]

Completed in 629 milliseconds