Searched defs:it (Results 251 - 275 of 1744) sorted by relevance

<<11121314151617181920>>

/external/chromium_org/chrome/browser/ui/webui/chromeos/
H A Dsalsa_ui.cc40 std::map<int, const base::Value*>::const_iterator it; local
41 for (it = vals->begin(); it != vals->end(); ++it) {
42 if (!prefs->FindPreference(kWhitelist[it->first]))
45 if (!it->second) {
46 prefs->ClearPref(kWhitelist[it->first]);
48 prefs->Set(kWhitelist[it->first], *it->second);
49 delete it
[all...]
/external/chromium_org/chrome/renderer/prerender/
H A Dprerender_dispatcher.cc37 std::map<int, WebPrerender>::iterator it = prerenders_.find(prerender_id); local
38 if (it == prerenders_.end())
41 WebPrerender& prerender = it->second;
51 std::map<int, WebPrerender>::iterator it = prerenders_.find(prerender_id); local
52 if (it == prerenders_.end())
55 WebPrerender& prerender = it->second;
64 std::map<int, WebPrerender>::iterator it = prerenders_.find(prerender_id); local
65 if (it == prerenders_.end())
68 WebPrerender& prerender = it->second;
84 std::multiset<GURL>::iterator it local
92 std::map<int, WebPrerender>::iterator it = prerenders_.find(prerender_id); local
[all...]
/external/chromium_org/chrome/renderer/safe_browsing/
H A Dphishing_term_feature_extractor_unittest.cc51 for (base::hash_set<std::string>::iterator it = terms.begin();
52 it != terms.end(); ++it) {
53 term_hashes_.insert(crypto::SHA256HashString(*it));
69 for (base::hash_set<std::string>::iterator it = words.begin();
70 it != words.end(); ++it) {
71 word_hashes_.insert(MurmurHash3String(*it, kMurmurHash3Seed));
241 std::set<uint32>::iterator it = expected_shingle_hashes.end(); local
242 expected_shingle_hashes.erase(--it);
[all...]
/external/chromium_org/chrome/test/base/
H A Dchrome_process_util.cc50 ChromeProcessList::const_iterator it; local
51 for (it = process_pids.begin(); it != process_pids.end(); ++it) {
53 if (!base::OpenProcessHandle(*it, &handle)) {
90 base::NamedProcessIterator it(executable_name, &filter);
91 while (const base::ProcessEntry* process_entry = it.NextProcessEntry()) {
101 base::NamedProcessIterator it(executable_name, &filter);
102 while (const base::ProcessEntry* process_entry = it.NextProcessEntry())
117 base::NamedProcessIterator it(nam
[all...]
/external/chromium_org/chrome/test/nacl/
H A Dpnacl_header_test.cc74 // start before the component files are on disk. This is because it
96 // Avoid favicon.ico warning by giving it a dummy icon.
105 // Skip other non-pexe files and let ServeFilesFromDirectory handle it.
113 std::map<std::string, std::string>::const_iterator it = local
115 EXPECT_NE(std::string::npos, it->second.find("application/x-pnacl"));
116 EXPECT_NE(std::string::npos, it->second.find("*/*"));
/external/chromium_org/chromecast/common/
H A Dcast_resource_delegate.cc78 ExtraLocaledStringMap::const_iterator it = local
80 if (it != extra_localized_strings_.end()) {
81 *value = it->second;
/external/chromium_org/chromeos/dbus/
H A Dfake_bluetooth_input_client.cc111 PropertiesMap::iterator it = properties_map_.find(object_path); local
113 if (it == properties_map_.end())
119 delete it->second;
120 properties_map_.erase(it);
H A Dshill_ipconfig_client.cc66 HelperMap::iterator it = helpers_.find(ipconfig_path.value()); local
67 if (it != helpers_.end())
68 return it->second;
70 // There is no helper for the profile, create it.
125 for (base::ListValue::const_iterator it = list_value->begin();
126 it != list_value->end();
127 ++it) {
128 DLOG_IF(ERROR, (*it)->GetType() != base::Value::TYPE_STRING)
129 << "Unexpected type " << (*it)->GetType();
131 (*it)
[all...]
H A Dshill_profile_client.cc83 HelperMap::iterator it = helpers_.find(profile_path.value()); local
84 if (it != helpers_.end())
85 return it->second;
87 // There is no helper for the profile, create it.
/external/chromium_org/components/bookmarks/browser/
H A Dbookmark_node.cc60 MetaInfoMap::const_iterator it = meta_info_map_->find(key);
61 if (it == meta_info_map_->end())
64 *value = it->second;
73 MetaInfoMap::iterator it = meta_info_map_->find(key); local
74 if (it == meta_info_map_->end()) {
79 if (it->second == value)
81 it->second = value;
/external/chromium_org/components/content_settings/core/browser/
H A Dcontent_settings_rule.cc43 ScopedVector<RuleIterator>::iterator it = iterators_.begin(); local
44 while (it != iterators_.end()) {
45 if (!(*it)->HasNext())
46 it = iterators_.erase(it);
48 ++it;
/external/chromium_org/components/enhanced_bookmarks/
H A Dbookmark_server_search_service.cc44 std::map<std::string, std::vector<std::string> >::iterator it = local
46 if (it == searches_.end())
49 for (std::vector<std::string>::iterator clip_it = it->second.begin();
50 clip_it != it->second.end();
84 it = response_proto.results().begin();
85 it != response_proto.results().end();
86 ++it) {
87 const std::string& clip_id = it->clip_id();
/external/chromium_org/components/favicon_base/
H A Dfavicon_util.cc70 std::map<int, float>::iterator it = local
72 if (it == desired_pixel_sizes.end())
75 png_reps.push_back(gfx::ImagePNGRep(png_data[i].bitmap_data, it->second));
84 // similar to SelectFaviconFrames() but it operates on bitmaps which have
165 // the bitmap data or decoding it. FaviconHandler stores already resized
171 // the data it put into the database in order to determine whether any
/external/chromium_org/components/invalidation/
H A Dinvalidation_logger.cc29 std::multiset<std::string>::iterator it = local
32 registered_handlers_.erase(it);
59 for (std::map<std::string, syncer::ObjectIdSet>::const_iterator it =
60 updated_ids.begin(); it != updated_ids.end(); ++it) {
61 latest_ids_[it->first] = syncer::ObjectIdSet(it->second);
67 for (std::map<std::string, syncer::ObjectIdSet>::const_iterator it =
68 latest_ids_.begin(); it != latest_ids_.end(); ++it) {
[all...]
H A Dmock_ack_handler.cc47 InvalidationVector::const_iterator it = std::find_if( local
51 return it != unacked_invalidations_.end();
56 InvalidationVector::const_iterator it = std::find_if( local
60 return it != acked_invalidations_.end();
65 InvalidationVector::const_iterator it = std::find_if( local
69 return it != dropped_invalidations_.end();
89 InvalidationVector::iterator it = std::find_if( local
93 if (it != unacked_invalidations_.end()) {
94 acked_invalidations_.push_back(*it);
95 unacked_invalidations_.erase(it);
108 InvalidationVector::iterator it = std::find_if( local
[all...]
/external/chromium_org/components/keyed_service/content/
H A Dbrowser_context_keyed_service_factory.cc19 // has our preferences registered on it (since the context object itself
20 // isn't dead). See if we need to readd it once we've gone through normal
25 // Ensure that |context| is not marked as stale (e.g., due to it aliasing an
70 BrowserContextKeyedServices::const_iterator it = mapping_.find(context);
71 if (it != mapping_.end())
72 return it->second;
107 BrowserContextKeyedServices::iterator it = mapping_.find(context); local
108 if (it != mapping_.end()) {
109 delete it->second;
110 mapping_.erase(it);
116 BrowserContextKeyedServices::iterator it = mapping_.find(context); local
[all...]
H A Drefcounted_browser_context_keyed_service_factory.cc17 // has our preferences registered on it (since the context object itself
18 // isn't dead). See if we need to readd it once we've gone through normal
64 RefCountedStorage::const_iterator it = mapping_.find(context);
65 if (it != mapping_.end())
66 return it->second;
101 RefCountedStorage::iterator it = mapping_.find(context); local
102 if (it != mapping_.end() && it->second.get())
103 it->second->ShutdownOnUIThread();
/external/chromium_org/components/keyed_service/core/
H A Ddependency_graph.cc25 EdgeMap::iterator it = edges_.begin(); local
26 while (it != edges_.end()) {
27 EdgeMap::iterator temp = it;
28 ++it;
70 for (EdgeMap::const_iterator it = edges_.begin(); it != edges_.end(); ++it) {
71 queue_end = std::remove(queue.begin(), queue_end, it->second);
85 EdgeMap::iterator it = range.first; local
86 while (it !
[all...]
/external/chromium_org/components/nacl/browser/
H A Dnacl_broker_service_win.cc51 PendingLaunchesMap::iterator it = pending_launches_.find(channel_id); local
52 if (pending_launches_.end() == it)
55 NaClProcessHost* client = it->second.get();
58 pending_launches_.erase(it);
85 PendingDebugExceptionHandlersMap::iterator it = pending_debuggers_.find(pid); local
86 if (pending_debuggers_.end() == it)
89 NaClProcessHost* client = it->second.get();
92 pending_debuggers_.erase(it);
/external/chromium_org/components/nacl/renderer/
H A Dpnacl_translation_resource_host.cc118 CacheRequestInfoMap::iterator it = pending_cache_requests_.find(instance); local
122 if (it != pending_cache_requests_.end() && base_file.IsValid()) {
126 if (it == pending_cache_requests_.end()) {
131 base::Bind(it->second, status, is_hit, file_handle));
132 pending_cache_requests_.erase(it);
141 for (CacheRequestInfoMap::iterator it = pending_cache_requests_.begin();
142 it != pending_cache_requests_.end();
143 ++it) {
146 base::Bind(it->second,
/external/chromium_org/components/policy/core/common/
H A Dschema_map.cc27 DomainMap::const_iterator it = map_.find(domain); local
28 return it == map_.end() ? NULL : &it->second;
35 ComponentMap::const_iterator it = map->find(ns.component_id);
36 return it == map->end() ? NULL : &it->second;
40 for (PolicyBundle::iterator it = bundle->begin(); it != bundle->end(); ++it) {
43 if (it
[all...]
/external/chromium_org/content/browser/accessibility/
H A Daccessibility_tree_formatter_utils_win.cc52 // IAccessible2 role, the IA_ROLE_MAP macro adds it to both.
235 std::map<int32, base::string16>::const_iterator it; local
236 for (it = state_string_map.begin(); it != state_string_map.end(); ++it) {
237 if (it->first & ia_state)
238 result->push_back(it->second);
252 std::map<int32, base::string16>::const_iterator it; local
253 for (it = state_string_map.begin(); it !
[all...]
/external/chromium_org/content/browser/appcache/
H A Dappcache_working_set.h35 CacheMap::iterator it = caches_.find(id); local
36 return (it != caches_.end()) ? it->second : NULL;
42 GroupMap::iterator it = groups_.find(manifest_url); local
43 return (it != groups_.end()) ? it->second : NULL;
53 ResponseInfoMap::iterator it = response_infos_.find(id); local
54 return (it != response_infos_.end()) ? it->second : NULL;
63 GroupsByOriginMap::iterator it local
[all...]
/external/chromium_org/content/browser/devtools/
H A Dembedded_worker_devtools_manager_unittest.cc74 EmbeddedWorkerDevToolsManager::AgentHostMap::iterator it = local
76 EXPECT_TRUE(manager_->workers_.end() != it);
77 EXPECT_EQ(state, it->second->state_);
/external/chromium_org/content/browser/dom_storage/
H A Ddom_storage_database_unittest.cc78 DOMStorageValuesMap::const_iterator it = values_read.begin(); local
79 for (; it != values_read.end(); ++it) {
80 base::string16 key = it->first;
81 base::NullableString16 value = it->second;
133 // Check that reading an existing db with data in it
163 DOMStorageValuesMap::iterator it = storage.begin(); local
164 for (; it != storage.end(); ++it)
165 it
327 DOMStorageValuesMap::const_iterator it = local
[all...]

Completed in 1137 milliseconds

<<11121314151617181920>>