Searched refs:key (Results 126 - 150 of 3578) sorted by relevance

1234567891011>>

/external/webkit/Source/WebKit/win/
H A DWebLocalizableStrings.h40 CFStringRef WebLocalizedStringUTF8(WebLocalizableStringsBundle*, LPCSTR key);
41 LPCTSTR WebLocalizedLPCTSTRUTF8(WebLocalizableStringsBundle*, LPCSTR key);
46 CFStringRef WebLocalizedString(WebLocalizableStringsBundle *bundle, LPCTSTR key);
47 LPCTSTR WebLocalizedLPCTSTR(WebLocalizableStringsBundle *bundle, LPCTSTR key);
60 #define UI_STRING_KEY(string, key, comment) WebLocalizedStringUTF8(&LOCALIZABLE_STRINGS_BUNDLE(FRAMEWORK_NAME), key)
62 #define LPCTSTR_UI_STRING_KEY(string, key, comment) WebLocalizedLPCTSTRUTF8(&LOCALIZABLE_STRINGS_BUNDLE(FRAMEWORK_NAME), key)
67 #define UI_STRING_KEY(string, key, comment) WebLocalizedStringUTF8(0, key)
[all...]
/external/webkit/Source/WebKit2/Shared/
H A DMutableDictionary.h44 bool add(const String& key, APIObject*);
45 bool set(const String& key, APIObject*);
46 void remove(const String& key);
/external/dropbear/libtomcrypt/src/pk/rsa/
H A Drsa_make_key.c15 RSA key generation, Tom St Denis
21 Create an RSA key
24 @param size The size of the modulus (key size) desired (octets)
25 @param e The "e" value (public key). e==65537 is a good choice
26 @param key [out] Destination of a newly created private key pair
29 int rsa_make_key(prng_state *prng, int wprng, int size, long e, rsa_key *key) argument
35 LTC_ARGCHK(key != NULL);
75 /* make key */
76 if ((err = mp_init_multi(&key
[all...]
H A Drsa_exptmod.c27 @param key The RSA key to use
32 rsa_key *key)
41 LTC_ARGCHK(key != NULL);
43 /* is the key of the right type for the operation? */
44 if (which == PK_PRIVATE && (key->type != PK_PRIVATE)) {
58 if (mp_cmp(key->N, tmp) == LTC_MP_LT) {
63 /* are we using the private exponent and is the key optimized? */
66 if ((err = mp_exptmod(tmp, key->dP, key
30 rsa_exptmod(const unsigned char *in, unsigned long inlen, unsigned char *out, unsigned long *outlen, int which, rsa_key *key) argument
[all...]
/external/v8/benchmarks/
H A Dsplay.js53 string : 'String for key ' + tag + ' in leaf node'
72 // Insert new node with a unique key.
73 var key;
75 key = GenerateKey();
76 } while (splayTree.find(key) != null);
77 var payload = GeneratePayloadTree(kSplayTreePayloadDepth, String(key));
78 splayTree.insert(key, payload);
79 return key;
115 var key = InsertNewNode();
116 var greatest = splayTree.findGreatestLessThan(key);
[all...]
/external/webkit/PerformanceTests/SunSpider/tests/v8-v6/
H A Dv8-splay.js48 string : 'String for key ' + tag + ' in leaf node'
67 // Insert new node with a unique key.
68 var key;
70 key = GenerateKey();
71 } while (splayTree.find(key) != null);
72 var payload = GeneratePayloadTree(kSplayTreePayloadDepth, String(key));
73 splayTree.insert(key, payload);
74 return key;
110 var key = InsertNewNode();
111 var greatest = splayTree.findGreatestLessThan(key);
[all...]
/external/clang/test/PCH/
H A Dobjc_container.h9 - (id)objectForKeyedSubscript:(id)key;
10 - (void)setObject:(id)object forKeyedSubscript:(id)key;
20 id key; local
22 oldObject = dictionary[key];
24 dictionary[key] = newObject;
/external/guava/guava/src/com/google/common/collect/
H A DImmutableEntry.java31 private final K key; field in class:ImmutableEntry
34 ImmutableEntry(@Nullable K key, @Nullable V value) { argument
35 this.key = key;
40 return key;
/external/qemu/
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 = qemu_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
422 qdict_del(QDict *qdict, const char *key) argument
[all...]
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/reflect/
H A DClassMap.java40 public void put(Class<?> key, V value) { argument
41 getMap(key).put(key, value);
44 public V get(Class<?> key) { argument
45 return getMap(key).get(key);
48 public void remove(Class<?> key) { argument
49 getMap(key).remove(key);
61 private Map<Class<?>, V> getMap(Class<?> key) { argument
[all...]
/external/webkit/Source/WebKit/mac/Misc/
H A DWebNSDictionaryExtras.m34 -(NSNumber *)_webkit_numberForKey:(id)key
36 id object = [self objectForKey:key];
40 -(int)_webkit_intForKey:(NSString *)key
42 NSNumber *number = [self _webkit_numberForKey:key];
46 -(NSString *)_webkit_stringForKey:(id)key
48 id object = [self objectForKey:key];
52 -(NSArray *)_webkit_arrayForKey:(id)key
54 id object = [self objectForKey:key];
76 - (BOOL)_webkit_boolForKey:(id)key
78 NSNumber *number = [self _webkit_numberForKey:key];
[all...]
/external/chromium/chrome/browser/
H A Dpreferences_mock_mac.cc24 CFPropertyListRef MockPreferences::CopyAppValue(CFStringRef key, argument
28 key,
36 Boolean MockPreferences::AppValueIsForced(CFStringRef key, argument
38 return CFSetContainsValue(forced_, key);
41 void MockPreferences::AddTestItem(CFStringRef key, argument
44 CFDictionarySetValue(values_, key, value);
46 CFSetAddValue(forced_, key);
/external/chromium/chrome/browser/prefs/
H A Dtesting_pref_store.cc16 PrefStore::ReadResult TestingPrefStore::GetValue(const std::string& key, argument
18 return prefs_.GetValue(key, value) ? READ_OK : READ_NO_VALUE;
21 PrefStore::ReadResult TestingPrefStore::GetMutableValue(const std::string& key, argument
23 return prefs_.GetValue(key, value) ? READ_OK : READ_NO_VALUE;
38 void TestingPrefStore::SetValue(const std::string& key, Value* value) { argument
39 if (prefs_.SetValue(key, value))
40 NotifyPrefValueChanged(key);
43 void TestingPrefStore::SetValueSilently(const std::string& key, Value* value) { argument
44 prefs_.SetValue(key, value);
47 void TestingPrefStore::RemoveValue(const std::string& key) { argument
71 NotifyPrefValueChanged(const std::string& key) argument
79 ReportValueChanged(const std::string& key) argument
83 SetString(const std::string& key, const std::string& value) argument
88 SetInteger(const std::string& key, int value) argument
92 SetBoolean(const std::string& key, bool value) argument
96 GetString(const std::string& key, std::string* value) const argument
105 GetInteger(const std::string& key, int* value) const argument
113 GetBoolean(const std::string& key, bool* value) const argument
[all...]
/external/dropbear/
H A Ddss.h47 void buf_put_dss_sign(buffer* buf, dss_key *key, const unsigned char* data,
50 int buf_dss_verify(buffer* buf, dss_key *key, const unsigned char* data,
53 int buf_get_dss_pub_key(buffer* buf, dss_key *key);
54 int buf_get_dss_priv_key(buffer* buf, dss_key *key);
55 void buf_put_dss_pub_key(buffer* buf, dss_key *key);
56 void buf_put_dss_priv_key(buffer* buf, dss_key *key);
57 void dss_key_free(dss_key *key);
H A Dsignkey.h47 int buf_get_pub_key(buffer *buf, sign_key *key, int *type);
48 int buf_get_priv_key(buffer* buf, sign_key *key, int *type);
49 void buf_put_pub_key(buffer* buf, sign_key *key, int type);
50 void buf_put_priv_key(buffer* buf, sign_key *key, int type);
51 void sign_key_free(sign_key *key);
52 void buf_put_sign(buffer* buf, sign_key *key, int type,
55 int buf_verify(buffer * buf, sign_key *key, const unsigned char *data,
/external/icu4c/tools/gentest/
H A Dgenres32.c17 * number of key characters and number of items both exceed 64k.
27 incKey(char *key, char *limit) { argument
30 while(limit>key) {
44 * key string, gets incremented binary numbers
50 char key[20]="ooooooooooooooooo"; local
70 /* find the limit of the key string */
71 for(limit=key; *limit!=0; ++limit) {
86 fprintf(out, "%s{\"\\U%08x\"}\n", key, i);
89 fprintf(out, "%s:int{%d}\n", key, i);
92 incKey(key, limi
[all...]
/external/webkit/Source/WebKit/chromium/public/
H A DWebStorageArea.h55 // The number of key/value pairs in the storage area.
58 // Get a value for a specific key. Valid key indices are 0 through length() - 1.
61 virtual WebString key(unsigned index) = 0;
63 // Get the value that corresponds to a specific key. This returns null if there is
64 // no entry for that key.
65 virtual WebString getItem(const WebString& key) = 0;
67 // Set the value that corresponds to a specific key. Result will either be ResultOK
70 virtual void setItem(const WebString& key, const WebString& newValue, const WebURL& url, Result& result, WebString& oldValue, WebFrame*) argument
72 setItem(key, newValu
75 setItem(const WebString& key, const WebString& newValue, const WebURL& url, Result& result, WebString& oldValue) argument
[all...]
/external/webp/src/utils/
H A Dcolor_cache.h31 const VP8LColorCache* const cc, uint32_t key) {
32 assert(key <= (~0U >> cc->hash_shift_));
33 return cc->colors_[key];
38 const uint32_t key = (kHashMul * argb) >> cc->hash_shift_; local
39 cc->colors_[key] = argb;
49 const uint32_t key = (kHashMul * argb) >> cc->hash_shift_; local
50 return cc->colors_[key] == argb;
30 VP8LColorCacheLookup( const VP8LColorCache* const cc, uint32_t key) argument
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/x509/
H A DKeyFactory.java30 PrivateKey key = BouncyCastleProvider.getPrivateKey(info);
32 if (key != null)
34 return key;
57 PublicKey key = BouncyCastleProvider.getPublicKey(info);
59 if (key != null)
61 return key;
75 protected KeySpec engineGetKeySpec(Key key, Class keySpec) argument
78 if (keySpec.isAssignableFrom(PKCS8EncodedKeySpec.class) && key.getFormat().equals("PKCS#8"))
80 return new PKCS8EncodedKeySpec(key.getEncoded());
82 else if (keySpec.isAssignableFrom(X509EncodedKeySpec.class) && key
90 engineTranslateKey(Key key) argument
[all...]
/external/jmonkeyengine/engine/src/core/com/jme3/asset/
H A DDesktopAssetManager.java186 public boolean deleteFromCache(AssetKey key){ argument
187 return cache.deleteFromCache(key);
195 public void addToCache(AssetKey key, Object asset){ argument
196 cache.addToCache(key, asset);
199 public AssetInfo locateAsset(AssetKey<?> key){ argument
208 AssetInfo info = handler.tryLocate(key);
210 logger.log(Level.WARNING, "Cannot locate resource: {0}", key);
220 * @param key
223 public <T> T loadAsset(AssetKey<T> key){ argument
224 if (key
324 loadTexture(TextureKey key) argument
359 loadAudio(AudioKey key) argument
377 loadGLSLLibrary(AssetKey key) argument
387 loadShader(ShaderKey key) argument
407 loadModel(ModelKey key) argument
[all...]
/external/webkit/Source/JavaScriptCore/wtf/
H A DTCPackedCache.h33 // This file provides a minimal cache that can hold a <key, value> pair
34 // with little if any wasted space. The types of the key and value
42 // must be large enough to hold a partial key and a value packed
47 // some <key, value> pair; the class provides no way to mark a cache
72 // a hash function, H, and use an array indexed by H(key):
73 // void Put(K key, V value) { a_[H(key)] = pair<K, V>(key, value); }
74 // V GetOrDefault(K key, V default) { const pair<K, V> &p = a_[H(key)];
151 Put(K key, V value) argument
162 GetOrDefault(K key, V default_value) const argument
208 Hash(K key) argument
213 KeyMatch(T entry, K key) argument
[all...]
/external/chromium/net/base/
H A Dnetwork_change_notifier_mac.cc29 base::mac::ScopedCFTypeRef<CFStringRef> key(
32 CFArrayAppendValue(notification_keys.get(), key.get());
33 key.reset(SCDynamicStoreKeyCreateNetworkGlobalEntity(
35 CFArrayAppendValue(notification_keys.get(), key.get());
36 key.reset(SCDynamicStoreKeyCreateNetworkGlobalEntity(
38 CFArrayAppendValue(notification_keys.get(), key.get());
51 CFStringRef key = static_cast<CFStringRef>( local
53 if (CFStringHasSuffix(key, kSCEntNetIPv4) ||
54 CFStringHasSuffix(key, kSCEntNetIPv6)) {
58 if (CFStringHasSuffix(key, kSCEntNetInterfac
[all...]
/external/compiler-rt/make/
H A Dlib_info.mk18 AvailableModules := $(sort $(foreach key,$(SubDirKeys),\
19 $($(key).ModuleName)))
22 $(foreach key,$(SubDirKeys),\
23 $(call Append,ModuleSubDirKeys.$($(key).ModuleName),$(key)))
25 AvailableArchs := $(sort $(foreach key,$(SubDirKeys),\
26 $($(key).OnlyArchs)))
28 AvailableFunctions := $(sort $(foreach key,$(SubDirKeys),\
29 $(basename $($(key).ObjNames))))
32 $(foreach key,
[all...]
/external/dropbear/libtomcrypt/src/pk/ecc/
H A Decc_export.c27 Export an ECC key as a binary packet
28 @param out [out] Destination for the key
29 @param outlen [in/out] Max size and resulting size of the exported key
30 @param type The type of key you want to export (PK_PRIVATE or PK_PUBLIC)
31 @param key The key to export
34 int ecc_export(unsigned char *out, unsigned long *outlen, int type, ecc_key *key) argument
42 LTC_ARGCHK(key != NULL);
45 if (key->type != PK_PRIVATE && type == PK_PRIVATE) {
49 if (ltc_ecc_is_valid_idx(key
[all...]
/external/guava/guava/src/com/google/common/util/concurrent/
H A DAtomicLongMap.java20 * {@code K}. If a key has not yet been associated with a value, its implicit value is zero.
64 * Returns the value associated with {@code key}, or zero if there is no value associated with
65 * {@code key}.
67 public long get(K key) { argument
68 AtomicLong atomic = map.get(key);
73 * Increments by one the value currently associated with {@code key}, and returns the new value.
75 public long incrementAndGet(K key) { argument
76 return addAndGet(key, 1);
80 * Decrements by one the value currently associated with {@code key}, and returns the new value.
82 public long decrementAndGet(K key) { argument
90 addAndGet(K key, long delta) argument
124 getAndIncrement(K key) argument
131 getAndDecrement(K key) argument
139 getAndAdd(K key, long delta) argument
174 put(K key, long newValue) argument
220 remove(K key) argument
288 containsKey(Object key) argument
350 putIfAbsent(K key, long newValue) argument
383 replace(K key, long expectedOldValue, long newValue) argument
396 remove(K key, long value) argument
[all...]

Completed in 1176 milliseconds

1234567891011>>