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

  /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 280 PresumedLoc PLoc = SM.getPresumedLoc(Loc);
282 if (PLoc.isInvalid() || StringRef(PLoc.getFilename()).empty())
288 const char *fname = PLoc.getFilename();
297 llvm::DIFile *F = DBuilder.createFile(remapDIPath(PLoc.getFilename()),
320 PresumedLoc PLoc = SM.getPresumedLoc(Loc.isValid() ? Loc : CurLoc);
321 return PLoc.isValid() ? PLoc.getLine() : 0;
333 PresumedLoc PLoc = SM.getPresumedLoc(Loc.isValid() ? Loc : CurLoc);
334 return PLoc.isValid() ? PLoc.getColumn() : 0
    [all...]
CGOpenMPRuntime.cpp 443 PresumedLoc PLoc = CGF.getContext().getSourceManager().getPresumedLoc(Loc);
444 OS2 << ";" << PLoc.getFilename() << ";";
449 OS2 << ";" << PLoc.getLine() << ";" << PLoc.getColumn() << ";;";
    [all...]
CodeGenModule.cpp     [all...]
CGExpr.cpp     [all...]
  /external/clang/lib/Frontend/
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();
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);
206 /// \param PLoc The presumed location of the diagnostic location.
209 PresumedLoc PLoc,
212 SourceLocation IncludeLoc = PLoc.getIncludeLoc();
240 PresumedLoc PLoc = SM.getPresumedLoc(Loc, DiagOpts->ShowPresumedLoc);
241 if (PLoc.isInvalid())
255 emitIncludeStackRecursively(PLoc.getIncludeLoc(), SM);
258 emitIncludeLocation(Loc, PLoc, SM)
    [all...]
PrintPreprocessedOutput.cpp 150 PresumedLoc PLoc = SM.getPresumedLoc(Loc);
151 if (PLoc.isInvalid())
153 return MoveToLine(PLoc.getLine()) || (PLoc.getLine() == 1);
773 PresumedLoc PLoc = SourceMgr.getPresumedLoc(Tok.getLocation());
774 if (PLoc.isInvalid())
777 if (strcmp(PLoc.getFilename(), "<built-in>"))
SerializedDiagnosticPrinter.cpp 69 PresumedLoc PLoc,
76 void emitDiagnosticLoc(SourceLocation Loc, PresumedLoc PLoc,
199 PresumedLoc PLoc,
227 PresumedLoc PLoc, RecordDataImpl &Record,
357 PresumedLoc PLoc,
360 if (PLoc.isInvalid()) {
369 Record.push_back(getEmitFile(PLoc.getFilename()));
370 Record.push_back(PLoc.getLine());
371 Record.push_back(PLoc.getColumn()+TokSize);
647 PresumedLoc PLoc,
    [all...]
  /external/clang/tools/libclang/
CIndexInclusionStack.cpp 64 PresumedLoc PLoc = SM.getPresumedLoc(L);
66 L = PLoc.isValid()? PLoc.getIncludeLoc() : SourceLocation();
  /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();
  /frameworks/compile/slang/
slang.cpp 598 clang::PresumedLoc PLoc = SourceMgr.getPresumedLoc(FSL);
600 const char *Filename = PLoc.getFilename();
  /external/clang/lib/AST/
TypePrinter.cpp 944 PresumedLoc PLoc = D->getASTContext().getSourceManager().getPresumedLoc(
946 if (PLoc.isValid()) {
947 OS << " at " << PLoc.getFilename()
948 << ':' << PLoc.getLine()
949 << ':' << PLoc.getColumn();
    [all...]
ASTDumper.cpp 579 PresumedLoc PLoc = SM->getPresumedLoc(SpellingLoc);
581 if (PLoc.isInvalid()) {
586 if (strcmp(PLoc.getFilename(), LastLocFilename) != 0) {
587 OS << PLoc.getFilename() << ':' << PLoc.getLine()
588 << ':' << PLoc.getColumn();
589 LastLocFilename = PLoc.getFilename();
590 LastLocLine = PLoc.getLine();
591 } else if (PLoc.getLine() != LastLocLine) {
592 OS << "line" << ':' << PLoc.getLine(
    [all...]
  /external/clang/lib/Lex/
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/Frontend/Rewrite/
RewriteModernObjC.cpp     [all...]

Completed in 644 milliseconds