Searched refs:SLoc (Results 1 - 3 of 3) sorted by relevance

/freebsd-10.0-release/contrib/llvm/tools/clang/lib/Basic/
H A DSourceManager.cpp667 const SLocEntry &SLoc = getSLocEntry(FID, &MyInvalid); local
668 if (!SLoc.isFile() || MyInvalid) {
675 = SLoc.getFile().getContentCache()->getBuffer(Diag, *this, SourceLocation(),
1552 const SLocEntry &SLoc = getLocalSLocEntry(I, &Invalid); local
1556 if (SLoc.isFile() &&
1557 SLoc.getFile().getContentCache() &&
1558 SLoc.getFile().getContentCache()->OrigEntry == SourceFile) {
1566 const SLocEntry &SLoc = getLoadedSLocEntry(I); local
1567 if (SLoc.isFile() &&
1568 SLoc
1589 const SLocEntry &SLoc = getSLocEntry(IFileID, &Invalid); local
[all...]
/freebsd-10.0-release/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/
H A DExprEngine.cpp2176 static void printLocation(raw_ostream &Out, SourceLocation SLoc) { argument
2177 if (SLoc.isFileID()) {
2179 << GraphPrintSourceManager->getExpansionLineNumber(SLoc)
2181 << GraphPrintSourceManager->getExpansionColumnNumber(SLoc)
2276 SourceLocation SLoc = T->getLocStart(); local
2282 if (SLoc.isFileID()) {
2284 << GraphPrintSourceManager->getExpansionLineNumber(SLoc)
2286 << GraphPrintSourceManager->getExpansionColumnNumber(SLoc);
/freebsd-10.0-release/contrib/llvm/tools/clang/lib/Serialization/
H A DASTWriter.cpp1262 const SrcMgr::SLocEntry *SLoc = &SourceMgr.getLocalSLocEntry(I); local
1263 assert(&SourceMgr.getSLocEntry(FileID::get(I)) == SLoc);
1266 if (!SLoc->isFile())
1268 const SrcMgr::ContentCache *Cache = SLoc->getFile().getContentCache();
1626 const SrcMgr::SLocEntry *SLoc = &SourceMgr.getLocalSLocEntry(I); local
1628 assert(&SourceMgr.getSLocEntry(FID) == SLoc);
1635 if (SLoc->isFile()) {
1636 const SrcMgr::ContentCache *Cache = SLoc->getFile().getContentCache();
1647 Record.push_back(SLoc->getOffset() - 2);
1648 if (SLoc
[all...]

Completed in 124 milliseconds