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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/v8/test/mjsunit/regress/
regress-1150.js 28 // Test that Object.keys is working correctly on the global object.
32 var keys = Object.keys(global);
33 assertTrue(keys.indexOf("a") > 0);
regress-crbug-158185.js 29 Object.keys(JSON.parse('{"0023456": 1}'))[0]);
31 Object.keys(JSON.parse('{"1234567890123": 1}'))[0]);
33 Object.keys(JSON.parse('{"123456789ABCD": 1}'))[0]);
35 Object.keys(JSON.parse('{"12A": 1}'))[0]);
  /external/llvm/test/YAMLParser/
construct-null.data 6 # This mapping has four keys,
  /external/v8/test/mjsunit/regress/
regress-1150.js 28 // Test that Object.keys is working correctly on the global object.
32 var keys = Object.keys(global);
33 assertTrue(keys.indexOf("a") > 0);
  /libcore/luni/src/main/java/java/security/
package.html 10 {@link java.security.Key Keys}, {@link java.security.KeyStore KeyStores}, {@link
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/
ScrolledText.py 32 text_meths = vars(Text).keys()
33 methods = vars(Pack).keys() + vars(Grid).keys() + vars(Place).keys()
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/
ScrolledText.py 32 text_meths = vars(Text).keys()
33 methods = vars(Pack).keys() + vars(Grid).keys() + vars(Place).keys()
  /external/marisa-trie/lib/marisa/
trie.h 25 void build(const char * const *keys, std::size_t num_keys,
30 void build(const std::vector<std::string> &keys,
32 void build(const std::vector<std::pair<std::string, double> > &keys,
115 UInt32 *key_ids, std::string *keys, std::size_t max_num_results) const;
117 UInt32 *key_ids, std::string *keys, std::size_t max_num_results) const;
119 UInt32 *key_ids, std::string *keys, std::size_t max_num_results) const;
123 std::vector<std::string> *keys = NULL,
127 std::vector<std::string> *keys = NULL,
131 std::vector<std::string> *keys = NULL,
135 UInt32 *key_ids, std::string *keys, std::size_t max_num_results) const
    [all...]
  /external/marisa-trie/v0_1_5/lib/marisa_alpha/
trie.h 25 void build(const char * const *keys, std::size_t num_keys,
30 void build(const std::vector<std::string> &keys,
32 void build(const std::vector<std::pair<std::string, double> > &keys,
115 UInt32 *key_ids, std::string *keys, std::size_t max_num_results) const;
117 UInt32 *key_ids, std::string *keys, std::size_t max_num_results) const;
119 UInt32 *key_ids, std::string *keys, std::size_t max_num_results) const;
123 std::vector<std::string> *keys = NULL,
127 std::vector<std::string> *keys = NULL,
131 std::vector<std::string> *keys = NULL,
135 UInt32 *key_ids, std::string *keys, std::size_t max_num_results) const
    [all...]
  /cts/tests/tests/os/src/android/os/cts/
UsbDebuggingTest.java 30 // Don't ship vendor keys in user build
32 File keys = new File("/adb_keys"); local
33 assertFalse(keys.exists());
  /external/chromium/crypto/
rsa_private_key_nss_unittest.cc 32 // Create a keypair, which will put the keys in the user's NSSDB.
45 // Create a keypair, which will put the keys in the user's NSSDB.
51 // Remove the keys from the DB, and make sure we can't find them again.
  /external/chromium_org/base/debug/
crash_logging_unittest.cc 48 base::debug::CrashKey keys[] = { { kTestKey, 255 } }; local
49 base::debug::InitCrashKeys(keys, arraysize(keys), 255);
63 base::debug::CrashKey keys[] = { { kTestKey, 15 } }; local
64 base::debug::InitCrashKeys(keys, arraysize(keys), 5);
108 base::debug::CrashKey keys[] = { { kTestKey, 255 } }; local
109 base::debug::InitCrashKeys(keys, arraysize(keys), 255);
123 base::debug::CrashKey keys[] = local
    [all...]
  /external/chromium_org/chrome/browser/extensions/api/bookmarks/
bookmark_api_helpers.cc 19 namespace keys = bookmark_api_constants;
105 dict->SetString(keys::kIdKey, base::Int64ToString(node->id()));
109 dict->SetString(keys::kParentIdKey, base::Int64ToString(parent->id()));
110 dict->SetInteger(keys::kIndexKey, parent->GetIndexOf(node));
114 dict->SetString(keys::kUrlKey, node->url().spec());
119 dict->SetDouble(keys::kDateFolderModifiedKey,
123 dict->SetString(keys::kTitleKey, node->GetTitle());
126 dict->SetDouble(keys::kDateAddedKey,
140 dict->Set(keys::kChildrenKey, children);
173 *error = keys::kNoNodeError
    [all...]
  /external/chromium_org/chrome/browser/extensions/api/storage/
weak_unlimited_settings_storage.h 25 virtual size_t GetBytesInUse(const std::vector<std::string>& keys) OVERRIDE;
28 virtual ReadResult Get(const std::vector<std::string>& keys) OVERRIDE;
37 virtual WriteResult Remove(const std::vector<std::string>& keys) OVERRIDE;
  /external/chromium_org/chrome/test/webdriver/commands/
keys_command.cc 34 string16 keys; local
35 Error* error = FlattenStringArray(key_list, &keys);
41 error = session_->SendKeys(keys);
  /external/chromium_org/chromeos/
chromeos_paths.h 10 // This file declares path keys for the chromeos module. These can be used with
21 // the user policy keys.
34 // Call once to register the provider for the path keys defined above.
  /external/chromium_org/remoting/protocol/
input_event_tracker.h 20 // |input_stub| for all currently-pressed keys and buttons when necessary.
29 // Returns the count of keys currently pressed.
32 // Dispatch release events for all currently-pressed keys and mouse buttons
  /external/clang/test/SemaObjC/
foreach.m 7 id keys;
16 for (id thisKey in keys); /* expected-warning {{unused variable 'thisKey'}} */
17 for (id thisKey in keys); /* expected-warning {{unused variable 'thisKey'}} */
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src/org/eclipse/releng/generators/
FetchBaseTask.java 54 Enumeration keys=properties.keys(); local
55 while (keys.hasMoreElements()){
56 String key=keys.nextElement().toString();
148 Enumeration keys=entries.keys(); local
149 while (keys.hasMoreElements()){
150 script=script.concat("\t\t<antcall target=\""+keys.nextElement()+"\" />\n");
153 keys=entries.keys();
    [all...]
  /external/kernel-headers/original/linux/
keychord.h 30 * all of the keys in the keycode list are in the pressed state.
31 * The order in which the keys are pressed does not matter.
32 * The keychord will not be signalled if keys not in the keycode
  /external/marisa-trie/
README 18 * Prefix searches are to find keys from prefixes of a given query.
19 * Predictive searches are to find keys starting with a given query.
26 * Number of keys: 8,279,325
  /libcore/luni/src/main/java/java/nio/channels/
Selector.java 27 * {@link SelectionKey} that represents the registration. The keys are also
28 * added to the selector's key set. Selection keys can be canceled so that the
31 * By invoking the {@code select} method, the key set is checked and all keys
33 * canceled keys. During the select operation, the channels registered with this
59 * {@link #wakeup()} method of this selector is called. After this, all keys
81 * Gets the set of registered keys. The set is immutable and is not thread-
84 * @return the set of registered keys.
86 public abstract Set<SelectionKey> keys(); method in class:Selector
130 * Gets the selection keys whose channels are ready for operation. The set
131 * is not thread-safe and no keys may be added to it. Removing keys i
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/curses/
wrapper.py 24 # Turn off echoing of keys, and enter cbreak mode,
29 # In keypad mode, escape sequences for special keys
30 # (like the cursor keys) will be interpreted and
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_dictviews.py 19 keys = d.viewkeys()
20 self.assertEqual(len(keys), 2)
21 self.assertEqual(set(keys), set([1, "a"]))
22 self.assertEqual(keys, set([1, "a"]))
23 self.assertNotEqual(keys, set([1, "a", "b"]))
24 self.assertNotEqual(keys, set([1, "b"]))
25 self.assertNotEqual(keys, set([1]))
26 self.assertNotEqual(keys, 42)
27 self.assertIn(1, keys)
28 self.assertIn("a", keys)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/curses/
wrapper.py 24 # Turn off echoing of keys, and enter cbreak mode,
29 # In keypad mode, escape sequences for special keys
30 # (like the cursor keys) will be interpreted and

Completed in 1235 milliseconds

1 2 3 4 5 6 7 8 91011>>