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

  /external/llvm/lib/MC/
MCSubtargetInfo.cpp 83 SubtargetInfoKV KV;
84 KV.Key = CPU.data();
86 std::lower_bound(ProcItins, ProcItins+NumProcs, KV);
SubtargetFeature.cpp 121 /// Find KV in array using binary search.
124 T KV;
125 KV.Key = S.data();
129 const T *F = std::lower_bound(A, Hi, KV);
  /external/llvm/include/llvm/ADT/
ValueMap.h 133 std::pair<iterator, bool> insert(const std::pair<KeyT, ValueT> &KV) {
135 Map.insert(std::make_pair(Wrap(KV.first), KV.second));
DenseMap.h 181 std::pair<iterator, bool> insert(const std::pair<KeyT, ValueT> &KV) {
183 if (LookupBucketFor(KV.first, TheBucket))
188 TheBucket = InsertIntoBucket(KV.first, KV.second, TheBucket);
  /external/clang/include/clang/AST/
ExprObjC.h 302 const KeyValuePair &KV = getKeyValues()[Index];
303 ObjCDictionaryElement Result = { KV.Key, KV.Value, SourceLocation(),
    [all...]

Completed in 34 milliseconds