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

/external/llvm/lib/Support/
H A DStringMap.cpp19 StringMapImpl::StringMapImpl(unsigned InitSize, unsigned itemSize) { function in class:StringMapImpl
35 void StringMapImpl::init(unsigned InitSize) {
57 unsigned StringMapImpl::LookupBucketFor(StringRef Name) {
115 int StringMapImpl::FindKey(StringRef Key) const {
157 void StringMapImpl::RemoveKey(StringMapEntryBase *V) {
166 StringMapEntryBase *StringMapImpl::RemoveKey(StringRef Key) {
183 void StringMapImpl::RehashTable() {
/external/llvm/include/llvm/ADT/
H A DStringMap.h51 /// StringMapImpl - This is the base class of StringMap that is shared among
53 class StringMapImpl { class in namespace:llvm
64 explicit StringMapImpl(unsigned itemSize) : ItemSize(itemSize) { function in class:llvm::StringMapImpl
71 StringMapImpl(unsigned InitSize, unsigned ItemSize);
230 class StringMap : public StringMapImpl {
235 StringMap() : StringMapImpl(static_cast<unsigned>(sizeof(MapEntryTy))) {}
237 : StringMapImpl(InitialSize, static_cast<unsigned>(sizeof(MapEntryTy))) {}
240 : StringMapImpl(static_cast<unsigned>(sizeof(MapEntryTy))), Allocator(A) {}
243 : StringMapImpl(static_cast<unsigned>(sizeof(MapEntryTy))) {
441 while (*Ptr == 0 || *Ptr == StringMapImpl
[all...]

Completed in 59 milliseconds