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

<<31323334353637383940>>

  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
HashtableTest.java 124 Enumeration keys = h.keys(); local
126 && !(keys.hasMoreElements()));
139 Enumeration org = htfull.keys();
140 Enumeration cpy = h.keys();
149 assertTrue("Copy has more keys than original", !cpy.hasMoreElements());
200 assertEquals("All keys not retrieved", 10, ht10.size());
364 * @tests java.util.Hashtable#keys()
367 // Test for method java.util.Enumeration java.util.Hashtable.keys()
369 Enumeration keys = ht10.keys() local
    [all...]
PropertyResourceBundleTest.java 115 assertEquals("Returned the wrong number of keys", 2, keyCount);
116 assertTrue("Returned the wrong keys", test.contains("p1")
186 Enumeration<String> keys = localPrb.getKeys(); local
188 while (keys.hasMoreElements()) {
189 contents.add(keys.nextElement());
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
KeyDeclaration.java 27 * Holds the attribute declarations for the xsl:keys element.
28 * A stylesheet declares a set of keys for each document using
29 * the xsl:key element. When this set of keys contains a member
103 * information about the keys of any node that matches the
117 * information about the keys of any node that matches the
  /external/bluetooth/bluedroid/bta/include/
bta_dm_co.h 218 ** *p_init_key - initiator keys.
219 ** *p_resp_key - responder keys.
236 ** Description This callout function is to load the local BLE keys if available
260 ** *p_init_key - initiator keys.
261 ** *p_resp_key - responder keys.
  /external/chromium/chrome/browser/extensions/
extension_webrequest_api.cc 29 namespace keys = extension_webrequest_api_constants;
35 keys::kOnBeforeRedirect,
36 keys::kOnBeforeRequest,
37 keys::kOnBeforeSendHeaders,
38 keys::kOnCompleted,
39 keys::kOnErrorOccurred,
40 keys::kOnHeadersReceived,
41 keys::kOnRequestSent
307 GetMatchingListeners(profile_id, keys::kOnBeforeRequest, request->url(),
321 dict->SetString(keys::kRequestIdKey
    [all...]
  /external/chromium/chrome/browser/renderer_host/
gtk_key_bindings_handler_unittest.cc 52 GdkKeymapKey *keys = NULL; local
54 if (gdk_keymap_get_entries_for_keyval(keymap, keyval, &keys, &n_keys)) {
64 event.hardware_keycode = keys[0].keycode;
65 event.group = keys[0].group;
67 g_free(keys);
  /external/chromium/chrome/browser/sync/util/
extensions_activity_monitor_unittest.cc 19 namespace keys = extension_manifest_keys;
73 input.SetString(keys::kVersion, kTestExtensionVersion);
74 input.SetString(keys::kName, kTestExtensionName);
132 input.SetString(keys::kVersion, kTestExtensionVersion);
133 input.SetString(keys::kName, kTestExtensionName);
  /external/chromium/chrome/common/extensions/docs/examples/api/cookies/
manager.html 51 // Returns an array of sorted keys from an associative array.
53 var keys = [];
55 keys.push(i);
57 keys.sort();
58 return keys;
  /external/chromium_org/chrome/browser/extensions/api/
execute_code_function.cc 18 namespace keys = tabs_constants;
81 error_ = ErrorUtils::FormatErrorMessage(keys::kLoadFileError,
141 error_ = keys::kNoCodeOrFileToExecuteError;
145 error_ = keys::kMoreThanOneValuesError;
160 error_ = keys::kNoCodeOrFileToExecuteError;
  /external/chromium_org/chrome/browser/extensions/api/idle/
idle_manager.cc 20 namespace keys = extensions::idle_api_constants;
54 scoped_ptr<Event> event(new Event(keys::kOnStateChanged, args.Pass()));
193 description = keys::kStateActive;
195 description = keys::kStateIdle;
197 description = keys::kStateLocked;
  /external/chromium_org/chrome/browser/extensions/api/storage/
policy_value_store_unittest.cc 66 virtual WriteResult Remove(const std::vector<std::string>& keys) OVERRIDE {
67 return delegate()->Remove(keys);
149 std::vector<std::string> keys; local
150 keys.push_back("key");
151 EXPECT_TRUE(store_->Remove(keys)->HasError());
  /external/chromium_org/chrome/browser/extensions/api/tabs/
tabs_interactive_test.cc 17 namespace keys = extensions::tabs_constants;
49 EXPECT_FALSE(result.get()->GetList(keys::kTabsKey, &tabs));
62 EXPECT_TRUE(result.get()->GetList(keys::kTabsKey, &tabs));
101 keys::kWindowIdKey));
118 keys::kWindowIdKey));
  /external/chromium_org/chrome/browser/value_store/
value_store.h 112 virtual size_t GetBytesInUse(const std::vector<std::string>& keys) = 0;
121 virtual ReadResult Get(const std::vector<std::string>& keys) = 0;
131 // Sets multiple keys to new values.
138 // Removes multiple keys from the storage.
139 virtual WriteResult Remove(const std::vector<std::string>& keys) = 0;
  /external/chromium_org/chrome/common/extensions/docs/examples/api/cookies/
manager.js 31 // Returns an array of sorted keys from an associative array.
33 var keys = [];
35 keys.push(i);
37 keys.sort();
38 return keys;
  /external/chromium_org/content/browser/renderer_host/
gtk_key_bindings_handler_unittest.cc 56 GdkKeymapKey *keys = NULL; local
58 if (gdk_keymap_get_entries_for_keyval(keymap, keyval, &keys, &n_keys)) {
68 event.hardware_keycode = keys[0].keycode;
69 event.group = keys[0].group;
71 g_free(keys);
  /external/chromium_org/third_party/WebKit/Tools/TestResultServer/static-dashboards/
builders.js 39 Object.keys(master.tests).forEach(function(testType) {
44 builders.groups = Object.keys(groups);
46 builders.testTypes = Object.keys(testTypes);
113 var allMasterNames = Object.keys(builders.masters);
117 var testTypes = Object.keys(master.tests);
  /external/chromium_org/third_party/leveldatabase/src/db/
dbformat.cc 105 void InternalFilterPolicy::CreateFilter(const Slice* keys, int n,
108 // adjusting keys[].
109 Slice* mkey = const_cast<Slice*>(keys);
111 mkey[i] = ExtractUserKey(keys[i]);
114 user_policy_->CreateFilter(keys, n, dst);
  /external/chromium_org/third_party/leveldatabase/src/helpers/memenv/
memenv_test.cc 191 const Slice keys[] = {Slice("aaa"), Slice("bbb"), Slice("ccc")}; local
196 ASSERT_OK(db->Put(WriteOptions(), keys[i], vals[i]));
201 ASSERT_OK(db->Get(ReadOptions(), keys[i], &res));
209 ASSERT_TRUE(keys[i] == iterator->key());
221 ASSERT_OK(db->Get(ReadOptions(), keys[i], &res));
  /external/chromium_org/third_party/yasm/source/patched-yasm/tools/genperf/
perfect.h 23 #define RETRY_HEX 200 /* RETRY_PERFECT when hex keys given */
97 key *list_b; /* tabb[i].list_b is list of keys with b==i */
123 /* Given the keys, scramble[], and hash mode, find the perfect hash */
125 gencode *final, ub4 *scramble, ub4 *smax, key *keys, ub4 nkeys,
129 int inithex(key *keys, ub4 nkeys, ub4 alen, ub4 blen, ub4 smax, ub4 salt,
  /external/chromium_org/tools/perf_expectations/tests/
perf_expectations_unittest.py 105 msg = "perf expectations keys have non-dict values"
108 # Test all key values have delta and var keys.
138 # Test all keys have the correct format.
147 msg = "perf expectations keys in bad format, expected a/b/c/d"
159 # Require the following keys.
  /external/doclava/src/com/google/doclava/
Hierarchy.java 51 * Set<String> keys = nodes.keySet(); for (String n: keys) { System.out.println("class: " + n);
65 Set<String> keys = nodes.keySet(); local
66 if (keys.size() > 0) {
69 for (String n : keys) {
  /external/dropbear/
README 31 OpenSSH sshd manpage, and will not allow a login for these keys.
38 OpenSSH style keys to Dropbear format, or use dropbearkey to create them.
45 Currently encrypted keys aren't supported, neither is agent forwarding. At some
55 To run the server, you need to generate server keys, this is one-off:
59 or alternatively convert OpenSSH keys to Dropbear:
  /external/guava/guava/src/com/google/common/collect/
ImmutableClassToInstanceMap.java 63 * keys are not allowed, and will cause {@link #build} to fail.
71 * Associates all of {@code map's} keys and values in the built map.
72 * Duplicate keys are not allowed, and will cause {@link #build} to fail.
97 * @throws IllegalArgumentException if duplicate keys were added
106 * {@code map} somehow contains entries with duplicate keys (for example, if
  /external/ipsec-tools/src/racoon/
plainrsa-gen.8 39 .Nd generator for Plain RSA keys
53 .Li Plain RSA keys
56 .Li Plain RSA keys
59 .Li Pre-shared keys
73 Note that generating longer keys takes longer time.
  /external/skia/tools/
jsondiff.py 83 for test_name in all_expectations.keys():
123 for result_type in all_result_types.keys():
126 for test_name in results_of_this_type.keys():
139 all_keys = set(old_dict.keys() + new_dict.keys())

Completed in 1435 milliseconds

<<31323334353637383940>>