reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/clang/tools/extra/clangd/index/dex/PostingList.cpp
   29       DecompressedChunk = CurrentChunk->decompress();
   34   bool reachedEnd() const override { return CurrentChunk == Chunks.end(); }
   94     ++CurrentChunk;
   95     if (CurrentChunk == Chunks.end()) // Reached the end of PostingList.
   97     DecompressedChunk = CurrentChunk->decompress();
  103     if ((CurrentChunk != Chunks.end() - 1) &&
  104         ((CurrentChunk + 1)->Head <= ID)) {
  105       CurrentChunk =
  106           std::partition_point(CurrentChunk + 1, Chunks.end(),
  108       --CurrentChunk;
  109       DecompressedChunk = CurrentChunk->decompress();