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

  /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);
259 const SrcMgr::SLocEntry &sloc = SM.getSLocEntry(fileID, &Invalid); local
260 if (Invalid || !sloc.isFile()) {
266 *file = const_cast<FileEntry *>(SM.getFileEntryForSLocEntry(sloc));
CIndex.cpp     [all...]
  /external/compiler-rt/lib/ubsan/
ubsan_diag.cc 52 SourceLocation SLoc = Loc.getSourceLocation();
53 if (!SLoc.isInvalid()) {
55 AI.file = internal_strdup(SLoc.getFilename());
56 AI.line = SLoc.getLine();
57 AI.column = SLoc.getColumn();
116 SourceLocation SLoc = Loc.getSourceLocation();
117 if (SLoc.isInvalid())
120 RenderSourceLocation(&LocBuffer, SLoc.getFilename(), SLoc.getLine(),
121 SLoc.getColumn(), common_flags()->strip_path_prefix)
    [all...]
  /external/clang/lib/Basic/
SourceManager.cpp 486 assert(ExternalSLocEntries && "Don't have an external sloc source");
681 const SLocEntry &SLoc = getSLocEntry(FID, &MyInvalid);
682 if (!SLoc.isFile() || MyInvalid) {
688 llvm::MemoryBuffer *Buf = SLoc.getFile().getContentCache()->getBuffer(
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
ExprEngine.cpp     [all...]
  /external/clang/lib/Serialization/
ASTWriter.cpp     [all...]

Completed in 1428 milliseconds