Searched refs:key (Results 251 - 275 of 6813) sorted by relevance

<<11121314151617181920>>

/external/chromium_org/chrome/installer/util/
H A Ddelete_reg_value_work_item_unittest.cc27 // Create a temporary key for testing
28 RegKey key(HKEY_CURRENT_USER, L"", KEY_ALL_ACCESS);
29 key.DeleteKey(kTestRoot);
30 ASSERT_NE(ERROR_SUCCESS, key.Open(HKEY_CURRENT_USER, kTestRoot, KEY_READ));
32 key.Create(HKEY_CURRENT_USER, kTestRoot, KEY_READ));
36 // Clean up the temporary key
37 RegKey key(HKEY_CURRENT_USER, L"", KEY_ALL_ACCESS);
38 ASSERT_EQ(ERROR_SUCCESS, key.DeleteKey(kTestRoot));
47 RegKey key; local
52 key
104 RegKey key; local
[all...]
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
H A DDOMWrapperMap.h51 v8::Handle<v8::Object> newLocal(KeyType* key, v8::Isolate* isolate) argument
53 return m_map.Get(key);
56 bool setReturnValueFrom(v8::ReturnValue<v8::Value> returnValue, KeyType* key) argument
58 return m_map.SetReturnValue(key, returnValue);
61 void setReference(const v8::Persistent<v8::Object>& parent, KeyType* key, v8::Isolate* isolate) argument
63 m_map.SetReference(key, parent);
66 bool containsKey(KeyType* key) argument
68 return m_map.Contains(key);
71 void set(KeyType* key, v8::Handle<v8::Object> wrapper, const WrapperTypeInfo* wrapperTypeInfo) argument
73 ASSERT(reinterpret_cast<KeyType*>(toScriptWrappableBase(wrapper)) == key);
85 removeAndDispose(KeyType* key) argument
107 Set( Impl* impl, KeyType* key, v8::PersistentContainerValue value) argument
114 Get(const Impl* impl, KeyType* key) argument
119 Remove(Impl* impl, KeyType* key) argument
129 WeakCallbackParameter(MapType* map, KeyType* key, v8::Local<v8::Object>& value) argument
148 Dispose(v8::Isolate* isolate, v8::UniquePersistent<v8::Object> value, KeyType* key) argument
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/program/
H A Dhash_table.c51 const void *key; member in struct:hash_node
112 get_node(struct hash_table *ht, const void *key) argument
114 const unsigned hash_value = (*ht->hash)(key);
121 if ((*ht->compare)(hn->key, key) == 0) {
130 hash_table_find(struct hash_table *ht, const void *key) argument
132 struct hash_node *hn = get_node(ht, key);
138 hash_table_insert(struct hash_table *ht, void *data, const void *key) argument
140 const unsigned hash_value = (*ht->hash)(key);
147 node->key
153 hash_table_replace(struct hash_table *ht, void *data, const void *key) argument
179 hash_table_remove(struct hash_table *ht, const void *key) argument
190 hash_table_call_foreach(struct hash_table *ht, void (*callback)(const void *key, void *data, void *closure), void *closure) argument
209 hash_table_string_hash(const void *key) argument
225 hash_table_pointer_hash(const void *key) argument
[all...]
/external/mesa3d/src/mesa/program/
H A Dhash_table.c51 const void *key; member in struct:hash_node
112 get_node(struct hash_table *ht, const void *key) argument
114 const unsigned hash_value = (*ht->hash)(key);
121 if ((*ht->compare)(hn->key, key) == 0) {
130 hash_table_find(struct hash_table *ht, const void *key) argument
132 struct hash_node *hn = get_node(ht, key);
138 hash_table_insert(struct hash_table *ht, void *data, const void *key) argument
140 const unsigned hash_value = (*ht->hash)(key);
147 node->key
153 hash_table_replace(struct hash_table *ht, void *data, const void *key) argument
179 hash_table_remove(struct hash_table *ht, const void *key) argument
190 hash_table_call_foreach(struct hash_table *ht, void (*callback)(const void *key, void *data, void *closure), void *closure) argument
209 hash_table_string_hash(const void *key) argument
225 hash_table_pointer_hash(const void *key) argument
[all...]
/external/qemu/qobject/
H A Dqdict.c64 /* Set the initial value from the key size. */
74 static QDictEntry *alloc_entry(const char *key, QObject *value) argument
79 entry->key = g_strdup(key);
96 * qdict_entry_key(): Return qdict entry key
103 return entry->key;
110 const char *key, unsigned int bucket)
115 if (!strcmp(entry->key, key))
124 * Insert the pair 'key
109 qdict_find(const QDict *qdict, const char *key, unsigned int bucket) argument
132 qdict_put_obj(QDict *qdict, const char *key, QObject *value) argument
157 qdict_get(const QDict *qdict, const char *key) argument
170 qdict_haskey(const QDict *qdict, const char *key) argument
187 qdict_get_obj(const QDict *qdict, const char *key, qtype_code type) argument
207 qdict_get_double(const QDict *qdict, const char *key) argument
230 qdict_get_int(const QDict *qdict, const char *key) argument
244 qdict_get_bool(const QDict *qdict, const char *key) argument
258 qdict_get_qlist(const QDict *qdict, const char *key) argument
271 qdict_get_qdict(const QDict *qdict, const char *key) argument
285 qdict_get_str(const QDict *qdict, const char *key) argument
298 qdict_get_try_int(const QDict *qdict, const char *key, int64_t def_value) argument
317 qdict_get_try_bool(const QDict *qdict, const char *key, int def_value) argument
336 qdict_get_try_str(const QDict *qdict, const char *key) argument
353 qdict_iter(const QDict *qdict, void (*iter)(const char *key, QObject *obj, void *opaque), void *opaque) argument
444 qdict_del(QDict *qdict, const char *key) argument
[all...]
/external/chromium_org/third_party/libaddressinput/src/java/src/com/android/i18n/addressinput/
H A DCacheData.java69 * server responds by saying this key is invalid, it will be stored here.
74 * Temporary store for {@code CacheListener}s. When a key is requested and still waiting for
75 * server's response, the listeners for the same key will be temporary stored here. When the
135 * requests of the same key is dispatched and server has not responded yet.
142 * @param key the key for newly arrived data.
144 void onAdd(String key); argument
158 * Pre-existing data for the requested key. Null is allowed.
167 * @param key The key fo
170 JsonHandler(String key, JSONObject oldJso, DataLoadListener listener) argument
246 containsKey(String key) argument
265 fetchDynamicData(final LookupKey key, JSONObject existingJso, final DataLoadListener listener) argument
342 getFromRegionDataConstants(final LookupKey key) argument
362 get(String key) argument
373 getObj(String key) argument
378 notifyListenersAfterJobDone(String key) argument
389 addListenerToTempStore(LookupKey key, CacheListener listener) argument
[all...]
H A DJsoMap.java68 * Remove the specified key.
70 * @param key key name.
72 void delKey(String key) { argument
73 super.remove(key);
77 * Retrieve the string value for specified key.
79 * @param key key name.
84 public String get(String key) { // throws ClassCastException, IllegalArgumentException argument
86 Object o = super.get(key);
116 getInt(String key) argument
147 getObj(String key) argument
175 containsKey(String key) argument
216 put(String key, String value) argument
230 putInt(String key, int value) argument
244 putObj(String key, JSONObject value) argument
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
H A Dbrw_clip.c52 struct brw_clip_prog_key *key )
71 c.key = *key;
81 c.prog_data.clip_mode = c.key.clip_mode; /* XXX */
92 switch (key->primitive) {
94 if (key->do_unfilled)
126 &c.key, sizeof(c.key),
140 struct brw_clip_prog_key key; local
142 memset(&key,
[all...]
/external/chromium_org/tools/gyp/pylib/gyp/
H A Dordered_dict.py71 def __setitem__(self, key, value, dict_setitem=dict.__setitem__):
74 # list, and the inherited dictionary is updated with the new key/value pair.
75 if key not in self:
78 last[1] = root[0] = self.__map[key] = [last, root, key]
79 dict_setitem(self, key, value)
81 def __delitem__(self, key, dict_delitem=dict.__delitem__):
85 dict_delitem(self, key)
86 link_prev, link_next, key = self.__map.pop(key)
[all...]
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dbrw_clip.c52 struct brw_clip_prog_key *key )
71 c.key = *key;
81 c.prog_data.clip_mode = c.key.clip_mode; /* XXX */
92 switch (key->primitive) {
94 if (key->do_unfilled)
126 &c.key, sizeof(c.key),
140 struct brw_clip_prog_key key; local
142 memset(&key,
[all...]
/external/chromium_org/third_party/icu/source/tools/ctestfw/unicode/
H A Ddatamap.h38 * @param key name of the data field.
41 virtual const UnicodeString getString(const char* key, UErrorCode &status) const = 0;
45 * @param key name of the data field.
48 virtual int32_t getInt(const char* key, UErrorCode &status) const = 0;
52 * @param key name of the data field.
56 virtual int32_t getInt28(const char* key, UErrorCode &status) const = 0;
60 * @param key name of the data field.
64 virtual uint32_t getUInt28(const char* key, UErrorCode &status) const = 0;
69 * @param key name of the data field.
73 virtual const int32_t *getIntVector(int32_t &length, const char *key, UErrorCod
[all...]
/external/icu/icu4c/source/tools/ctestfw/unicode/
H A Ddatamap.h38 * @param key name of the data field.
41 virtual const UnicodeString getString(const char* key, UErrorCode &status) const = 0;
45 * @param key name of the data field.
48 virtual int32_t getInt(const char* key, UErrorCode &status) const = 0;
52 * @param key name of the data field.
56 virtual int32_t getInt28(const char* key, UErrorCode &status) const = 0;
60 * @param key name of the data field.
64 virtual uint32_t getUInt28(const char* key, UErrorCode &status) const = 0;
69 * @param key name of the data field.
73 virtual const int32_t *getIntVector(int32_t &length, const char *key, UErrorCod
[all...]
/external/javassist/src/main/javassist/scopedpool/
H A DSoftValueHashMap.java34 public Object key; field in class:SoftValueHashMap.SoftValueRef
36 private SoftValueRef(Object key, Object val, ReferenceQueue q) { argument
38 this.key = key;
41 private static SoftValueRef create(Object key, Object val, argument
46 return new SoftValueRef(key, val, q);
72 if (ref == (SoftValueRef)hash.get(ref.key)) {
75 hash.remove(ref.key);
139 * Returns the number of key-value mappings in this map. <strong>Note:</strong>
150 * Returns <code>true</code> if this map contains no key
164 containsKey(Object key) argument
179 get(Object key) argument
202 put(Object key, Object value) argument
220 remove(Object key) argument
[all...]
/external/wpa_supplicant_8/wpa_supplicant/dbus/
H A Ddbus_dict_helpers.h27 const char *key, const char *value);
30 const char *key, const char value);
33 const char *key,
37 const char *key,
41 const char *key,
45 const char *key,
49 const char *key,
53 const char *key,
57 const char *key,
61 const char *key,
130 const char *key; /** key of the dict entry */ member in struct:wpa_dbus_dict_entry
[all...]
/external/chromium_org/chrome/browser/resources/
H A Dabout_invalidations.js42 for (var key in tableObjects) {
43 keys.push(key);
107 var key = source + '-' + name;
114 if (!(key in tableObjects)) {
115 tableObjects[key] = {
129 tableObjects[key].type = 'content';
131 tableObjects[key].totalCount = tableObjects[key].totalCount + 1;
132 tableObjects[key].sessionCount = tableObjects[key]
[all...]
/external/conscrypt/src/main/java/org/conscrypt/
H A DOpenSSLDHKeyFactory.java70 protected <T extends KeySpec> T engineGetKeySpec(Key key, Class<T> keySpec) argument
72 if (key == null) {
73 throw new InvalidKeySpecException("key == null");
80 if (!"DH".equals(key.getAlgorithm())) {
81 throw new InvalidKeySpecException("Key must be a DH key");
84 if (key instanceof DHPublicKey && DHPublicKeySpec.class.isAssignableFrom(keySpec)) {
85 DHPublicKey dhKey = (DHPublicKey) key;
88 } else if (key instanceof PublicKey && DHPublicKeySpec.class.isAssignableFrom(keySpec)) {
89 final byte[] encoded = key.getEncoded();
90 if (!"X.509".equals(key
135 engineTranslateKey(Key key) argument
[all...]
H A DOpenSSLDSAKeyFactory.java69 protected <T extends KeySpec> T engineGetKeySpec(Key key, Class<T> keySpec) argument
71 if (key == null) {
72 throw new InvalidKeySpecException("key == null");
79 if (!"DSA".equals(key.getAlgorithm())) {
80 throw new InvalidKeySpecException("Key must be a DSA key");
83 if (key instanceof DSAPublicKey && DSAPublicKeySpec.class.isAssignableFrom(keySpec)) {
84 DSAPublicKey dsaKey = (DSAPublicKey) key;
88 } else if (key instanceof PublicKey && DSAPublicKeySpec.class.isAssignableFrom(keySpec)) {
89 final byte[] encoded = key.getEncoded();
90 if (!"X.509".equals(key
140 engineTranslateKey(Key key) argument
[all...]
H A DOpenSSLECKeyFactory.java70 protected <T extends KeySpec> T engineGetKeySpec(Key key, Class<T> keySpec) argument
72 if (key == null) {
73 throw new InvalidKeySpecException("key == null");
80 if (!"EC".equals(key.getAlgorithm())) {
81 throw new InvalidKeySpecException("Key must be an EC key");
84 if (key instanceof ECPublicKey && ECPublicKeySpec.class.isAssignableFrom(keySpec)) {
85 ECPublicKey ecKey = (ECPublicKey) key;
87 } else if (key instanceof PublicKey && ECPublicKeySpec.class.isAssignableFrom(keySpec)) {
88 final byte[] encoded = key.getEncoded();
89 if (!"X.509".equals(key
132 engineTranslateKey(Key key) argument
[all...]
/external/chromium_org/chrome/browser/net/
H A Dproxy_policy_handler.cc66 const base::Value* mode = GetProxyPolicyValue(policies, key::kProxyMode);
67 const base::Value* server = GetProxyPolicyValue(policies, key::kProxyServer);
69 GetProxyPolicyValue(policies, key::kProxyServerMode);
70 const base::Value* pac_url = GetProxyPolicyValue(policies, key::kProxyPacUrl);
72 GetProxyPolicyValue(policies, key::kProxyBypassList);
75 errors->AddError(key::kProxySettings,
76 key::kProxyMode,
99 errors->AddError(key::kProxySettings,
100 key::kProxyPacUrl,
104 errors->AddError(key
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/agreement/
H A DECDHBasicAgreement.java17 * party's private key and another party's public key, where both have
20 * primitive can be invoked by a scheme to derive a shared secret key;
28 private ECPrivateKeyParameters key; field in class:ECDHBasicAgreement
31 CipherParameters key)
33 this.key = (ECPrivateKeyParameters)key;
38 return (key.getParameters().getCurve().getFieldSize() + 7) / 8;
45 ECPoint P = pub.getQ().multiply(key.getD()).normalize();
30 init( CipherParameters key) argument
/external/chromium_org/base/
H A Dsupports_user_data.cc14 SupportsUserData::Data* SupportsUserData::GetUserData(const void* key) const {
16 DataMap::const_iterator found = user_data_.find(key);
22 void SupportsUserData::SetUserData(const void* key, Data* data) { argument
24 user_data_[key] = linked_ptr<Data>(data);
27 void SupportsUserData::RemoveUserData(const void* key) { argument
29 user_data_.erase(key);
/external/chromium_org/chrome/browser/prefs/tracked/
H A Dsegregated_pref_store.cc18 const std::string& key) {
25 PrefStore::Observer, outer_->observers_, OnPrefValueChanged(key));
80 bool SegregatedPrefStore::GetValue(const std::string& key, argument
82 return StoreForKey(key)->GetValue(key, result);
85 void SegregatedPrefStore::SetValue(const std::string& key, base::Value* value) { argument
86 StoreForKey(key)->SetValue(key, value);
89 void SegregatedPrefStore::RemoveValue(const std::string& key) { argument
90 StoreForKey(key)
17 OnPrefValueChanged( const std::string& key) argument
93 GetMutableValue(const std::string& key, base::Value** result) argument
98 ReportValueChanged(const std::string& key) argument
102 SetValueSilently(const std::string& key, base::Value* value) argument
154 StoreForKey(const std::string& key) argument
[all...]
/external/chromium_org/chrome/browser/supervised_user/
H A Dsupervised_user_shared_settings_update.cc14 const std::string& key,
19 key_(key),
22 service->SetValueInternal(su_id, key, *value_, false);
31 const std::string& su_id, const std::string& key) {
35 if (key != key_)
38 const base::Value* value = service_->GetValue(su_id, key);
11 SupervisedUserSharedSettingsUpdate( SupervisedUserSharedSettingsService* service, const std::string& su_id, const std::string& key, scoped_ptr<base::Value> value, const base::Callback<void(bool)>& success_callback) argument
30 OnSettingChanged( const std::string& su_id, const std::string& key) argument
/external/chromium_org/third_party/libaddressinput/chromium/
H A Dchrome_storage_impl.h30 virtual void Put(const std::string& key, std::string* data) OVERRIDE;
31 virtual void Get(const std::string& key, const Callback& data_ready)
35 virtual void OnPrefValueChanged(const std::string& key) OVERRIDE;
40 Request(const std::string& key, const Callback& callback);
42 std::string key; member in struct:autofill::ChromeStorageImpl::Request
47 void DoGet(const std::string& key, const Callback& data_ready);
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/java/src/org/webrtc/
H A DMediaConstraints.java38 /** Simple String key/value pair. */
40 private final String key; field in class:MediaConstraints.KeyValuePair
43 public KeyValuePair(String key, String value) { argument
44 this.key = key;
49 return key;
57 return key + ": " + value;

Completed in 728 milliseconds

<<11121314151617181920>>