HomeSort by relevance Sort by last modified time
    Searched refs:StringMapImpl (Results 1 - 2 of 2) sorted by null

  /external/llvm/lib/Support/
StringMap.cpp 20 StringMapImpl::StringMapImpl(unsigned InitSize, unsigned itemSize) {
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() {
  /external/llvm/include/llvm/ADT/
StringMap.h 51 /// StringMapImpl - This is the base class of StringMap that is shared among
53 class StringMapImpl {
64 explicit StringMapImpl(unsigned itemSize) : ItemSize(itemSize) {
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(InitialSize, static_cast<unsigned>(sizeof(MapEntryTy)))
    [all...]

Completed in 1495 milliseconds