Home
last modified time | relevance | path

Searched refs:Keys (Results 1 – 25 of 285) sorted by relevance

12345678910>>...12

/external/libcxx/benchmarks/
Dordered_set.bench.cpp37 void sortKeysBy(std::vector<uint64_t>& Keys, AccessPattern AP) { in sortKeysBy() argument
41 std::shuffle(std::begin(Keys), std::end(Keys), M); in sortKeysBy()
47 std::vector<uint64_t> Keys; member
57 R.Keys.push_back(Hit == HitType::Hit ? 2 * I : 2 * I + 1); in makeTestingSets()
60 sortKeysBy(R.Keys, Access); in makeTestingSets()
86 std::vector<uint64_t> Keys(TableSize); in run() local
87 std::iota(Keys.begin(), Keys.end(), uint64_t{0}); in run()
88 sortKeysBy(Keys, Access()); in run()
92 for (auto K : Keys) { in run()
113 for (auto K : Data.Keys) { in run()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/unittests/Support/
DReverseIterationTest.cpp37 int Keys[] = { 1, 2, 3, 4 }; in TEST() local
40 for (auto Key: Keys) in TEST()
90 PtrLikeInt *Keys[] = { &a, &b, &c, &d }; in TEST() local
94 for (auto *Key : Keys) in TEST()
100 std::reverse(&Keys[0], &Keys[4]); in TEST()
103 for (const auto &Tuple : zip(Map, Keys)) in TEST()
109 ASSERT_EQ(iter->second, Keys[i]->value); in TEST()
/external/clang/include/clang/Tooling/
DReplacementsYaml.h55 Keys(Io, R); in LLVM_YAML_IS_SEQUENCE_VECTOR()
56 Io.mapRequired("FilePath", Keys->FilePath); in LLVM_YAML_IS_SEQUENCE_VECTOR()
57 Io.mapRequired("Offset", Keys->Offset); in LLVM_YAML_IS_SEQUENCE_VECTOR()
58 Io.mapRequired("Length", Keys->Length); in LLVM_YAML_IS_SEQUENCE_VECTOR()
59 Io.mapRequired("ReplacementText", Keys->ReplacementText); in LLVM_YAML_IS_SEQUENCE_VECTOR()
/external/lzma/CPP/7zip/Crypto/
D7zAes.cpp81 FOR_VECTOR (i, Keys) in GetKey()
83 const CKeyInfo &cached = Keys[i]; in GetKey()
89 Keys.MoveToFront(i); in GetKey()
98 FOR_VECTOR (i, Keys) in FindAndAdd()
100 const CKeyInfo &cached = Keys[i]; in FindAndAdd()
104 Keys.MoveToFront(i); in FindAndAdd()
113 if (Keys.Size() >= Size) in Add()
114 Keys.DeleteBack(); in Add()
115 Keys.Insert(0, key); in Add()
/external/clang/lib/StaticAnalyzer/Checkers/
DDebugCheckers.cpp178 SmallVector<const Table::MapEntryTy *, 32> Keys; in checkEndOfTranslationUnit() local
181 Keys.push_back(&*I); in checkEndOfTranslationUnit()
182 llvm::array_pod_sort(Keys.begin(), Keys.end(), compareEntry); in checkEndOfTranslationUnit()
185 for (unsigned I = 0, E = Keys.size(); I != E; ++I) in checkEndOfTranslationUnit()
186 llvm::errs() << Keys[I]->getKey() << " = " << Keys[I]->second << '\n'; in checkEndOfTranslationUnit()
188 llvm::errs() << "[stats]\n" << "num-entries = " << Keys.size() << '\n'; in checkEndOfTranslationUnit()
/external/antlr/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
DDictionaryExtensions.cs113 return new HashSet<object>( map.Keys.Cast<object>() ); in keySet()
119 return new HashSet<TKey>( map.Keys ); in keySet()
126 return new HashSet<TKey>( map.Keys ); in keySet()
132 return new HashSet<object>( map.Keys.Cast<object>() ); in keySet()
/external/antlr/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.JavaExtensions/
DDictionaryExtensions.cs107 return new HashSet<object>(map.Keys.Cast<object>()); in keySet()
112 return new HashSet<TKey>(map.Keys); in keySet()
118 return new HashSet<TKey>(map.Keys); in keySet()
123 return new HashSet<object>(map.Keys.Cast<object>()); in keySet()
/external/protobuf/csharp/src/Google.Protobuf.Test/Collections/
DMapFieldTest.cs99 CollectionAssert.AreEqual(new[] { "a", "c", "d" }, map.Keys); in AddPreservesInsertionOrder()
178 CollectionAssert.AreEqual(new[] { "before", "x", "a", "after" }, map2.Keys); in Add_Dictionary()
379 CollectionAssert.AreEqual(new[] { "x" }, dictionary.Keys); in IDictionary_Keys()
432 var keys = map.Keys; in KeysReturnsLiveView()
455 var keys = map.Keys; in ViewsAreReadOnly()
467 var keys = map.Keys; in ViewCopyTo()
480 ICollection keys = map.Keys; in NonGenericViewCopyTo()
493 var keys = map.Keys; in KeysContains()
505 var keys = map.Keys.ToArray(); // Uses CopyTo internally in KeysCopyTo()
591 ….AreEquivalent(((IDictionary<string, string>)map).Keys, ((IReadOnlyDictionary<string, string>)map)… in IDictionaryKeys_Equals_IReadOnlyDictionaryKeys()
/external/google-fruit/include/fruit/impl/meta/
Dimmutable_map.h35 template <typename... Keys, typename... Values>
36 struct apply<Vector<Keys...>, Vector<Values...>> {
37 using type = ConsImmutableSet<Pair<Keys, Values>...>;
/external/antlr/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/Misc/
DDoubleKeyMap`3.cs60 return data.Keys; in KeySet()
71 return data2.Keys; in KeySet()
83 return s.Keys; in Values()
/external/protobuf/csharp/compatibility_tests/v3.0.0/src/Google.Protobuf.Test/Collections/
DMapFieldTest.cs99 CollectionAssert.AreEqual(new[] { "a", "c", "d" }, map.Keys); in AddPreservesInsertionOrder()
178 CollectionAssert.AreEqual(new[] { "before", "x", "a", "after" }, map2.Keys); in Add_Dictionary()
379 CollectionAssert.AreEqual(new[] { "x" }, dictionary.Keys); in IDictionary_Keys()
432 var keys = map.Keys; in KeysReturnsLiveView()
455 var keys = map.Keys; in ViewsAreReadOnly()
467 var keys = map.Keys; in ViewCopyTo()
480 ICollection keys = map.Keys; in NonGenericViewCopyTo()
493 var keys = map.Keys; in KeysContains()
/external/swiftshader/third_party/llvm-7.0/llvm/unittests/ADT/
DStringMapTest.cpp281 auto Keys = to_vector<4>(Map.keys()); in TEST_F() local
282 llvm::sort(Keys.begin(), Keys.end()); in TEST_F()
285 EXPECT_EQ(Expected, Keys); in TEST_F()
295 auto Keys = to_vector<4>(Set.keys()); in TEST_F() local
296 llvm::sort(Keys.begin(), Keys.end()); in TEST_F()
299 EXPECT_EQ(Expected, Keys); in TEST_F()
/external/tensorflow/tensorflow/core/api_def/base_api/
Dapi_def_LookupTableRemoveV2.pbtxt16 Any shape. Keys of the elements to remove.
21 The tensor `keys` must of the same type as the keys of the table. Keys not
/external/python/cpython2/PC/VS7.1/
Dpython20.wse2451 Total Keys=1
2456 Total Keys=1
2461 Total Keys=1
2468 Total Keys=1
2473 Total Keys=1
2478 Total Keys=1
2485 Total Keys=1
2490 Total Keys=1
2495 Total Keys=1
2505 Total Keys=1
[all …]
/external/ltp/pan/
Dreporter.c85 SYM Tag, Keys; in scanner_reporter() local
156 if ((Keys = sym_get(tags, key_get)) == NULL) { in scanner_reporter()
162 tag_report(NULL, Tag, Keys); in scanner_reporter()
/external/guava/android/guava/src/com/google/common/collect/
DFilteredEntryMultimap.java339 return new Keys(); in createKeys()
343 class Keys extends Multimaps.Keys<K, V> { class
344 Keys() { in Keys() method in Keys
380 return Keys.this; in entrySet()
385 return Keys.this.entryIterator(); in entrySet()
/external/guava/guava/src/com/google/common/collect/
DFilteredEntryMultimap.java339 return new Keys(); in createKeys()
343 class Keys extends Multimaps.Keys<K, V> { class
344 Keys() { in Keys() method in Keys
380 return Keys.this; in entrySet()
385 return Keys.this.entryIterator(); in entrySet()
/external/python/google-api-python-client/docs/
Dapi-keys.md1 # API Keys
7 ## Using API Keys
/external/protobuf/csharp/src/Google.Protobuf/Collections/
DReadOnlyDictionary.cs61 public ICollection<TKey> Keys property in Google.Protobuf.Collections.ReadOnlyDictionary
63 get { return wrapped.Keys; }
DMapField.cs228 …public ICollection<TKey> Keys { get { return new MapView<TKey>(this, pair => pair.Key, ContainsKey… property in Google.Protobuf.Collections.MapField
525 ICollection IDictionary.Keys { get { return (ICollection)Keys; } }
556 IEnumerable<TKey> IReadOnlyDictionary<TKey, TValue>.Keys => Keys;
/external/antlr/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Misc/
DDoubleKeyMap.cs52 return data.Keys; in KeySet()
62 return data2.Keys; in KeySet()
/external/clang/lib/Edit/
DRewriteObjCFoundationAPI.cpp570 SmallVector<const Expr *, 8> Keys; in rewriteToDictionaryLiteral() local
571 if (!getNSArrayObjects(Msg->getArg(1), NS, Keys)) in rewriteToDictionaryLiteral()
574 if (Vals.size() != Keys.size()) in rewriteToDictionaryLiteral()
584 objectifyExpr(Keys[i], commit); in rewriteToDictionaryLiteral()
587 SourceRange KeyRange = Keys[i]->getSourceRange(); in rewriteToDictionaryLiteral()
594 SourceRange ArgRange(Keys.front()->getLocStart(), in rewriteToDictionaryLiteral()
595 Keys.back()->getLocEnd()); in rewriteToDictionaryLiteral()
627 SmallVector<const Expr *, 8> Keys; in shouldNotRewriteImmediateMessageArgs() local
628 if (!getNSArrayObjects(Msg->getArg(1), NS, Keys)) in shouldNotRewriteImmediateMessageArgs()
631 if (Vals.size() != Keys.size()) in shouldNotRewriteImmediateMessageArgs()
/external/dagger2/java/dagger/internal/codegen/
DMissingBindingValidator.java21 import static dagger.internal.codegen.Keys.isValidImplicitProvisionKey;
22 import static dagger.internal.codegen.Keys.isValidMembersInjectionKey;
/external/autotest/client/site_tests/files_CopyFileToGoogleDriveUI/
Dfiles_CopyFileToGoogleDriveUI.py13 from selenium.webdriver.common.keys import Keys
208 .click(item).key_down(Keys.CONTROL) \
210 .key_up(Keys.CONTROL) \
/external/icu/icu4c/source/data/lang/
Dsv_FI.txt4 Keys{

12345678910>>...12