Searched defs:keys (Results 101 - 125 of 471) sorted by relevance

1234567891011>>

/external/chromium_org/chrome/browser/chromeos/login/screens/
H A Dscreen_context.cc143 std::vector<std::string>* keys) {
146 if (keys) {
147 keys->clear();
148 keys->reserve(diff.size());
153 if (keys)
154 keys->push_back(it.key());
142 ApplyChanges(const base::DictionaryValue& diff, std::vector<std::string>* keys) argument
/external/chromium_org/chrome/browser/chromeos/platform_keys/
H A Dplatform_keys_service.cc175 LOG(ERROR) << "Error while reading the platform keys.";
222 base::ListValue* keys = NULL; local
223 if (!value->GetAsList(&keys)) {
228 callback.Run(make_scoped_ptr(keys));
/external/chromium_org/chrome/browser/extensions/api/storage/
H A Dpolicy_value_store.cc56 // determining which keys are currently stored, or of determining which keys
65 // may be no way of telling which keys were previously present.
129 size_t PolicyValueStore::GetBytesInUse(const std::vector<std::string>& keys) { argument
144 const std::vector<std::string>& keys) {
145 return delegate_->Get(keys);
167 const std::vector<std::string>& keys) {
143 Get( const std::vector<std::string>& keys) argument
166 Remove( const std::vector<std::string>& keys) argument
/external/chromium_org/chrome/browser/sync/test/integration/performance/
H A Dautofill_sync_perf_test.cc53 // Adds |num_keys| new autofill keys to the sync profile |profile|.
118 std::set<AutofillKey> keys; local
120 keys.insert(NextAutofillKey());
122 autofill_helper::AddKeys(profile, keys);
/external/chromium_org/chrome/browser/ui/webui/translate_internals/
H A Dtranslate_internals_handler.cc189 std::vector<std::string> keys; local
190 keys.push_back(prefs::kEnableTranslate);
192 keys.push_back(translate::TranslatePrefs::kPrefTranslateBlockedLanguages);
193 keys.push_back(translate::TranslatePrefs::kPrefTranslateLanguageBlacklist);
194 keys.push_back(translate::TranslatePrefs::kPrefTranslateSiteBlacklist);
195 keys.push_back(translate::TranslatePrefs::kPrefTranslateWhitelists);
196 keys.push_back(translate::TranslatePrefs::kPrefTranslateDeniedCount);
197 keys.push_back(translate::TranslatePrefs::kPrefTranslateAcceptedCount);
198 keys.push_back(translate::TranslatePrefs::kPrefTranslateLastDeniedTime);
199 keys
[all...]
/external/chromium_org/chrome/test/chromedriver/
H A Dkey_converter_unittest.cc18 void CheckEvents(const base::string16& keys, argument
25 EXPECT_EQ(kOk, ConvertKeysToKeyEvents(keys, release_modifiers,
43 void CheckEventsReleaseModifiers(const base::string16& keys, argument
46 CheckEvents(keys, expected_events, true /* release_modifier */,
50 void CheckEventsReleaseModifiers(const std::string& keys, argument
53 CheckEventsReleaseModifiers(base::UTF8ToUTF16(keys),
138 base::string16 keys; local
139 keys.push_back(static_cast<base::char16>(0xE00DU));
140 CheckEventsReleaseModifiers(keys, event_array, arraysize(event_array));
147 base::string16 keys; local
212 base::string16 keys; local
228 base::string16 keys; local
280 base::string16 keys; local
348 base::string16 keys; local
389 base::string16 keys; local
406 base::string16 keys; local
[all...]
/external/chromium_org/chromeos/login/auth/
H A Dfake_extended_authenticator.cc67 const std::vector<cryptohome::KeyDefinition>& keys,
66 CreateMount(const std::string& user_id, const std::vector<cryptohome::KeyDefinition>& keys, const ResultCallback& success_callback) argument
/external/chromium_org/content/browser/indexed_db/
H A Dindexed_db_index_writer.cc143 IndexedDBDatabase::IndexKeys keys = *it; local
148 keys.second.push_back(primary_key);
150 scoped_ptr<IndexWriter> index_writer(new IndexWriter(index, keys));
/external/chromium_org/content/child/indexed_db/
H A Dwebidbcursor_impl_unittest.cc176 std::vector<IndexedDBKey> keys; local
181 keys.push_back(IndexedDBKey(expected_key + i, WebIDBKeyTypeNumber));
185 cursor.SetPrefetchData(keys, primary_keys, values, blob_info);
236 std::vector<IndexedDBKey> keys; local
241 keys.push_back(IndexedDBKey(expected_key + i, WebIDBKeyTypeNumber));
245 cursor.SetPrefetchData(keys, primary_keys, values, blob_info);
311 std::vector<IndexedDBKey> keys(prefetch_count);
315 cursor.SetPrefetchData(keys, primary_keys, values, blob_info);
/external/chromium_org/content/child/webcrypto/test/
H A Dhmac_unittest.cc117 // Generate a small sample of HMAC keys.
118 std::vector<std::vector<uint8_t> > keys; local
137 keys.push_back(raw_key);
140 // estimate of whether the generated keys appear random.
141 EXPECT_FALSE(CopiesExist(keys));
/external/chromium_org/extensions/browser/api/storage/
H A Dsettings_storage_quota_enforcer.cc103 const std::vector<std::string>& keys) {
105 for (std::vector<std::string>::const_iterator it = keys.begin();
106 it != keys.end(); ++it) {
124 const std::vector<std::string>& keys) {
125 return delegate_->Get(keys);
204 const std::vector<std::string>& keys) {
205 WriteResult result = delegate_->Remove(keys);
210 for (std::vector<std::string>::const_iterator it = keys.begin();
211 it != keys.end(); ++it) {
102 GetBytesInUse( const std::vector<std::string>& keys) argument
123 Get( const std::vector<std::string>& keys) argument
203 Remove( const std::vector<std::string>& keys) argument
H A Dstorage_api.cc141 // Gets the keys of a DictionaryValue.
143 std::vector<std::string> keys; local
145 keys.push_back(it.key());
147 return keys;
/external/chromium_org/extensions/common/
H A Dmanifest_handler_unittest.cc80 const std::vector<std::string>& keys,
83 : name_(name), keys_(keys), prereqs_(prereqs), watcher_(watcher) {
109 const std::vector<std::string>& keys,
112 : TestManifestHandler(name, keys, prereqs, watcher) {
123 const std::vector<std::string>& keys,
126 : TestManifestHandler(name, keys, prereqs, watcher) {
138 std::vector<std::string> keys)
141 keys_(keys) {
181 std::vector<std::string> keys; local
182 keys
79 TestManifestHandler(const std::string& name, const std::vector<std::string>& keys, const std::vector<std::string>& prereqs, ParsingWatcher* watcher) argument
108 FailingTestManifestHandler(const std::string& name, const std::vector<std::string>& keys, const std::vector<std::string>& prereqs, ParsingWatcher* watcher) argument
122 AlwaysParseTestManifestHandler(const std::string& name, const std::vector<std::string>& keys, const std::vector<std::string>& prereqs, ParsingWatcher* watcher) argument
136 TestManifestValidator(bool return_value, bool always_validate, std::vector<std::string> keys) argument
[all...]
/external/chromium_org/extensions/common/manifest_handlers/
H A Doptions_page_info.cc23 namespace keys = manifest_keys;
32 extension->GetManifestData(keys::kOptionsUI));
137 keys::kOptionsUI,
154 keys::kOptionsPage,
177 if (manifest->HasPath(keys::kOptionsPage) &&
178 !manifest->GetString(keys::kOptionsPage, &options_page_string)) {
180 keys::kOptionsPage);
185 ignore_result(manifest->Get(keys::kOptionsUI, &options_ui_value));
197 extension->SetManifestData(keys::kOptionsUI, info.release());
222 static const char* keys[] local
[all...]
/external/chromium_org/media/cdm/
H A Djson_web_key_unittest.cc21 KeyIdAndKeyPairs keys; local
24 ExtractKeysFromJWKSet(jwk, &keys, &session_type));
25 EXPECT_EQ(expected_number_of_keys, keys.size());
32 KeyIdAndKeyPairs keys; local
35 ExtractKeysFromJWKSet(jwk, &keys, &session_type));
74 EXPECT_EQ("{\"keys\":[{\"k\":\"AQI\",\"kid\":\"AQI\",\"kty\":\"oct\"}]}",
77 "{\"keys\":[{\"k\":\"AQIDBA\",\"kid\":\"AQIDBA\",\"kty\":\"oct\"}]}",
79 EXPECT_EQ("{\"keys\":[{\"k\":\"AQI\",\"kid\":\"AQIDBA\",\"kty\":\"oct\"}]}",
81 EXPECT_EQ("{\"keys\":[{\"k\":\"AQIDBA\",\"kid\":\"AQI\",\"kty\":\"oct\"}]}",
84 "{\"keys\"
[all...]
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DInjectedScriptManager.cpp162 Vector<int> keys; local
163 keys.appendRange(m_idToInjectedScript.keys().begin(), m_idToInjectedScript.keys().end());
164 for (Vector<int>::iterator k = keys.begin(); k != keys.end(); ++k) {
/external/chromium_org/third_party/WebKit/Source/modules/serviceworkers/
H A DCacheStorage.cpp127 virtual void onSuccess(WebVector<WebString>* keys) OVERRIDE
130 for (size_t i = 0; i < keys->size(); ++i)
131 wtfKeys.append((*keys)[i]);
214 ScriptPromise CacheStorage::keys(ScriptState* scriptState) function in class:blink::CacheStorage
/external/chromium_org/third_party/WebKit/Source/modules/webmidi/
H A DMIDIPortMap.h27 Iterator* keys();
102 Iterator* MIDIPortMap<T>::keys() function in class:blink::MIDIPortMap
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebIDBKey.cpp91 IDBKey::KeyArray keys; local
92 keys.reserveCapacity(array.size());
96 keys.append(convertFromWebIDBKeyArray(array[i].array()));
99 keys.append(IDBKey::createBinary(array[i].binary()));
102 keys.append(IDBKey::createString(array[i].string()));
105 keys.append(IDBKey::createDate(array[i].date()));
108 keys.append(IDBKey::createNumber(array[i].number()));
111 keys.append(IDBKey::createInvalid());
119 return IDBKey::createArray(keys);
124 WebVector<WebIDBKey> keys(arra
212 WebVector<WebIDBKey> keys; local
[all...]
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/models/
H A Dtest_configuration.py46 def keys(self): member in class:TestConfiguration
47 return self.__dict__.keys()
290 macro_keys = set(self._configuration_macros.keys())
/external/chromium_org/third_party/icu/source/test/perf/unisetperf/draft/
H A Dbitset.cpp31 int64_t keys[0x800]; // 2k member in struct:BMPBitHash
44 * Map at most 1k=0x400 different keys with this data structure.
56 keys[hash]=key;
59 } else if(keys[hash]==key) {
72 * Invert the hash map: Fill an array of length countKeys() with the keys
79 k[i]=keys[reverse[i]];
/external/chromium_org/third_party/leveldatabase/src/db/
H A Ddbformat.cc105 void InternalFilterPolicy::CreateFilter(const Slice* keys, int n, argument
108 // adjusting keys[].
109 Slice* mkey = const_cast<Slice*>(keys);
111 mkey[i] = ExtractUserKey(keys[i]);
114 user_policy_->CreateFilter(keys, n, dst);
/external/chromium_org/third_party/leveldatabase/src/helpers/memenv/
H A Dmemenv_test.cc191 const Slice keys[] = {Slice("aaa"), Slice("bbb"), Slice("ccc")}; local
196 ASSERT_OK(db->Put(WriteOptions(), keys[i], vals[i]));
201 ASSERT_OK(db->Get(ReadOptions(), keys[i], &res));
209 ASSERT_TRUE(keys[i] == iterator->key());
221 ASSERT_OK(db->Get(ReadOptions(), keys[i], &res));
/external/chromium_org/third_party/libaddressinput/src/cpp/src/
H A Dregion_data_builder.cc38 // The maximum depth of lookup keys.
47 const std::vector<std::string>& keys,
53 for (std::vector<std::string>::const_iterator key_it = keys.begin();
54 key_it != keys.end(); ++key_it) {
109 // If there're sub-keys for field X, but field X is not used in this region
110 // code, then these sub-keys are skipped over. For example, CH has sub-keys
42 BuildRegionTreeRecursively( const std::map<std::string, const Rule*>& rules, std::map<std::string, const Rule*>::const_iterator hint, const LookupKey& parent_key, RegionData* parent_region, const std::vector<std::string>& keys, bool prefer_latin_name, size_t region_max_depth) argument
/external/chromium_org/third_party/markdown/
H A Dodict.py46 A dictionary that keeps its keys in the order in which they're inserted.
124 keys = _iterkeys
134 def keys(self): function in function:OrderedDict._itervalues
170 Replaces the normal dict.__repr__ with a version that returns the keys

Completed in 4477 milliseconds

1234567891011>>