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

  /external/compiler-rt/lib/ubsan/
ubsan_diag.cc 75 SourceLocation SLoc = Loc.getSourceLocation();
76 if (!SLoc.isInvalid()) {
78 AI.file = internal_strdup(SLoc.getFilename());
79 AI.line = SLoc.getLine();
80 AI.column = SLoc.getColumn();
140 SourceLocation SLoc = Loc.getSourceLocation();
141 if (SLoc.isInvalid())
144 RenderSourceLocation(Buffer, SLoc.getFilename(), SLoc.getLine(),
145 SLoc.getColumn(), common_flags()->symbolize_vs_style
    [all...]
ubsan_handlers.cc 25 bool ignoreReport(SourceLocation SLoc, ReportOptions Opts, ErrorType ET) {
35 return SLoc.isDisabled() || IsPCSuppressed(ET, Opts.pc, SLoc.getFilename());
381 SourceLocation SLoc = Data->Loc.acquire();
382 if (ignoreReport(SLoc, Opts, ET))
384 Loc = SLoc;
ubsan_diag.h 228 bool ignoreReport(SourceLocation SLoc, ReportOptions Opts, ErrorType ET);
  /external/clang/tools/libclang/
CXSourceLocation.cpp 138 SourceLocation SLoc = CXXUnit->getLocation(File, line, column);
139 if (SLoc.isInvalid()) {
147 cxloc::translateSourceLocation(CXXUnit->getASTContext(), SLoc);
167 SourceLocation SLoc
170 if (SLoc.isInvalid())
173 return cxloc::translateSourceLocation(CXXUnit->getASTContext(), SLoc);
256 const SrcMgr::SLocEntry &sloc = SM.getSLocEntry(fileID, &Invalid); local
257 if (Invalid || !sloc.isFile()) {
263 *file = const_cast<FileEntry *>(SM.getFileEntryForSLocEntry(sloc));
CIndex.cpp     [all...]
  /external/clang/lib/Basic/
SourceManager.cpp 482 assert(ExternalSLocEntries && "Don't have an external sloc source");
684 const SLocEntry &SLoc = getSLocEntry(FID, &MyInvalid);
685 if (!SLoc.isFile() || MyInvalid) {
691 llvm::MemoryBuffer *Buf = SLoc.getFile().getContentCache()->getBuffer(
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
ExprEngine.cpp     [all...]
BugReporter.cpp     [all...]
  /external/clang/lib/Serialization/
ASTWriter.cpp     [all...]

Completed in 164 milliseconds