Searched defs:StringMapImpl (Results 1 - 2 of 2) sorted by relevance

/external/llvm/lib/Support/
H A DStringMap.cpp20 StringMapImpl::StringMapImpl(unsigned InitSize, unsigned itemSize) { function in class:StringMapImpl
36 void StringMapImpl::init(unsigned InitSize) {
58 unsigned StringMapImpl::LookupBucketFor(StringRef Name) {
116 int StringMapImpl::FindKey(StringRef Key) const {
158 void StringMapImpl::RemoveKey(StringMapEntryBase *V) {
167 StringMapEntryBase *StringMapImpl::RemoveKey(StringRef Key) {
184 unsigned StringMapImpl::RehashTable(unsigned BucketNo) {
/external/llvm/include/llvm/ADT/
H A DStringMap.h39 /// StringMapImpl - This is the base class of StringMap that is shared among
41 class StringMapImpl { class in namespace:llvm
52 explicit StringMapImpl(unsigned itemSize) function in class:llvm::StringMapImpl
56 StringMapImpl(StringMapImpl &&RHS) function in class:llvm::StringMapImpl
66 StringMapImpl(unsigned InitSize, unsigned ItemSize);
101 void swap(StringMapImpl &Other) {
226 class StringMap : public StringMapImpl {
231 StringMap() : StringMapImpl(static_cast<unsigned>(sizeof(MapEntryTy))) {}
233 : StringMapImpl(InitialSiz
[all...]

Completed in 90 milliseconds