/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ |
D | ElementsPanelDescriptor.js | 131 WebInspector.KeyboardShortcut.makeDescriptor(WebInspector.KeyboardShortcut.Keys.Up) 135 WebInspector.KeyboardShortcut.makeDescriptor(WebInspector.KeyboardShortcut.Keys.Down) 139 WebInspector.KeyboardShortcut.makeDescriptor(WebInspector.KeyboardShortcut.Keys.Right) 143 WebInspector.KeyboardShortcut.makeDescriptor(WebInspector.KeyboardShortcut.Keys.Left) 147 WebInspector.KeyboardShortcut.makeDescriptor(WebInspector.KeyboardShortcut.Keys.Enter) 151 WebInspector.KeyboardShortcut.makeDescriptor(WebInspector.KeyboardShortcut.Keys.H) 155 WebInspector.KeyboardShortcut.makeDescriptor(WebInspector.KeyboardShortcut.Keys.F2) 159 WebInspector.KeyboardShortcut.makeDescriptor(WebInspector.KeyboardShortcut.Keys.Tab) 163 …WebInspector.KeyboardShortcut.makeDescriptor(WebInspector.KeyboardShortcut.Keys.Tab, WebInspector.… 167 WebInspector.KeyboardShortcut.makeDescriptor(WebInspector.KeyboardShortcut.Keys.Up) [all …]
|
D | SourcesPanelDescriptor.js | 87 …WebInspector.KeyboardShortcut.makeDescriptor(WebInspector.KeyboardShortcut.Keys.Up, WebInspector.K… 91 …WebInspector.KeyboardShortcut.makeDescriptor(WebInspector.KeyboardShortcut.Keys.Down, WebInspector… 95 …WebInspector.KeyboardShortcut.makeDescriptor(WebInspector.KeyboardShortcut.Keys.PageUp, WebInspect… 99 …WebInspector.KeyboardShortcut.makeDescriptor(WebInspector.KeyboardShortcut.Keys.PageDown, WebInspe… 103 …WebInspector.KeyboardShortcut.makeDescriptor(WebInspector.KeyboardShortcut.Keys.Enter, WebInspecto… 107 WebInspector.KeyboardShortcut.makeDescriptor(WebInspector.KeyboardShortcut.Keys.F8), 108 …WebInspector.KeyboardShortcut.makeDescriptor(WebInspector.KeyboardShortcut.Keys.Backslash, WebInsp… 112 WebInspector.KeyboardShortcut.makeDescriptor(WebInspector.KeyboardShortcut.Keys.F10), 113 …WebInspector.KeyboardShortcut.makeDescriptor(WebInspector.KeyboardShortcut.Keys.SingleQuote, WebIn… 117 WebInspector.KeyboardShortcut.makeDescriptor(WebInspector.KeyboardShortcut.Keys.F11), [all …]
|
D | Dialog.js | 51 WebInspector.KeyboardShortcut.Keys.Enter.code, 52 WebInspector.KeyboardShortcut.Keys.Esc.code, 120 if (event.keyCode === WebInspector.KeyboardShortcut.Keys.Tab.code) { 125 if (event.keyCode === WebInspector.KeyboardShortcut.Keys.Enter.code)
|
D | HelpScreen.js | 113 WebInspector.KeyboardShortcut.Keys.Enter.code, 114 WebInspector.KeyboardShortcut.Keys.Esc.code, 115 WebInspector.KeyboardShortcut.Keys.Space.code,
|
/external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/ |
D | MyKeyStore.java | 46 private Hashtable Keys = new Hashtable(); field in MyKeyStore 64 if (Keys.containsKey(alias)) { in engineGetKey() 65 return (Key) Keys.get(alias); in engineGetKey() 96 Keys.put(alias, key); in engineSetKeyEntry() 116 Keys.put(alias, keyK); in engineSetKeyEntry() 131 if (Keys.containsKey(alias)) { in engineDeleteEntry() 132 Keys.remove(alias); in engineDeleteEntry() 146 if (Keys.containsKey(alias)) { in engineContainsAlias() 156 return (Keys.size() + Cert.size()); in engineSize() 160 if (Keys.containsKey(alias)) { in engineIsKeyEntry() [all …]
|
/external/clang/lib/StaticAnalyzer/Checkers/ |
D | DebugCheckers.cpp | 166 std::vector<StringRef> Keys; in checkEndOfTranslationUnit() local 167 for (; I != E ; ++I) { Keys.push_back(I->getKey()); } in checkEndOfTranslationUnit() 168 sort(Keys.begin(), Keys.end()); in checkEndOfTranslationUnit() 171 for (unsigned i = 0, n = Keys.size(); i < n ; ++i) { in checkEndOfTranslationUnit() 172 StringRef Key = Keys[i]; in checkEndOfTranslationUnit() 176 llvm::errs() << "[stats]\n" << "num-entries = " << Keys.size() << '\n'; in checkEndOfTranslationUnit()
|
/external/chromium_org/chrome/common/extensions/ |
D | manifest_url_handler.h | 73 virtual const std::vector<std::string> Keys() const OVERRIDE; 87 virtual const std::vector<std::string> Keys() const OVERRIDE; 101 virtual const std::vector<std::string> Keys() const OVERRIDE; 118 virtual const std::vector<std::string> Keys() const OVERRIDE; 132 virtual const std::vector<std::string> Keys() const OVERRIDE;
|
D | manifest_url_handler.cc | 133 const std::vector<std::string> DevToolsPageHandler::Keys() const { in Keys() function in extensions::DevToolsPageHandler 163 const std::vector<std::string> HomepageURLHandler::Keys() const { in Keys() function in extensions::HomepageURLHandler 195 const std::vector<std::string> UpdateURLHandler::Keys() const { in Keys() function in extensions::UpdateURLHandler 262 const std::vector<std::string> OptionsPageHandler::Keys() const { in Keys() function in extensions::OptionsPageHandler 334 const std::vector<std::string> URLOverridesHandler::Keys() const { in Keys() function in extensions::URLOverridesHandler
|
/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/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/chromium_org/third_party/WebKit/Source/wtf/ |
D | HashIterators.h | 40 typedef HashTableConstKeysIterator<HashTableType, KeyType, MappedType> Keys; 53 Keys keys() { return Keys(*this); } 63 typedef HashTableKeysIterator<HashTableType, KeyType, MappedType> Keys; 81 Keys keys() { return Keys(*this); }
|
/external/chromium_org/chrome/test/functional/rlz/ |
D | rlztest.py | 23 from selenium.webdriver.common.keys import Keys as Keys unknown 189 self.driver.switch_to_active_element().send_keys(Keys.CONTROL + 'l') 191 self.driver.switch_to_active_element().send_keys(Keys.ENTER)
|
/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/chromium_org/extensions/common/manifest_handlers/ |
D | csp_info.cc | 81 const std::string key = Keys()[0]; in Parse() 127 const std::vector<std::string> CSPHandler::Keys() const { in Keys() function in extensions::CSPHandler
|
/external/chromium_org/third_party/WebKit/Source/core/dom/custom/ |
D | CustomElementUpgradeCandidateMap.cpp | 40 UpgradeCandidateMap::const_iterator::Keys end = m_upgradeCandidates.end().keys(); in ~CustomElementUpgradeCandidateMap() 41 …for (UpgradeCandidateMap::const_iterator::Keys it = m_upgradeCandidates.begin().keys(); it != end;… in ~CustomElementUpgradeCandidateMap()
|
/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/chromium_org/chrome/common/extensions/manifest_handlers/ |
D | minimum_chrome_version_checker.h | 23 virtual const std::vector<std::string> Keys() const OVERRIDE;
|
D | nacl_modules_handler.h | 36 virtual const std::vector<std::string> Keys() const OVERRIDE;
|
/external/chromium_org/chrome/common/extensions/api/system_indicator/ |
D | system_indicator_handler.h | 23 virtual const std::vector<std::string> Keys() const OVERRIDE;
|
/external/chromium_org/tools/stats_viewer/ |
D | OpenDialog.cs | 39 if (e.KeyCode == Keys.Enter) in OnKeyUp()
|
/external/chromium_org/chrome/common/extensions/api/extension_action/ |
D | browser_action_handler.h | 28 virtual const std::vector<std::string> Keys() const OVERRIDE;
|
D | page_action_handler.h | 28 virtual const std::vector<std::string> Keys() const OVERRIDE;
|
/external/chromium_org/chrome/common/extensions/api/omnibox/ |
D | omnibox_handler.h | 34 virtual const std::vector<std::string> Keys() const OVERRIDE;
|
/external/chromium_org/chrome/common/extensions/api/sockets/ |
D | sockets_manifest_handler.h | 34 virtual const std::vector<std::string> Keys() const OVERRIDE;
|