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

  /external/llvm/lib/MC/
MCSubtargetInfo.cpp 94 SubtargetInfoKV KV;
95 KV.Key = CPU.data();
97 std::lower_bound(ProcSchedModels, ProcSchedModels+NumProcs, KV);
SubtargetFeature.cpp 121 /// Find KV in array using binary search.
125 SubtargetFeatureKV KV;
126 KV.Key = S.data();
130 const SubtargetFeatureKV *F = std::lower_bound(A, Hi, KV);
  /external/llvm/include/llvm/ADT/
MapVector.h 93 std::pair<iterator, bool> insert(const std::pair<KeyT, ValueT> &KV) {
94 std::pair<KeyT, unsigned> Pair = std::make_pair(KV.first, 0);
98 Vector.push_back(std::make_pair(KV.first, KV.second));
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 151 std::pair<iterator, bool> insert(const std::pair<KeyT, ValueT> &KV) {
153 if (LookupBucketFor(KV.first, TheBucket))
158 TheBucket = InsertIntoBucket(KV.first, KV.second, TheBucket);
166 std::pair<iterator, bool> insert(std::pair<KeyT, ValueT> &&KV) {
168 if (LookupBucketFor(KV.first, TheBucket))
173 TheBucket = InsertIntoBucket(std::move(KV.first),
174 std::move(KV.second),
  /external/clang/lib/StaticAnalyzer/Core/
BugReporterVisitors.cpp 521 if (Optional<KnownSVal> KV =
523 BR.addVisitor(new FindLastStoreBRVisitor(*KV, OriginalR));
869 if (Optional<KnownSVal> KV = LVal.getAs<KnownSVal>())
870 report.addVisitor(new FindLastStoreBRVisitor(*KV, RR));
918 if (Optional<KnownSVal> KV = V.getAs<KnownSVal>())
919 report.addVisitor(new FindLastStoreBRVisitor(*KV, R));
    [all...]
  /external/clang/include/clang/AST/
ExprObjC.h 308 const KeyValuePair &KV = getKeyValues()[Index];
309 ObjCDictionaryElement Result = { KV.Key, KV.Value, SourceLocation(), None };
    [all...]

Completed in 76 milliseconds