HomeSort by relevance Sort by last modified time
    Searched full:keys (Results 601 - 625 of 5906) sorted by null

<<21222324252627282930>>

  /external/chromium_org/net/http/
http_auth_filter_win.h 22 // The common path to all the registry keys containing domain zone information.
  /external/chromium_org/ppapi/api/
ppb_var_dictionary.idl 16 * A dictionary var contains key-value pairs with unique keys. The keys are
78 * Gets all the keys in a dictionary. Please note that for each key that you
85 * @return An array var which contains all the keys of <code>dict</code>. Its
  /external/chromium_org/ppapi/c/
ppb_var_dictionary.h 31 * A dictionary var contains key-value pairs with unique keys. The keys are
87 * Gets all the keys in a dictionary. Please note that for each key that you
94 * @return An array var which contains all the keys of <code>dict</code>. Its
  /external/chromium_org/third_party/WebKit/ManualTests/chromium/
autofill-popup-shiftupdown.hml 4 <h3>Test shift + up/down keys work fine even when autofill popup window is shown.</h3>
modifiers-during-drag-and-drop.html 20 <p>Drag the "Drag me" with any modifier keys pressed (Shift/Ctrl/Alt) and see if the log messages have the correct modifier state</p>
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSKeyframeRule.cpp 57 void StyleKeyframe::parseKeyString(const String& s, Vector<float>& keys)
59 keys.clear();
78 keys.clear();
81 keys.append(key);
  /external/chromium_org/third_party/WebKit/Source/core/dom/
CustomElementUpgradeCandidateMap.cpp 40 UpgradeCandidateMap::const_iterator::Keys end = m_upgradeCandidates.end().keys();
41 for (UpgradeCandidateMap::const_iterator::Keys it = m_upgradeCandidates.begin().keys(); it != end; ++it)
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLKeygenElement.cpp 57 Vector<String> keys; local
58 getSupportedKeySizes(keys);
63 for (size_t i = 0; i < keys.size(); ++i) {
65 option->appendChild(Text::create(document(), keys[i]), ASSERT_NO_EXCEPTION);
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/htmlfiles/
jquery.hotkeys.js 42 keys = handleObj.data.toLowerCase().split(" ");
51 // Keypress represents characters, not special keys
87 for ( var i = 0, l = keys.length; i < l; i++ ) {
88 if ( possible[ keys[i] ] ) {
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/servers/data/rebaselineserver/
util.js 98 var keys = [];
100 keys.push(key);
102 keys.sort();
103 return keys;
  /external/chromium_org/third_party/jinja2/
defaults.py 40 __all__ = tuple(x for x in locals().keys() if x.isupper())
  /external/chromium_org/third_party/leveldatabase/src/table/
filter_block.cc 55 // Fast path if there are no keys for this filter
60 // Make list of keys from flattened key structure
69 // Generate filter for current set of keys and append to result_.
104 // Empty filters do not match any keys
  /external/chromium_org/third_party/tlslite/
setup.py 22 description="tlslite implements SSL and TLS with SRP, shared-keys, cryptoID, or X.509 authentication.",
  /external/chromium_org/third_party/tlslite/tlslite/
__init__.py 4 such as SRP, shared keys, and cryptoIDs, in addition to X.509
  /external/chromium_org/tools/gyp/test/configurations/invalid/
gyptest-configurations.py 13 # Keys that do not belong inside a configuration dictionary.
  /external/chromium_org/tools/stats_viewer/
OpenDialog.cs 39 if (e.KeyCode == Keys.Enter)
  /external/chromium_org/ui/base/accelerators/
platform_accelerator_cocoa.h 15 // This is a Mac specific class for specifing accelerator keys.
platform_accelerator_gtk.h 18 // This is a GTK specific class for specifing accelerator keys.
  /external/chromium_org/ui/base/keycodes/
keyboard_code_conversion_gtk.cc 73 GdkKeymapKey* keys; local
77 if (keyval && gdk_keymap_get_entries_for_keyval(0, keyval, &keys, &n_keys)) {
78 native_keycode = keys[0].keycode;
79 g_free(keys);
  /external/clang/test/ARCMT/
objcmt-instancetype.m 49 + (id)dictionaryWithObjects:(const id [])objects forKeys:(const id [])keys count:(unsigned long)cnt;
52 + (id)dictionaryWithObjects:(NSArray *)objects forKeys:(NSArray *)keys;
54 - (id)initWithObjects:(const id [])objects forKeys:(const id [])keys count:(unsigned long)cnt;
57 - (id)initWithObjects:(NSArray *)objects forKeys:(NSArray *)keys;
objcmt-instancetype.m.result 49 + (instancetype)dictionaryWithObjects:(const id [])objects forKeys:(const id [])keys count:(unsigned long)cnt;
52 + (instancetype)dictionaryWithObjects:(NSArray *)objects forKeys:(NSArray *)keys;
54 - (instancetype)initWithObjects:(const id [])objects forKeys:(const id [])keys count:(unsigned long)cnt;
57 - (instancetype)initWithObjects:(NSArray *)objects forKeys:(NSArray *)keys;
objcmt-subscripting-literals-in-arc.m 62 + (id)dictionaryWithObjects:(const id [])objects forKeys:(const id [])keys count:(unsigned long)cnt;
65 + (id)dictionaryWithObjects:(NSArray *)objects forKeys:(NSArray *)keys;
67 - (id)initWithObjects:(const id [])objects forKeys:(const id [])keys count:(unsigned long)cnt;
70 - (id)initWithObjects:(NSArray *)objects forKeys:(NSArray *)keys;
objcmt-subscripting-literals-in-arc.m.result 62 + (id)dictionaryWithObjects:(const id [])objects forKeys:(const id [])keys count:(unsigned long)cnt;
65 + (id)dictionaryWithObjects:(NSArray *)objects forKeys:(NSArray *)keys;
67 - (id)initWithObjects:(const id [])objects forKeys:(const id [])keys count:(unsigned long)cnt;
70 - (id)initWithObjects:(NSArray *)objects forKeys:(NSArray *)keys;
objcmt-subscripting-unavailable.m 39 + (id)dictionaryWithObjects:(const id [])objects forKeys:(const id [])keys count:(unsigned long)cnt;
42 + (id)dictionaryWithObjects:(NSArray *)objects forKeys:(NSArray *)keys;
44 - (id)initWithObjects:(const id [])objects forKeys:(const id [])keys count:(unsigned long)cnt;
47 - (id)initWithObjects:(NSArray *)objects forKeys:(NSArray *)keys;
  /external/clang/test/Analysis/
dead-stores.m 33 NSArray *keys;
34 if ((keys = [anObject exposedBindings]) && // no-warning
35 ([keys containsObject:@"name"] && [keys containsObject:@"icon"])) {}

Completed in 1724 milliseconds

<<21222324252627282930>>