Searched defs:ROffs (Results 1 - 1 of 1) sorted by relevance

/external/clang/lib/Basic/
H A DSourceManager.cpp1907 std::pair<FileID, unsigned> ROffs = getDecomposedLoc(RHS); local
1910 if (LOffs.first == ROffs.first)
1911 return LOffs.second < ROffs.second;
1916 getInBeforeInTUCache(LOffs.first, ROffs.first);
1920 if (IsBeforeInTUCache.isCacheValid(LOffs.first, ROffs.first))
1921 return IsBeforeInTUCache.getCachedResult(LOffs.second, ROffs.second);
1924 IsBeforeInTUCache.setQueryFIDs(LOffs.first, ROffs.first,
1925 /*isLFIDBeforeRFID=*/LOffs.first.ID < ROffs.first.ID);
1936 // We catch the case where LOffs is in a file included by ROffs and
1938 } while (LOffs.first != ROffs
[all...]

Completed in 51 milliseconds