Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DDenseSet.h59 MapTy TheMap; variable
69 explicit DenseSetImpl(unsigned InitialReserve = 0) : TheMap(InitialReserve) {} in TheMap() function
86 bool empty() const { return TheMap.empty(); } in empty()
87 size_type size() const { return TheMap.size(); } in size()
88 size_t getMemorySize() const { return TheMap.getMemorySize(); } in getMemorySize()
92 void resize(size_t Size) { TheMap.resize(Size); } in resize()
96 void reserve(size_t Size) { TheMap.reserve(Size); } in reserve()
98 void clear() { TheMap.clear(); } in clear()
101 size_type count(const_arg_type_t<ValueT> V) const { return TheMap.count(V); } in count()
103 bool erase(const ValueT &V) { return TheMap.erase(V); } in erase()
[all …]