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

/external/llvm/include/llvm/ADT/
H A DStringMap.h222 typedef StringMapEntry<ValueTy> MapEntryTy; typedef in class:llvm::StringMap
224 StringMap() : StringMapImpl(static_cast<unsigned>(sizeof(MapEntryTy))) {}
226 : StringMapImpl(InitialSize, static_cast<unsigned>(sizeof(MapEntryTy))) {}
229 : StringMapImpl(static_cast<unsigned>(sizeof(MapEntryTy))), Allocator(A) {}
232 : StringMapImpl(InitialSize, static_cast<unsigned>(sizeof(MapEntryTy))),
236 : StringMapImpl(static_cast<unsigned>(sizeof(MapEntryTy))) {
310 bool insert(MapEntryTy *KeyValue) {
340 MapEntryTy::Create(KV.first, Allocator, std::move(KV.second));
357 static_cast<MapEntryTy*>(Bucket)->Destroy(Allocator);
368 void remove(MapEntryTy *KeyValu
[all...]

Completed in 45 milliseconds