Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/llvm/lib/Support/
H A DStringMap.cpp46 StringMapImpl::StringMapImpl(unsigned InitSize, unsigned itemSize) { in StringMapImpl() function in StringMapImpl
65 void StringMapImpl::init(unsigned InitSize) { in init()
84 unsigned StringMapImpl::LookupBucketFor(StringRef Name) { in LookupBucketFor()
142 int StringMapImpl::FindKey(StringRef Key) const { in FindKey()
186 void StringMapImpl::RemoveKey(StringMapEntryBase *V) { in RemoveKey()
195 StringMapEntryBase *StringMapImpl::RemoveKey(StringRef Key) { in RemoveKey()
211 unsigned StringMapImpl::RehashTable(unsigned BucketNo) { in RehashTable()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/ADT/
H A DStringMap.h32 class StringMapImpl {
44 explicit StringMapImpl(unsigned itemSize) : ItemSize(itemSize) {} in StringMapImpl() function
45 StringMapImpl(StringMapImpl &&RHS) in StringMapImpl() function
55 StringMapImpl(unsigned InitSize, unsigned ItemSize);
97 void swap(StringMapImpl &Other) { in swap()
111 : public StringMapImpl,
118 StringMap() : StringMapImpl(static_cast<unsigned>(sizeof(MapEntryTy))) {} in StringMap()
127 : StringMapImpl(InitialSize, static_cast<unsigned>(sizeof(MapEntryTy))), in StringMap()
139 : StringMapImpl(static_cast<unsigned>(sizeof(MapEntryTy))), in StringMap()
174 StringMapImpl::swap(RHS);
[all …]