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

/external/llvm/include/llvm/ADT/
H A DMapVector.h91 std::pair<iterator, bool> insert(const std::pair<KeyT, ValueT> &KV) { argument
92 std::pair<KeyT, unsigned> Pair = std::make_pair(KV.first, 0);
96 Vector.push_back(std::make_pair(KV.first, KV.second));
H A DStringMap.h330 std::pair<iterator, bool> insert(std::pair<StringRef, ValueTy> KV) { argument
331 unsigned BucketNo = LookupBucketFor(KV.first);
340 MapEntryTy::Create(KV.first, Allocator, std::move(KV.second));
H A DDenseMap.h154 std::pair<iterator, bool> insert(const std::pair<KeyT, ValueT> &KV) { argument
156 if (LookupBucketFor(KV.first, TheBucket))
161 TheBucket = InsertIntoBucket(KV.first, KV.second, TheBucket);
168 std::pair<iterator, bool> insert(std::pair<KeyT, ValueT> &&KV) { argument
170 if (LookupBucketFor(KV.first, TheBucket))
175 TheBucket = InsertIntoBucket(std::move(KV.first),
176 std::move(KV.second),
/external/llvm/include/llvm/IR/
H A DValueMap.h136 std::pair<iterator, bool> insert(const std::pair<KeyT, ValueT> &KV) { argument
138 Map.insert(std::make_pair(Wrap(KV.first), KV.second));
/external/clang/include/clang/AST/
H A DExprObjC.h309 const KeyValuePair &KV = getKeyValues()[Index]; local
310 ObjCDictionaryElement Result = { KV.Key, KV.Value, SourceLocation(), None };

Completed in 1321 milliseconds