Home
last modified time | relevance | path

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

/NextBSD/contrib/llvm/lib/Support/
HDStringMap.cpp20 StringMapImpl::StringMapImpl(unsigned InitSize, unsigned itemSize) { in StringMapImpl() function in StringMapImpl
36 void StringMapImpl::init(unsigned InitSize) { in init()
58 unsigned StringMapImpl::LookupBucketFor(StringRef Name) { in LookupBucketFor()
116 int StringMapImpl::FindKey(StringRef Key) const { in FindKey()
158 void StringMapImpl::RemoveKey(StringMapEntryBase *V) { in RemoveKey()
167 StringMapEntryBase *StringMapImpl::RemoveKey(StringRef Key) { in RemoveKey()
184 unsigned StringMapImpl::RehashTable(unsigned BucketNo) { in RehashTable()
/NextBSD/contrib/llvm/include/llvm/ADT/
HDStringMap.h41 class StringMapImpl {
52 explicit StringMapImpl(unsigned itemSize) in StringMapImpl() function
56 StringMapImpl(StringMapImpl &&RHS) in StringMapImpl() function
66 StringMapImpl(unsigned InitSize, unsigned ItemSize);
101 void swap(StringMapImpl &Other) { in swap()
214 class StringMap : public StringMapImpl {
219 StringMap() : StringMapImpl(static_cast<unsigned>(sizeof(MapEntryTy))) {} in StringMap()
221 : StringMapImpl(InitialSize, static_cast<unsigned>(sizeof(MapEntryTy))) {} in StringMap()
224 : StringMapImpl(static_cast<unsigned>(sizeof(MapEntryTy))), Allocator(A) {} in StringMap()
227 : StringMapImpl(InitialSize, static_cast<unsigned>(sizeof(MapEntryTy))), in StringMap()
[all …]