/external/clang/include/clang/Tooling/ |
D | ReplacementsYaml.h | 55 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/clang/lib/StaticAnalyzer/Checkers/ |
D | DebugCheckers.cpp | 178 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/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/ |
D | DictionaryExtensions.cs | 113 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/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.JavaExtensions/ |
D | DictionaryExtensions.cs | 107 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/lzma/CPP/7zip/Crypto/ |
D | 7zAes.cpp | 67 FOR_VECTOR (i, Keys) in Find() 69 const CKeyInfo &cached = Keys[i]; in Find() 75 Keys.MoveToFront(i); in Find() 86 if (Keys.Size() >= Size) in Add() 87 Keys.DeleteBack(); in Add() 88 Keys.Insert(0, key); in Add()
|
/external/protobuf/csharp/src/Google.Protobuf.Test/Collections/ |
D | MapFieldTest.cs | 99 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/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/Misc/ |
D | DoubleKeyMap`3.cs | 60 return data.Keys; in KeySet() 71 return data2.Keys; in KeySet() 83 return s.Keys; in Values()
|
/external/autotest/client/site_tests/desktopui_SonicExtension/extension_pages/ |
D | web_elements.py | 10 from selenium.webdriver.common.keys import Keys 121 self._element.send_keys(Keys.SPACE) 124 self._element.send_keys(Keys.SPACE)
|
/external/guava/guava/src/com/google/common/collect/ |
D | FilteredEntryMultimap.java | 326 return new Keys(); 329 class Keys extends Multimaps.Keys<K, V> { 330 Keys() { 366 return Keys.this; 371 return Keys.this.entryIterator();
|
/external/syslinux/com32/cmenu/ |
D | README | 34 * Arrow Keys, PgUp, PgDn, Home, End Keys 64 * Global Keys Handler 70 * Shortcut Keys 77 * Escape Keys
|
/external/ltp/pan/ |
D | reporter.c | 85 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/protobuf/csharp/src/Google.Protobuf/Collections/ |
D | ReadOnlyDictionary.cs | 61 public ICollection<TKey> Keys property in Google.Protobuf.Collections.ReadOnlyDictionary 63 get { return wrapped.Keys; }
|
D | MapField.cs | 225 …public ICollection<TKey> Keys { get { return new MapView<TKey>(this, pair => pair.Key, ContainsKey… property in Google.Protobuf.Collections.MapField 522 ICollection IDictionary.Keys { get { return (ICollection)Keys; } }
|
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Misc/ |
D | DoubleKeyMap.cs | 52 return data.Keys; in KeySet() 62 return data2.Keys; in KeySet()
|
/external/clang/lib/Edit/ |
D | RewriteObjCFoundationAPI.cpp | 570 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/icu/icu4c/source/data/lang/ |
D | sv_FI.txt | 4 Keys{
|
D | en_001.txt | 4 Keys{
|
D | as.txt | 4 Keys{
|
D | zgh.txt | 4 Keys{
|
D | jgo.txt | 4 Keys{
|
D | nnh.txt | 4 Keys{
|
D | de_CH.txt | 4 Keys{
|
/external/clang/lib/Basic/ |
D | VirtualFileSystem.cpp | 1015 DenseMap<StringRef, KeyStatus> &Keys) { in checkDuplicateOrUnknownKey() argument 1016 if (!Keys.count(Key)) { in checkDuplicateOrUnknownKey() 1020 KeyStatus &S = Keys[Key]; in checkDuplicateOrUnknownKey() 1030 bool checkMissingKeys(yaml::Node *Obj, DenseMap<StringRef, KeyStatus> &Keys) { in checkMissingKeys() argument 1031 for (DenseMap<StringRef, KeyStatus>::iterator I = Keys.begin(), in checkMissingKeys() 1032 E = Keys.end(); in checkMissingKeys() 1121 DenseMap<StringRef, KeyStatus> Keys(std::begin(Fields), std::end(Fields)); in parseEntry() local 1139 if (!checkDuplicateOrUnknownKey(I->getKey(), Key, Keys)) in parseEntry() 1237 if (!checkMissingKeys(N, Keys)) in parseEntry() 1307 DenseMap<StringRef, KeyStatus> Keys(std::begin(Fields), std::end(Fields)); in parse() local [all …]
|
/external/webrtc/webrtc/modules/remote_bitrate_estimator/ |
D | remote_bitrate_estimator_abs_send_time.cc | 59 std::vector<K> Keys(const std::map<K, V>& map) { in Keys() function 377 observer_->OnReceiveBitrateChanged(Keys(ssrcs_), target_bitrate); in UpdateEstimate() 401 *ssrcs = Keys(ssrcs_); in LatestEstimate()
|
/external/autotest/server/cros/ap_configurators/ |
D | belkinF9K_ap_configurator.py | 12 from selenium.webdriver.common.keys import Keys 48 body.send_keys(Keys.CONTROL + 't')
|