Searched refs:keys (Results 276 - 300 of 1413) sorted by relevance

<<11121314151617181920>>

/external/chromium_org/chrome/browser/extensions/api/storage/
H A Dsyncable_settings_storage.h38 virtual size_t GetBytesInUse(const std::vector<std::string>& keys) OVERRIDE;
41 virtual ReadResult Get(const std::vector<std::string>& keys) OVERRIDE;
50 virtual WriteResult Remove(const std::vector<std::string>& keys) OVERRIDE;
H A Dpolicy_value_store.cc56 // determining which keys are currently stored, or of determining which keys
65 // may be no way of telling which keys were previously present.
129 size_t PolicyValueStore::GetBytesInUse(const std::vector<std::string>& keys) { argument
144 const std::vector<std::string>& keys) {
145 return delegate_->Get(keys);
167 const std::vector<std::string>& keys) {
143 Get( const std::vector<std::string>& keys) argument
166 Remove( const std::vector<std::string>& keys) argument
/external/chromium_org/chrome/browser/resources/cryptotoken/
H A Dappid.js25 return Object.keys(origins);
48 return Object.keys(appIds);
76 this.distinctAppIds_ = Object.keys(appIdsMap);
/external/chromium_org/extensions/browser/value_store/
H A Dleveldb_value_store.h34 virtual size_t GetBytesInUse(const std::vector<std::string>& keys) OVERRIDE;
37 virtual ReadResult Get(const std::vector<std::string>& keys) OVERRIDE;
46 virtual WriteResult Remove(const std::vector<std::string>& keys) OVERRIDE;
/external/chromium_org/extensions/test/data/
H A Dunit_test_environment_specific_bindings.js84 if (this.numCallbacksToRun_ <= 0 || $Object.keys(this.timeouts_).length == 0)
89 var timeoutIds = $Object.keys(this.timeouts_);
98 $Function.apply(Math.min, null, $Object.keys((timeoutsByTimeout)));
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/components/
H A DPanel.js129 * @param {!Array.<!WebInspector.KeyboardShortcut.Descriptor>} keys
132 registerShortcuts: function(keys, handler)
134 for (var i = 0; i < keys.length; ++i)
135 this._shortcuts[keys[i].key] = handler;
/external/chromium_org/third_party/WebKit/Source/platform/exported/
H A DWebServiceWorkerResponse.cpp84 Vector<String> keys; local
86 keys.append(it->key);
88 return keys;
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/
H A Dmisc.py102 keys = v.keys()
103 for k in sorted(keys):
/external/chromium_org/third_party/leveldatabase/src/table/
H A Dfilter_block_test.cc23 virtual void CreateFilter(const Slice* keys, int n, std::string* dst) const { argument
25 uint32_t h = Hash(keys[i].data(), keys[i].size(), 1);
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/tracks/
H A DAmf0Track.java70 LinkedList<Long> keys = new LinkedList<Long>(rawSamples.keySet());
71 Collections.sort(keys);
73 for (Long key : keys) {
/external/chromium_org/chrome/browser/extensions/api/declarative_webrequest/
H A Dwebrequest_rules_registry_unittest.cc48 namespace keys = declarative_webrequest_constants;
107 http_condition_url_filter.Set(keys::kUrlKey, http_condition_dict);
108 http_condition_url_filter.SetString(keys::kInstanceTypeKey,
109 keys::kRequestMatcherType);
118 https_condition_url_filter.Set(keys::kUrlKey, https_condition_dict);
119 https_condition_url_filter.SetString(keys::kInstanceTypeKey,
120 keys::kRequestMatcherType);
123 action_dict.SetString(keys::kInstanceTypeKey, keys::kCancelRequestType);
139 condition_dict.SetString(keys
[all...]
/external/bluetooth/bluedroid/stack/btm/
H A Dbtm_ble.c798 p_dev_rec->ble.keys.local_counter++;
800 p_dev_rec->ble.keys.counter++;
803 p_dev_rec->ble.keys.local_counter,
804 p_dev_rec->ble.keys.counter);
854 if (p_dev_rec && p_dev_rec->ble.keys.div)
857 *p_div = p_dev_rec->ble.keys.div;
868 ** an BLE key. SMP is internal, whereas all the keys shall
896 memcpy(p_rec->ble.keys.ltk, p_keys->penc_key.ltk, BT_OCTET16_LEN);
897 memcpy(p_rec->ble.keys.rand, p_keys->penc_key.rand, BT_OCTET8_LEN);
898 p_rec->ble.keys
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/keystore/pkcs12/
H A DPKCS12KeyStoreSpi.java114 private IgnoresCaseHashtable keys = new IgnoresCaseHashtable(); field in class:PKCS12KeyStoreSpi
234 Enumeration e = certs.keys();
240 e = keys.keys();
250 return tab.keys();
256 return (certs.get(alias) != null || keys.get(alias) != null);
267 Key k = (Key)keys.remove(alias);
326 Enumeration k = certs.keys();
340 k = keyCerts.keys();
413 Enumeration e = chainCerts.keys();
1700 private Hashtable keys = new Hashtable(); field in class:PKCS12KeyStoreSpi.IgnoresCaseHashtable
1715 public Enumeration keys() method in class:PKCS12KeyStoreSpi.IgnoresCaseHashtable
[all...]
/external/chromium_org/chrome/browser/extensions/api/declarative_content/
H A Dcontent_action.cc31 namespace keys = declarative_content_constants;
229 factory_methods[keys::kShowPageAction] =
231 factory_methods[keys::kRequestContentScript] =
233 factory_methods[keys::kSetIcon] =
297 instance_type != std::string(keys::kRequestContentScript))
320 if (!dict->HasKey(keys::kCss) && !dict->HasKey(keys::kJs)) {
324 if (dict->HasKey(keys::kCss)) {
325 INPUT_FORMAT_VALIDATE(dict->GetList(keys::kCss, &list_value));
329 if (dict->HasKey(keys
[all...]
/external/chromium_org/chrome/browser/resources/chromeos/
H A Dkeyboard_overlay_accessibility_helper.js22 var keyData = keyboardGlyphData.keys[identifier];
/external/chromium_org/chrome/browser/resources/chromeos/login/
H A Dscreen_context.js72 return Object.keys(this.changes_).length > 0;
76 * Applies |changes| to context. Returns Array of changed keys' names.
95 return Object.keys(changes);
/external/chromium_org/chrome/common/extensions/docs/server2/
H A Ddata_source_registry.py40 return _all_data_sources.keys()
/external/chromium_org/components/policy/core/common/
H A Dpreg_parser_win_unittest.cc24 RegistryDict::KeyMap::const_iterator iter_key_a(a.keys().begin());
25 RegistryDict::KeyMap::const_iterator iter_key_b(b.keys().begin());
26 for (; iter_key_a != a.keys().end() && iter_key_b != b.keys().end();
/external/chromium_org/media/cdm/
H A Djson_web_key.h40 // { "keys": [ JWK1, JWK2, ... ], "type":"temporary" }
41 // A symmetric keys JWK looks like the following in JSON:
61 // a valid JWK Set, then true is returned and |keys| and |session_type| are
64 KeyIdAndKeyPairs* keys,
/external/chromium_org/media/tools/constrained_network_server/
H A Dtraffic_control.py156 if key not in config.keys() or config[key] is None:
197 if 'bandwidth' not in config.keys() or not config['bandwidth']:
226 if 'loss' in config.keys() and config['loss']:
230 if 'latency' in config.keys() and config['latency']:
/external/chromium_org/rlz/test/
H A Drlz_test_helpers.cc43 std::map<base::string16, RegistryKeyData> keys; member in struct:__anon10536::RegistryKeyData
66 &data->keys[base::string16(i.Name())]);
82 data.keys.begin();
83 iter != data.keys.end(); ++iter) {
/external/chromium_org/sync/syncable/
H A Dnigori_handler.h50 // Set the keystore keys the server returned for this account.
53 const google::protobuf::RepeatedPtrField<std::string>& keys,
/external/chromium_org/third_party/WebKit/Source/modules/serviceworkers/
H A DCacheStorage.h30 ScriptPromise keys(ScriptState*);
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/
H A Dbuilders.py84 return sorted(set(_exact_matches.keys()))
/external/chromium_org/third_party/closure_compiler/
H A Dcompile_modules.py27 keys = d.keys()
30 assert all(r in keys for r in required), "Module missing name or sources"
33 assert all(k in allowed for k in keys), "Module has unknown key"

Completed in 741 milliseconds

<<11121314151617181920>>