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

/freebsd-10.2-release/contrib/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 void StringMapImpl::RehashTable() {
/freebsd-10.2-release/contrib/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);
106 void swap(StringMapImpl &Other) {
236 class StringMap : public StringMapImpl {
241 StringMap() : StringMapImpl(static_cast<unsigned>(sizeof(MapEntryTy))) {}
243 : StringMapImpl(InitialSize, static_cast<unsigned>(sizeof(MapEntryTy))) {}
246 : StringMapImpl(static_cast<unsigned>(sizeof(MapEntryTy))), Allocator(A) {}
249 : StringMapImpl(InitialSiz
[all...]

Completed in 109 milliseconds