Searched defs:keys (Results 151 - 175 of 471) sorted by relevance

1234567891011>>

/external/chromium_org/chrome/browser/chromeos/drive/
H A Dresource_metadata_storage_unittest.cc146 std::vector<std::string> keys; local
148 keys.push_back("entry1");
149 keys.push_back("entry2");
150 keys.push_back("entry3");
151 keys.push_back("entry4");
153 for (size_t i = 0; i < keys.size(); ++i) {
155 entry.set_local_id(keys[i]);
169 EXPECT_EQ(keys.size(), found_entries.size());
170 for (size_t i = 0; i < keys.size(); ++i)
171 EXPECT_EQ(1U, found_entries.count(keys[
[all...]
/external/chromium_org/chrome/browser/chromeos/login/supervised/
H A Dsupervised_user_creation_controller_new.cc149 VLOG(1) << " Phase 1 : Prepare keys";
174 // we need to create some keys.
176 // Of all required keys old imported users have only master key.
177 // Otherwise they are the same as newly created users in terms of keys.
220 // Create home dir with two keys.
221 std::vector<cryptohome::KeyDefinition> keys; local
223 // Main key is the master key. Just as keys for plain GAIA users, it is salted
229 keys.push_back(master_key);
232 keys,
/external/chromium_org/chrome/browser/extensions/api/storage/
H A Dsyncable_settings_storage.cc44 const std::vector<std::string>& keys) {
46 return delegate_->GetBytesInUse(keys);
61 const std::vector<std::string>& keys) {
63 return delegate_->Get(keys);
105 const std::vector<std::string>& keys) {
107 WriteResult result = delegate_->Remove(keys);
43 GetBytesInUse( const std::vector<std::string>& keys) argument
60 Get( const std::vector<std::string>& keys) argument
104 Remove( const std::vector<std::string>& keys) argument
/external/chromium_org/chrome/browser/media_galleries/
H A Dmedia_folder_finder_unittest.cc169 std::set<base::FilePath> keys; local
173 keys.insert(it->first);
175 return keys;
/external/chromium_org/chrome/browser/ui/libgtk2ui/
H A Dx11_input_method_context_impl_gtk2.cc221 GdkKeymapKey* keys = NULL; local
226 &keys, &keyvals, &n_entries)) {
229 keyboard_group = keys[i].group;
234 g_free(keys);
235 keys = NULL;
/external/chromium_org/chrome/common/extensions/manifest_handlers/
H A Dapp_launch_info.cc22 namespace keys = manifest_keys;
57 extension->GetManifestData(keys::kLaunch));
121 if (extension->manifest()->Get(keys::kLaunchLocalPath, &temp)) {
122 if (extension->manifest()->Get(keys::kLaunchWebURL, NULL)) {
127 if (extension->manifest()->Get(keys::kWebURLs, NULL)) {
136 keys::kLaunchLocalPath);
145 keys::kLaunchLocalPath);
150 } else if (extension->manifest()->Get(keys::kLaunchWebURL, &temp)) {
155 keys::kLaunchWebURL);
165 keys
309 static const char* keys[] = { local
[all...]
H A Dcontent_scripts_handler.cc29 namespace keys = extensions::manifest_keys;
80 if (content_script->HasKey(keys::kRunAt)) {
82 if (!content_script->GetString(keys::kRunAt, &run_location)) {
104 if (content_script->HasKey(keys::kAllFrames)) {
106 if (!content_script->GetBoolean(keys::kAllFrames, &all_frames)) {
115 if (content_script->HasKey(keys::kMatchAboutBlank)) {
117 if (!content_script->GetBoolean(keys::kMatchAboutBlank,
128 if (!content_script->GetList(keys::kMatches, &matches)) {
189 if (content_script->HasKey(keys::kExcludeMatches)) { // optional
191 if (!content_script->GetList(keys
390 static const char* keys[] = { local
[all...]
/external/chromium_org/chrome/common/mac/
H A Dmock_launchd.cc130 const void *keys[] = { env_var }; local
132 COMPILE_ASSERT(arraysize(keys) == arraysize(values), array_sizes_must_match);
134 keys,
136 arraysize(keys),
151 const void *keys[] = { program, program_pid }; local
158 COMPILE_ASSERT(arraysize(keys) == arraysize(values), array_sizes_must_match);
160 keys,
162 arraysize(keys),
178 const void *keys[] = { program, program_args }; local
180 COMPILE_ASSERT(arraysize(keys)
242 const void *keys[] = { program, program_args, socket_key }; local
[all...]
/external/chromium_org/chromeos/login/auth/
H A Dextended_authenticator_impl.cc84 const std::vector<cryptohome::KeyDefinition>& keys,
90 cryptohome::Authorization auth(keys.front());
92 for (size_t i = 0; i < keys.size(); i++) {
93 mount.create_keys.push_back(keys[i]);
96 Key key(keys.front().secret);
97 key.SetLabel(keys.front().label);
82 CreateMount( const std::string& user_id, const std::vector<cryptohome::KeyDefinition>& keys, const ResultCallback& success_callback) argument
/external/chromium_org/components/policy/core/common/
H A Dpreg_parser_win.cc196 std::vector<std::string> keys; local
197 Tokenize(DecodePRegStringValue(data), ";", &keys); local
198 for (std::vector<std::string>::const_iterator key(keys.begin());
199 key != keys.end(); ++key) {
/external/chromium_org/content/child/webcrypto/test/
H A Daes_cbc_unittest.cc127 // keys).
259 std::vector<std::vector<uint8_t> > keys; local
262 // Generate a small sample of keys.
276 keys.push_back(key_bytes);
279 // estimate of whether the generated keys appear random.
280 EXPECT_FALSE(CopiesExist(keys));
875 // format. AES-CBC keys support the following usages:
/external/chromium_org/content/renderer/
H A Drenderer_font_platform_win.cc206 FontFileEnumerator(const void* keys, argument
/external/chromium_org/extensions/browser/
H A Dextension_pref_value_map.cc140 std::set<std::string> keys; // keys set by this extension
141 GetExtensionControlledKeys(*(i->second), &keys);
146 NotifyPrefValueChanged(keys);
158 std::set<std::string> keys; // keys set by this extension
159 GetExtensionControlledKeys(*(i->second), &keys);
161 NotifyPrefValueChanged(keys);
174 std::set<std::string> keys; // keys se
359 std::set<std::string> keys; local
388 NotifyPrefValueChanged( const std::set<std::string>& keys) argument
[all...]
/external/chromium_org/extensions/browser/value_store/
H A Dleveldb_value_store.cc76 const std::vector<std::string>& keys) {
107 const std::vector<std::string>& keys) {
121 for (std::vector<std::string>::const_iterator it = keys.begin();
122 it != keys.end(); ++it) {
161 NOTREACHED() << "IsNotFound() but iterating over all keys?!";
221 const std::vector<std::string>& keys) {
231 for (std::vector<std::string>::const_iterator it = keys.begin();
232 it != keys.end(); ++it) {
75 GetBytesInUse( const std::vector<std::string>& keys) argument
106 Get( const std::vector<std::string>& keys) argument
220 Remove( const std::vector<std::string>& keys) argument
/external/chromium_org/extensions/common/
H A Dmanifest_handler.cc57 const std::vector<std::string> keys = Keys(); local
58 for (size_t i = 0; i < keys.size(); ++i)
59 GetRegistry()->RegisterManifestHandler(keys[i], this_linked);
/external/chromium_org/extensions/common/manifest_handlers/
H A Dbackground_info.cc28 namespace keys = manifest_keys;
99 keys::kPlatformAppBackgroundScripts : keys::kBackgroundScripts;
190 extension, keys::kPlatformAppBackgroundPage, error);
193 if (!LoadBackgroundPage(extension, keys::kBackgroundPage, error))
196 return LoadBackgroundPage(extension, keys::kBackgroundPageLegacy, error);
208 if (!extension->manifest()->Get(keys::kBackgroundPersistent,
228 if (!extension->manifest()->Get(keys::kBackgroundAllowJsAccess,
311 static const char* keys[] = { local
312 keys
[all...]
H A Dshared_module_info.cc22 namespace keys = manifest_keys;
128 bool has_import = extension->manifest()->HasKey(keys::kImport);
129 bool has_export = extension->manifest()->HasKey(keys::kExport);
140 if (!extension->manifest()->GetDictionary(keys::kExport, &export_value)) {
145 if (!export_value->GetList(keys::kResources, &resources_list)) {
149 if (export_value->HasKey(keys::kWhitelist)) {
151 if (!export_value->GetList(keys::kWhitelist, &whitelist)) {
186 if (!extension->manifest()->GetList(keys::kImport, &import_list)) {
198 if (!import_entry->GetString(keys::kId, &extension_id) ||
205 if (import_entry->HasKey(keys
256 static const char* keys[] = { local
[all...]
/external/chromium_org/media/cdm/
H A Djson_web_key.cc18 const char kKeysTag[] = "keys";
129 KeyIdAndKeyPairs* keys,
148 // Create a local list of keys, so that |jwk_keys| only gets updated on
186 keys->swap(local_keys);
128 ExtractKeysFromJWKSet(const std::string& jwk_set, KeyIdAndKeyPairs* keys, MediaKeys::SessionType* session_type) argument
/external/chromium_org/media/midi/
H A Dmidi_manager_usb_unittest.cc230 std::vector<UsbMidiInputStream::JackUniqueKey> keys = local
235 ASSERT_EQ(1u, keys.size());
236 EXPECT_EQ(2, keys[0].endpoint_number);
/external/chromium_org/net/disk_cache/blockfile/
H A Dstress_cache.cc144 std::string keys[kNumKeys]; local
148 keys[i] = GenerateStressKey();
165 rv = cache->OpenEntry(keys[key], &entries[slot], cb.callback());
167 rv = cache->CreateEntry(keys[key], &entries[slot], cb.callback());
181 rv = cache->DoomEntry(keys[key], cb2.callback());
/external/chromium_org/third_party/WebKit/Source/modules/serviceworkers/
H A DCache.cpp241 ScriptPromise Cache::keys(ScriptState* scriptState) function in class:blink::Cache
246 ScriptPromise Cache::keys(ScriptState* scriptState, Request* originalRequest, const QueryParams& queryParams) function in class:blink::Cache
257 ScriptPromise Cache::keys(ScriptState* scriptState, const String& requestString, const QueryParams& queryParams) function in class:blink::Cache
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DHashIterators.h53 Keys keys() { return Keys(*this); } function in struct:WTF::HashTableConstIteratorAdapter
81 Keys keys() { return Keys(*this); } function in struct:WTF::HashTableIteratorAdapter
/external/chromium_org/third_party/icu/source/i18n/
H A Duspoof_conf.cpp52 // 3. Build a list of keys (UChar32s) from the four mapping tables. Sort the
405 // While copying the keys to the runtime array,
409 int32_t *keys = local
421 keys[i] = key;
425 rawData->fCFUKeys = (int32_t)((char *)keys - (char *)rawData);
427 fSpoofImpl->fSpoofData->fCFUKeys = keys;
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/clover/core/
H A Dbase.hpp257 keys(const std::pair<T, S> &ent) { function in namespace:clover
/external/chromium_org/third_party/mesa/src/src/mesa/main/
H A Des_generator.py145 for key in VersionSpecificValues.keys():
177 keys = apiutil.GetAllFunctions(functionList, version) variable
226 for funcName in keys:
748 for func in keys:

Completed in 1171 milliseconds

1234567891011>>