Searched defs:key (Results 26 - 50 of 3799) sorted by relevance

1234567891011>>

/external/chromium_org/cc/test/
H A Dpaths.cc13 bool PathProvider(int key, base::FilePath* result) { argument
15 switch (key) {
/external/chromium_org/chrome/common/net/
H A Dnet_resource_provider.cc57 base::StringPiece NetResourceProvider(int key) { argument
60 if (IDR_DIR_HEADER_HTML == key)
63 return ResourceBundle::GetSharedInstance().GetRawDataResource(key);
/external/chromium_org/chrome/installer/util/
H A Dcreate_reg_key_work_item_unittest.cc24 // Create a temporary key for testing
25 RegKey key(HKEY_CURRENT_USER, L"", KEY_ALL_ACCESS);
26 key.DeleteKey(test_root);
27 ASSERT_NE(ERROR_SUCCESS, key.Open(HKEY_CURRENT_USER, test_root, KEY_READ));
28 ASSERT_EQ(ERROR_SUCCESS, key.Create(HKEY_CURRENT_USER, test_root,
33 // Clean up the temporary key
34 RegKey key(HKEY_CURRENT_USER, L"", KEY_ALL_ACCESS);
35 ASSERT_EQ(ERROR_SUCCESS, key.DeleteKey(test_root));
42 RegKey key; local
47 key
75 RegKey key; local
100 RegKey key; local
139 RegKey key; local
174 RegKey key; local
[all...]
/external/chromium_org/components/component_updater/
H A Dcomponent_updater_paths.cc14 // This key gives the root directory of all the component installations.
19 bool PathProvider(int key, base::FilePath* result) { argument
24 if (key < PATH_START || key > PATH_END)
31 switch (key) {
/external/chromium_org/content/common/
H A Dcontent_paths.cc13 bool PathProvider(int key, base::FilePath* result) { argument
14 switch (key) {
/external/chromium_org/crypto/
H A Dec_signature_creator.cc19 ECSignatureCreator* ECSignatureCreator::Create(ECPrivateKey* key) { argument
21 return g_factory_->Create(key);
22 return new ECSignatureCreatorImpl(key);
/external/chromium_org/native_client_sdk/src/libraries/third_party/pthreads-win32/
H A Dpthread_key_delete.c42 pthread_key_delete (pthread_key_t key) argument
46 * This function deletes a thread-specific data key. This
47 * does not change the value of the thread specific data key
48 * for any thread and does not run the key's destructor
52 * key
57 * This function deletes a thread-specific data key. This
58 * does not change the value of the thread specific data key
59 * for any thread and does not run the key's destructor
63 * 0 successfully deleted the key,
64 * EINVAL key i
[all...]
/external/chromium_org/net/base/
H A Dnet_module.cc17 base::StringPiece NetModule::GetResource(int key) { argument
18 return resource_provider ? resource_provider(key) : base::StringPiece();
/external/chromium_org/net/disk_cache/simple/
H A Dsimple_test_util.cc14 bool CreateCorruptFileForTests(const std::string& key, argument
17 disk_cache::simple_util::GetFilenameFromKeyAndFileIndex(key, 0));
H A Dsimple_util_unittest.cc72 const char key[] = "This is an example key"; local
74 const int file_size = GetFileSizeFromKeyAndDataSize(key, data_size);
75 EXPECT_EQ(data_size, GetDataSizeFromKeyAndFileSize(key, file_size));
/external/chromium_org/net/quic/
H A Dquic_utils_chromium.h19 // Returns a const reference to the value associated with the given key if it
23 // when the key is guaranteed to exist.
32 // This version assumes the key is printable, and includes it in the fatal log
37 const typename Collection::value_type::first_type& key) {
38 typename Collection::const_iterator it = collection.find(key);
39 CHECK(it != collection.end()) << "Map key not found: " << key;
47 const typename Collection::value_type::first_type& key) {
48 typename Collection::iterator it = collection.find(key);
49 CHECK(it != collection.end()) << "Map key no
36 FindOrDie(const Collection& collection, const typename Collection::value_type::first_type& key) argument
46 FindOrDie(Collection& collection, const typename Collection::value_type::first_type& key) argument
57 FindOrNull(const Collection& collection, const typename Collection::value_type::first_type& key) argument
69 FindOrNull(Collection& collection, const typename Collection::value_type::first_type& key) argument
[all...]
/external/chromium_org/sql/test/
H A Dpaths.cc16 bool PathProvider(int key, base::FilePath* result) { argument
18 switch (key) {
/external/chromium_org/third_party/boringssl/src/crypto/pkcs8/
H A Dp8_pkey.c63 /* Minor tweak to operation: zero private key data */
68 PKCS8_PRIV_KEY_INFO *key = (PKCS8_PRIV_KEY_INFO *)*pval; local
69 if (key->pkey &&
70 key->pkey->value.octet_string) {
71 OPENSSL_cleanse(key->pkey->value.octet_string->data,
72 key->pkey->value.octet_string->length);
/external/chromium_org/third_party/libjingle/source/talk/session/media/
H A Dexternalhmac.h60 // The pointer to the key will be allocated in the external_hmac_init function.
63 uint8 key[HMAC_KEY_LENGTH]; member in struct:__anon12695
72 const uint8_t* key,
/external/chromium_org/third_party/skia/tests/
H A DRTConfRegistryTest.cpp13 bool test_rt_conf_parse(SkRTConfRegistry* reg, const char* key, T* value) { argument
14 return reg->parse(key, value);
17 static void portable_setenv(const char* key, const char* value) { argument
19 _putenv_s(key, value);
21 setenv(key, value, 1);
/external/chromium_org/third_party/tcmalloc/chromium/src/
H A Dmaybe_threads.cc74 int perftools_pthread_key_create(pthread_key_t *key, argument
77 return pthread_key_create(key, destr_function);
80 *key = (pthread_key_t)(next_key++);
85 void *perftools_pthread_getspecific(pthread_key_t key) {
87 return pthread_getspecific(key);
89 return perftools_pthread_specific_vals[(int)key];
93 int perftools_pthread_setspecific(pthread_key_t key, void *val) {
95 return pthread_setspecific(key, val);
97 perftools_pthread_specific_vals[(int)key] = val;
/external/chromium_org/third_party/tcmalloc/vendor/src/
H A Dmaybe_threads.cc74 int perftools_pthread_key_create(pthread_key_t *key, argument
77 return pthread_key_create(key, destr_function);
80 *key = (pthread_key_t)(next_key++);
85 void *perftools_pthread_getspecific(pthread_key_t key) {
87 return pthread_getspecific(key);
89 return perftools_pthread_specific_vals[(int)key];
93 int perftools_pthread_setspecific(pthread_key_t key, void *val) {
95 return pthread_setspecific(key, val);
97 perftools_pthread_specific_vals[(int)key] = val;
/external/chromium_org/third_party/webrtc/base/
H A Dwin32regkey.h17 // batch operations on values of a given registry key.
31 // maximum sizes registry key and value names
43 // create a reg key
54 // open an existing reg key
59 // close this reg key
62 // check if the key has a specified value
65 // get the number of values for this key
69 // Use GetValueCount() to get the total value_name count for this key
70 // Returns failure if no key at the specified index
71 // If you modify the key whil
271 HKEY key() { return h_key_; } function in class:rtc::RegKey
[all...]
/external/chromium_org/tools/telemetry/telemetry/value/
H A Dmerge_values.py26 key pass the Value.IsMergableWith test. If this is not obeyed, the
64 def key(value): function in function:MergeLikeValuesFromDifferentPages
67 key = lambda x: x.name
70 key,
78 This takes the all_values list and groups each item in that using the key
80 then handed to the merge_func to produce a new key. If merge_func produces a
87 # To do this, the values are sorted by key up front. Then, grouping is
125 key = key_func(value)
126 if key not in merge_groups:
127 merge_groups[key]
[all...]
/external/chromium_org/ui/base/
H A Dui_base_paths.cc19 bool PathProvider(int key, base::FilePath* result) { argument
25 switch (key) {
/external/chromium_org/ui/gfx/
H A Dgfx_paths.cc14 bool PathProvider(int key, base::FilePath* result) { argument
16 switch (key) {
/external/clang/test/CodeGen/
H A D2007-02-04-AddrLValue.c6 char *key; member in struct:__anon18537
/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/compiler-rt/test/lsan/TestCases/
H A Duse_tls_pthread_specific_dynamic.cc24 pthread_key_t key; local
25 res = pthread_key_create(&key, NULL);
26 assert(key >= PTHREAD_KEY_2NDLEVEL_SIZE);
29 res = pthread_setspecific(key, p);
/external/nist-sip/java/gov/nist/core/
H A DMultiMap.java24 * So for example, you can put( key, new Integer(1) );
25 * and then a Object get( key ); will return you a Collection
35 public Object remove( Object key, Object item ); argument

Completed in 448 milliseconds

1234567891011>>