Searched defs:key (Results 1 - 25 of 3799) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/objc/public/
H A DRTCPair.h30 // A class to hold a key and value.
33 @property(nonatomic, strong, readonly) NSString *key; variable
36 // Initialize a RTCPair object with a key and value.
37 - (id)initWithKey:(NSString *)key value:(NSString *)value;
/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-357103.js9 var key = "Huckleberry Finn" + "Tom Sawyer"; variable
11 function f() { o[key] = "Adventures"; }
/external/chromium_org/base/
H A Dbase_paths.cc13 bool PathProvider(int key, FilePath* result) { argument
16 switch (key) {
H A Dbase_paths_android.cc20 bool PathProviderAndroid(int key, FilePath* result) { argument
21 switch (key) {
H A Dbase_paths_posix.cc32 bool PathProviderPosix(int key, FilePath* result) { argument
34 switch (key) {
/external/chromium_org/native_client_sdk/src/libraries/third_party/pthreads-win32/
H A Dptw32_tkAssocCreate.c43 ptw32_tkAssocCreate (ptw32_thread_t * sp, pthread_key_t key) argument
47 * is unique for the given (thread,key) combination.The association
48 * is referenced by both the thread and the key.
50 * current thread references and what threads a given key
65 * key
66 * key on which to create an association.
79 * to both the key and the thread.
81 * Both key->keyLock and thread->threadLock are locked before
92 assoc->key = key;
[all...]
H A Dpthread_getspecific.c42 pthread_getspecific (pthread_key_t key) argument
46 * This function returns the current value of key in the
47 * calling thread. If no value has been set for 'key' in
51 * key
56 * This function returns the current value of key in the
57 * calling thread. If no value has been set for 'key' in
61 * key value or NULL on failure
68 if (key == NULL)
78 ptr = TlsGetValue (key->key);
[all...]
H A Dpthread_key_create.c47 pthread_key_create (pthread_key_t * key, void (PTW32_CDECL *destructor) (void *)) argument
51 * This function creates a thread-specific data key visible
53 * NULL for key until set using pthread_setspecific. When any
54 * thread with a non-NULL value for key terminates, 'destructor'
55 * is called with key's current value for that thread.
58 * key
63 * This function creates a thread-specific data key visible
65 * NULL for key until set using pthread_setspecific. When any
66 * thread with a non-NULL value for key terminates, 'destructor'
67 * is called with key'
[all...]
/external/chromium_org/third_party/libaddressinput/chromium/
H A Dfallback_data_store.cc11 bool FallbackDataStore::Get(const std::string& key, std::string* data) { argument
12 if (key != "data/US")
21 "e\": \"Louisiana\", \"zip\": \"70|71[0-5]\", \"key\": \"LA\", \"id\":"
23 "0,05999\", \"name\": \"Vermont\", \"zip\": \"05\", \"key\": \"VT\", \""
28 "0[78]\", \"key\": \"NJ\", \"id\": \"data/US/NJ\"}, \"data/US/NH\": {\""
30 ", \"zip\": \"03[0-8]\", \"key\": \"NH\", \"id\": \"data/US/NH\"}, \"d"
32 " \"North Dakota\", \"zip\": \"58\", \"key\": \"ND\", \"id\": \"data/US"
34 " \"name\": \"Nebraska\", \"zip\": \"6[89]\", \"key\": \"NE\", \"id\":"
36 "0,28999\", \"name\": \"North Carolina\", \"zip\": \"2[78]\", \"key\":"
39 "p\": \"00[679]\", \"key\"
[all...]
/external/chromium_org/v8/test/mjsunit/
H A Dproperty-object-key.js28 var key = { toString: function() { return 'baz'; } }
31 assertEquals(42, object[key]);
32 object[key] = 87;
33 assertEquals(87, object[key]);
34 object[key]++;
35 assertEquals(88, object[key]);
/external/compiler-rt/test/lsan/TestCases/
H A Duse_tls_pthread_specific_static.cc17 pthread_key_t key; local
19 res = pthread_key_create(&key, NULL);
21 assert(key < PTHREAD_KEY_2NDLEVEL_SIZE);
23 res = pthread_setspecific(key, p);
/external/openssl/crypto/des/
H A Ddes_old2.c79 void _ossl_096_des_random_seed(DES_cblock *key) argument
81 RAND_seed(key, sizeof(DES_cblock));
/external/openssl/crypto/rc4/
H A Drc4_utl.c56 void RC4_set_key(RC4_KEY *key, int len, const unsigned char *data) argument
61 private_RC4_set_key(key, len, data);
/external/qemu/distrib/sdl-1.2.15/test/
H A Dtestkeys.c13 SDLKey key; local
20 for ( key=SDLK_FIRST; key<SDLK_LAST; ++key ) {
21 printf("Key #%d, \"%s\"\n", key, SDL_GetKeyName(key));
/external/chromium_org/ash/audio/
H A Dsounds.cc16 bool PlaySystemSoundAlways(media::SoundsManager::SoundKey key) { argument
17 return SoundsManager::Get()->Play(key);
20 bool PlaySystemSoundIfSpokenFeedback(SoundsManager::SoundKey key) { argument
23 return SoundsManager::Get()->Play(key);
28 return SoundsManager::Get()->Play(key);
/external/chromium_org/chrome/browser/ui/login/
H A Dlogin_prompt_unittest.cc38 std::string key = GetSignonRealm(GURL(url[i]), *auth_info.get()); local
39 EXPECT_EQ(expected[i], key);
/external/chromium_org/components/policy/core/common/
H A Dpreferences_mac.cc11 CFPropertyListRef MacPreferences::CopyAppValue(CFStringRef key, argument
13 return CFPreferencesCopyAppValue(key, applicationID);
16 Boolean MacPreferences::AppValueIsForced(CFStringRef key, argument
18 return CFPreferencesAppValueIsForced(key, applicationID);
/external/chromium_org/extensions/browser/value_store/
H A Dvalue_store_util.cc9 scoped_ptr<std::string> NewKey(const std::string& key) { argument
10 return make_scoped_ptr(new std::string(key));
/external/chromium_org/extensions/common/
H A Dextension_paths.cc12 bool PathProvider(int key, base::FilePath* result) { argument
13 if (key != DIR_TEST_DATA)
/external/chromium_org/third_party/smhasher/src/
H A DCityTest.cpp3 void CityHash64_test ( const void * key, int len, uint32_t seed, void * out ) argument
5 *(uint64*)out = CityHash64WithSeed((const char *)key,len,seed);
8 void CityHash128_test ( const void * key, int len, uint32_t seed, void * out ) argument
14 *(uint128*)out = CityHash128WithSeed((const char*)key,len,s);
/external/wpa_supplicant_8/hostapd/src/crypto/
H A Daes-encblock.c18 * @key: Key for AES
23 int aes_128_encrypt_block(const u8 *key, const u8 *in, u8 *out) argument
26 ctx = aes_encrypt_init(key, 16);
/external/wpa_supplicant_8/src/crypto/
H A Daes-encblock.c18 * @key: Key for AES
23 int aes_128_encrypt_block(const u8 *key, const u8 *in, u8 *out) argument
26 ctx = aes_encrypt_init(key, 16);
/external/wpa_supplicant_8/wpa_supplicant/src/crypto/
H A Daes-encblock.c18 * @key: Key for AES
23 int aes_128_encrypt_block(const u8 *key, const u8 *in, u8 *out) argument
26 ctx = aes_encrypt_init(key, 16);
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/misc/
H A DMultiMap.java34 /** A hash table that maps a key to a list of elements not just a single. */
36 public void map(K key, V value) { argument
37 List<V> elementsForKey = get(key);
40 super.put(key, elementsForKey);
/external/chromium_org/base/test/
H A Dscoped_path_override.cc12 ScopedPathOverride::ScopedPathOverride(int key) : key_(key) { argument
15 result = PathService::Override(key, temp_dir_.path());
19 ScopedPathOverride::ScopedPathOverride(int key, const base::FilePath& dir) argument
20 : key_(key) {
21 bool result = PathService::Override(key, dir);

Completed in 621 milliseconds

1234567891011>>