HomeSort by relevance Sort by last modified time
    Searched refs:Keys (Results 1 - 25 of 55) sorted by null

1 2 3

  /external/webkit/Source/WebKit2/Shared/
ImmutableDictionary.cpp 47 PassRefPtr<ImmutableArray> ImmutableDictionary::keys() const function in class:WebKit::ImmutableDictionary
55 MapType::const_iterator::Keys it = m_map.begin().keys();
56 MapType::const_iterator::Keys end = m_map.end().keys();
  /external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/
MyKeyStore.java 46 private Hashtable Keys = new Hashtable();
64 if (Keys.containsKey(alias)) {
65 return (Key) Keys.get(alias);
96 Keys.put(alias, key);
116 Keys.put(alias, keyK);
131 if (Keys.containsKey(alias)) {
132 Keys.remove(alias);
146 if (Keys.containsKey(alias)) {
156 return (Keys.size() + Cert.size());
160 if (Keys.containsKey(alias))
    [all...]
  /libcore/support/src/test/java/org/apache/harmony/security/tests/support/
MyKeyStore.java 47 private Hashtable<String, Object> Keys = new Hashtable<String, Object>();
65 if (Keys.containsKey(alias)) {
66 return (Key) Keys.get(alias);
97 Keys.put(alias, key);
117 Keys.put(alias, keyK);
132 if (Keys.containsKey(alias)) {
133 Keys.remove(alias);
147 if (Keys.containsKey(alias)) {
157 return (Keys.size() + Cert.size());
161 if (Keys.containsKey(alias))
    [all...]
  /external/webkit/Source/WebCore/inspector/front-end/
HelpScreen.js 48 WebInspector.KeyboardShortcut.Keys.Enter.code,
49 WebInspector.KeyboardShortcut.Keys.Esc.code,
50 WebInspector.KeyboardShortcut.Keys.Space.code,
GoToLineDialog.js 37 WebInspector.KeyboardShortcut.Keys.Enter.code,
38 WebInspector.KeyboardShortcut.Keys.Esc.code,
98 if (event.keyCode === WebInspector.KeyboardShortcut.Keys.Tab.code) {
103 if (event.keyCode === WebInspector.KeyboardShortcut.Keys.Enter.code)
CallStackSidebarPane.js 159 var nextCallFrame = WebInspector.KeyboardShortcut.makeDescriptor(WebInspector.KeyboardShortcut.Keys.Period,
163 var prevCallFrame = WebInspector.KeyboardShortcut.makeDescriptor(WebInspector.KeyboardShortcut.Keys.Comma,
SidebarPane.js 128 if (isEnterKey(event) || event.keyCode === WebInspector.KeyboardShortcut.Keys.Space.code)
StylesSidebarPane.js 535 var keys = [ variable
536 shortcut.shortcutToString(shortcut.Keys.Tab),
537 shortcut.shortcutToString(shortcut.Keys.Tab, shortcut.Modifiers.Shift)
539 section.addRelatedKeys(keys, WebInspector.UIString("Next/previous property"));
540 keys = [
541 shortcut.shortcutToString(shortcut.Keys.Up),
542 shortcut.shortcutToString(shortcut.Keys.Down)
544 section.addRelatedKeys(keys, WebInspector.UIString("Increment/decrement value"));
545 keys = [
546 shortcut.shortcutToString(shortcut.Keys.Up, shortcut.Modifiers.Shift)
    [all...]
ScriptsPanel.js     [all...]
ElementsPanel.js 1046 var keys = [ variable
1051 var keys = [ variable
    [all...]
ConsoleView.js 389 const commandLineAPI = ["dir", "dirxml", "keys", "values", "profile", "profileEnd", "monitorEvents", "unmonitorEvents", "inspect", "copy", "clear"];
394 this._reportCompletions(bestMatchOnly, completionsReadyCallback, dotNotation, bracketNotation, prefix, Object.keys(propertyNames));
500 var keys = WebInspector.isMac() ? [ shortcutK.name, shortcutL.name ] : [ shortcutL.name ]; variable
501 section.addAlternateKeys(keys, WebInspector.UIString("Clear Console"));
503 keys = [
504 shortcut.shortcutToString(shortcut.Keys.Tab),
505 shortcut.shortcutToString(shortcut.Keys.Tab, shortcut.Modifiers.Shift)
507 section.addRelatedKeys(keys, WebInspector.UIString("Next/previous suggestion"));
508 section.addKey(shortcut.shortcutToString(shortcut.Keys.Right), WebInspector.UIString("Accept suggestion"));
509 keys =
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
DebugCheckers.cpp 164 std::vector<StringRef> Keys;
165 for (; I != E ; ++I) { Keys.push_back(I->getKey()); }
166 sort(Keys.begin(), Keys.end());
169 for (unsigned i = 0, n = Keys.size(); i < n ; ++i) {
170 StringRef Key = Keys[i];
174 llvm::errs() << "[stats]\n" << "num-entries = " << Keys.size() << '\n';
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.JavaExtensions/
DictionaryExtensions.cs 107 return new HashSet<object>(map.Keys.Cast<object>());
112 return new HashSet<TKey>(map.Keys);
118 return new HashSet<TKey>(map.Keys);
123 return new HashSet<object>(map.Keys.Cast<object>());
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
DictionaryExtensions.cs 113 return new HashSet<object>( map.Keys.Cast<object>() );
119 return new HashSet<TKey>( map.Keys );
126 return new HashSet<TKey>( map.Keys );
132 return new HashSet<object>( map.Keys.Cast<object>() );
  /external/webkit/Source/JavaScriptCore/wtf/
HashIterators.h 40 typedef HashTableConstKeysIterator<HashTableType, KeyType, MappedType> Keys;
52 Keys keys() { return Keys(*this); } function in struct:WTF::HashTableConstIteratorAdapter
62 typedef HashTableKeysIterator<HashTableType, KeyType, MappedType> Keys;
79 Keys keys() { return Keys(*this); } function in struct:WTF::HashTableIteratorAdapter
  /external/webkit/Source/WebCore/plugins/win/
PluginPackageWin.cpp 332 MIMEToExtensionsMap::const_iterator::Keys end = a.m_mimeToExtensions.end().keys();
333 for (MIMEToExtensionsMap::const_iterator::Keys it = a.m_mimeToExtensions.begin().keys(); it != end; ++it) {
  /external/clang/lib/Edit/
RewriteObjCFoundationAPI.cpp 570 SmallVector<const Expr *, 8> Keys;
571 if (!getNSArrayObjects(Msg->getArg(1), NS, Keys))
574 if (Vals.size() != Keys.size())
584 objectifyExpr(Keys[i], commit);
587 SourceRange KeyRange = Keys[i]->getSourceRange();
594 SourceRange ArgRange(Keys.front()->getLocStart(),
595 Keys.back()->getLocEnd());
627 SmallVector<const Expr *, 8> Keys;
628 if (!getNSArrayObjects(Msg->getArg(1), NS, Keys))
631 if (Vals.size() != Keys.size()
    [all...]
  /external/ppp/pppd/plugins/radius/etc/
dictionary.microsoft 23 ATTRIBUTE MS-CHAP-MPPE-Keys 12 string Microsoft
  /external/webkit/Source/WebCore/plugins/android/
PluginPackageAndroid.cpp 395 MIMEToExtensionsMap::const_iterator::Keys end =
396 a.m_mimeToExtensions.end().keys();
397 for (MIMEToExtensionsMap::const_iterator::Keys it =
398 a.m_mimeToExtensions.begin().keys();
  /external/expat/bcb5/
elements.mak 70 [Version Info Keys]
expat.mak 71 [Version Info Keys]
expat_static.mak 71 [Version Info Keys]
expatw.mak 71 [Version Info Keys]
expatw_static.mak 72 [Version Info Keys]
outline.mak 70 [Version Info Keys]

Completed in 322 milliseconds

1 2 3