Home
last modified time | relevance | path

Searched refs:LVStringPool (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/LogicalView/Core/
H A DLVStringPool.h28 class LVStringPool {
37 LVStringPool() { getIndex(""); } in LVStringPool() function
38 LVStringPool(LVStringPool const &other) = delete;
39 LVStringPool(LVStringPool &&other) = delete;
40 ~LVStringPool() = default;
H A DLVSupport.h31 LVStringPool &getStringPool();
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/LogicalView/Core/
H A DLVSupport.cpp25 LVStringPool StringPool;
27 LVStringPool &llvm::logicalview::getStringPool() { return StringPool; } in getStringPool()