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

/external/clang/lib/Basic/
H A DSourceManager.cpp2035 std::pair<FileID, unsigned> ROffs = getDecomposedLoc(RHS); local
2040 if (LOffs.first.isInvalid() || ROffs.first.isInvalid())
2041 return LOffs.first.isInvalid() && !ROffs.first.isInvalid();
2044 if (LOffs.first == ROffs.first)
2045 return LOffs.second < ROffs.second;
2050 getInBeforeInTUCache(LOffs.first, ROffs.first);
2054 if (IsBeforeInTUCache.isCacheValid(LOffs.first, ROffs.first))
2055 return IsBeforeInTUCache.getCachedResult(LOffs.second, ROffs.second);
2058 IsBeforeInTUCache.setQueryFIDs(LOffs.first, ROffs.first,
2059 /*isLFIDBeforeRFID=*/LOffs.first.ID < ROffs
[all...]

Completed in 68 milliseconds