Home | History | Annotate | Download | only in ADT

Lines Matching full:stringmap

1 //===- llvm/unittest/ADT/StringMapMap.cpp - StringMap unit tests ----------===//
11 #include "llvm/ADT/StringMap.h"
21 StringMap<uint32_t> testMap;
54 StringMap<uint32_t>::iterator it = testMap.begin();
84 const StringMap<uint32_t>& constTestMap = testMap;
139 // StringMap has a tricky corner case when the map is small (<8 buckets) and
142 llvm::StringMap<int> Map(2);
173 for (StringMap<uint32_t>::iterator it = testMap.begin();
189 StringMap<uint32_t>::value_type* entry =
190 StringMap<uint32_t>::value_type::Create(
201 StringMap<uint32_t>::value_type::Create(
210 StringMap<uint32_t>::iterator NewIt;
219 StringMap<uint32_t>::iterator ExistingIt;
232 // the particular key, and the implementation of StringMap and HashString.
234 StringMap<uint32_t> t(1);
237 StringMap<uint32_t>::iterator It =
252 StringMap<StringMapTestStruct> t;
254 StringMap<StringMapTestStruct>::iterator iter = t.find("Test");
280 StringMap<MoveOnly> t;
294 StringMap<int> A;
296 StringMap<int> B = std::move(A);
304 StringMap<int> A;
306 StringMap<int> B;
339 StringMap<Countable> A;
346 StringMap<Countable> B;
354 B = StringMap<Countable>();