clang-tools
8.0.0
|
In-memory Dex trigram-based index implementation. More...
#include <Dex.h>
Public Member Functions | |
template<typename SymbolRange , typename RefsRange > | |
Dex (SymbolRange &&Symbols, RefsRange &&Refs) | |
template<typename SymbolRange , typename RefsRange , typename Payload > | |
Dex (SymbolRange &&Symbols, RefsRange &&Refs, Payload &&BackingData, size_t BackingDataSize) | |
bool | fuzzyFind (const FuzzyFindRequest &Req, llvm::function_ref< void(const Symbol &)> Callback) const override |
Constructs iterators over tokens extracted from the query and exhausts it while applying Callback to each symbol in the order of decreasing quality of the matched symbols. More... | |
void | lookup (const LookupRequest &Req, llvm::function_ref< void(const Symbol &)> Callback) const override |
Looks up symbols with any of the given symbol IDs and applies Callback on each matched symbol. More... | |
void | refs (const RefsRequest &Req, llvm::function_ref< void(const Ref &)> Callback) const override |
Finds all occurrences (e.g. More... | |
size_t | estimateMemoryUsage () const override |
Returns estimated size of index (in bytes). More... | |
![]() | |
virtual | ~SymbolIndex ()=default |
Static Public Member Functions | |
static std::unique_ptr< SymbolIndex > | build (SymbolSlab, RefSlab) |
Builds an index from slabs. The index takes ownership of the slab. More... | |
|
inline |
|
inline |
Definition at line 55 of file Dex.h.
References build(), estimateMemoryUsage(), fuzzyFind(), lookup(), and refs().
|
static |
|
overridevirtual |
Returns estimated size of index (in bytes).
Implements clang::clangd::SymbolIndex.
Definition at line 250 of file Dex.cpp.
Referenced by Dex().
|
overridevirtual |
Constructs iterators over tokens extracted from the query and exhausts it while applying Callback to each symbol in the order of decreasing quality of the matched symbols.
Implements clang::clangd::SymbolIndex.
Definition at line 148 of file Dex.cpp.
References clang::clangd::FuzzyFindRequest::Query.
Referenced by Dex().
|
overridevirtual |
Looks up symbols with any of the given symbol IDs and applies Callback
on each matched symbol.
The returned symbol must be deep-copied if it's used outside Callback.
Implements clang::clangd::SymbolIndex.
Definition at line 226 of file Dex.cpp.
Referenced by Dex().
|
overridevirtual |
Finds all occurrences (e.g.
references, declarations, definitions) of a symbol and applies Callback
on each result.
Results should be returned in arbitrary order. The returned result must be deep-copied if it's used outside Callback.
Implements clang::clangd::SymbolIndex.
Definition at line 236 of file Dex.cpp.
Referenced by Dex().