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

  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/accessibility/
KeyboardAccessibilityDelegate.java 43 * @param <KV> The keyboard view class type.
45 public class KeyboardAccessibilityDelegate<KV extends KeyboardView>
50 protected final KV mKeyboardView;
53 private KeyboardAccessibilityNodeProvider<KV> mAccessibilityNodeProvider;
58 public KeyboardAccessibilityDelegate(final KV keyboardView, final KeyDetector keyDetector) {
136 public KeyboardAccessibilityNodeProvider<KV> getAccessibilityNodeProvider(final View host) {
143 protected KeyboardAccessibilityNodeProvider<KV> getAccessibilityNodeProvider() {
292 final KeyboardAccessibilityNodeProvider<KV> provider = getAccessibilityNodeProvider();
315 final KeyboardAccessibilityNodeProvider<KV> provider = getAccessibilityNodeProvider();
KeyboardAccessibilityNodeProvider.java 50 final class KeyboardAccessibilityNodeProvider<KV extends KeyboardView>
73 private final KV mKeyboardView;
75 private final KeyboardAccessibilityDelegate<KV> mDelegate;
80 public KeyboardAccessibilityNodeProvider(final KV keyboardView,
81 final KeyboardAccessibilityDelegate<KV> delegate) {
  /external/llvm/include/llvm/MC/
MCSubtargetInfo.h 149 [=](const SubtargetFeatureKV &KV) {
150 return CPU == KV.Key;
  /external/llvm/include/llvm/ADT/
MapVector.h 91 std::pair<iterator, bool> insert(const std::pair<KeyT, ValueT> &KV) {
92 std::pair<KeyT, unsigned> Pair = std::make_pair(KV.first, 0);
96 Vector.push_back(std::make_pair(KV.first, KV.second));
StringMap.h 317 std::pair<iterator, bool> insert(std::pair<StringRef, ValueTy> KV) {
318 unsigned BucketNo = LookupBucketFor(KV.first);
327 MapEntryTy::Create(KV.first, Allocator, std::move(KV.second));
DenseMap.h 169 std::pair<iterator, bool> insert(const std::pair<KeyT, ValueT> &KV) {
171 if (LookupBucketFor(KV.first, TheBucket))
176 TheBucket = InsertIntoBucket(KV.first, KV.second, TheBucket);
184 std::pair<iterator, bool> insert(std::pair<KeyT, ValueT> &&KV) {
186 if (LookupBucketFor(KV.first, TheBucket))
191 TheBucket = InsertIntoBucket(std::move(KV.first),
192 std::move(KV.second),
    [all...]
  /external/llvm/lib/Transforms/Scalar/
LoopRerollPass.cpp 736 for (auto &KV : Roots) {
737 if (KV.first == 0)
739 if (KV.second->getNumUses() != NumBaseUses) {
742 KV.second->getNumUses() << "\n");
799 for (auto &KV : V) {
801 DRS.BaseInst = KV.second;
804 DRS.Roots.push_back(KV.second);
805 } else if (V.find(KV.first - 1) != V.end()) {
806 DRS.Roots.push_back(KV.second);
810 DRS.BaseInst = KV.second
    [all...]
  /external/llvm/include/llvm/IR/
ValueMap.h 149 std::pair<iterator, bool> insert(const std::pair<KeyT, ValueT> &KV) {
150 auto MapResult = Map.insert(std::make_pair(Wrap(KV.first), KV.second));
154 std::pair<iterator, bool> insert(std::pair<KeyT, ValueT> &&KV) {
156 Map.insert(std::make_pair(Wrap(KV.first), std::move(KV.second)));
  /external/llvm/lib/Object/
IRObjectFile.cpp 92 for (auto &KV : *Streamer) {
93 StringRef Key = KV.first();
94 RecordStreamer::State Value = KV.second;
  /external/llvm/include/llvm/ExecutionEngine/Orc/
CompileOnDemandLayer.h 290 auto KV = std::make_pair(std::move(Name), std::move(CallbackInfo));
291 NewStubInfos.push_back(StubInfos.insert(StubInfos.begin(), KV));
  /external/clang/lib/StaticAnalyzer/Core/
BugReporterVisitors.cpp 566 if (Optional<KnownSVal> KV =
569 *KV, OriginalR, EnableNullFPSuppression));
    [all...]
  /external/clang/include/clang/AST/
ExprObjC.h 318 const KeyValuePair &KV = getKeyValues()[Index];
319 ObjCDictionaryElement Result = { KV.Key, KV.Value, SourceLocation(), None };
    [all...]

Completed in 288 milliseconds