Lines Matching defs:LOffs

1969     const std::pair<FileID, unsigned> &LOffs,
1972 if (isLoadedFileID(LOffs.first) != isLoadedFileID(ROffs.first))
1975 if (isLoadedFileID(LOffs.first) && isLoadedFileID(ROffs.first)) {
1984 if (FindSLocEntryAlloc(LOffs.first) != FindSLocEntryAlloc(ROffs.first))
2044 std::pair<FileID, unsigned> LOffs = getDecomposedLoc(LHS);
2050 if (LOffs.first.isInvalid() || ROffs.first.isInvalid())
2051 return LOffs.first.isInvalid() && !ROffs.first.isInvalid();
2053 std::pair<bool, bool> InSameTU = isInTheSameTranslationUnit(LOffs, ROffs);
2057 return LOffs.first < ROffs.first;
2061 std::pair<FileID, unsigned> &LOffs,
2064 if (!isInTheSameTranslationUnitImpl(LOffs, ROffs))
2068 if (LOffs.first == ROffs.first)
2069 return std::make_pair(true, LOffs.second < ROffs.second);
2074 getInBeforeInTUCache(LOffs.first, ROffs.first);
2080 true, IsBeforeInTUCache.getCachedResult(LOffs.second, ROffs.second));
2087 // A location within a FileID on the path up from LOffs to the main file.
2096 LChain.try_emplace(LOffs.first, Entry{LOffs, LChild});
2097 // We catch the case where LOffs is in a file included by ROffs and
2099 if (LOffs.first == ROffs.first)
2101 LChild = LOffs.first;
2102 } while (!MoveUpTranslationUnitIncludeHierarchy(LOffs, *this));
2109 LOffs = LIt->second.DecomposedLoc;
2121 assert(((LOffs.second != ROffs.second) ||
2126 IsBeforeInTUCache.setCommonLoc(LOffs.first, LOffs.second, ROffs.second,
2129 true, IsBeforeInTUCache.getCachedResult(LOffs.second, ROffs.second));
2137 StringRef LB = getBufferOrFake(LOffs.first).getBufferIdentifier();
2148 return std::make_pair(true, LOffs.first < ROffs.first);
2157 assert(LOffs.first == ROffs.first);
2167 return std::make_pair(true, LOffs.second < ROffs.second);