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 19 StringMapImpl::StringMapImpl(unsigned InitSize, unsigned itemSize) {
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/
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);
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::getTombstoneVal()
    [all...]

Completed in 389 milliseconds