/external/chromium/chrome/browser/sync/glue/ |
extension_data.cc | 30 SourceDataMap::const_iterator it = source_data_.find(source); local 32 (it == source_data_.end()) || 33 !AreExtensionSpecificsEqual(it->second, merged_data_);
|
/external/chromium/chrome/browser/sync/sessions/ |
ordered_commit_set.cc | 48 // Since projections are in increasing order, it's easy to fix. Except 51 Projections::iterator it = projections_.begin(); local 52 for (; it != projections_.end(); ++it) { 55 Projection& p = it->second;
|
/external/chromium/chrome/browser/ui/webui/ |
print_preview_ui_html_source.cc | 139 std::vector<unsigned char>::iterator it = html_bytes->data.begin(); local 140 for (uint32 i = 0; i < preview_data_size; ++i, ++it) 141 *it = *(preview_data + i);
|
/external/chromium/net/base/ |
data_url.cc | 35 std::string::const_iterator it = local 39 bool base64_encoded = (it != comma); 50 it = std::search(semi_colon + 1, comma, kCharsetTag, 52 if (it != comma) 53 charset->assign(it + sizeof(kCharsetTag)-1, comma); 73 // bar for text, and it can't hurt, so we allow it.) 78 // could be part of the payload, so don't strip it.
|
/external/chromium/net/disk_cache/ |
in_flight_io.cc | 46 IOList::iterator it = io_list_.begin(); local 47 InvokeCallback(*it, true);
|
/external/chromium/net/http/ |
mock_sspi_library_win.cc | 54 // Fill in phNewContext with arbitrary value if it's invalid. 90 std::set<PSecPkgInfoW>::iterator it = expected_freed_packages_.find( local 92 EXPECT_TRUE(it != expected_freed_packages_.end()); 93 expected_freed_packages_.erase(it);
|
/external/chromium/net/spdy/ |
spdy_http_utils.cc | 28 spdy::SpdyHeaderBlock::const_iterator it; local 29 it = headers.find("status"); 30 if (it == headers.end()) 32 status = it->second; 35 it = headers.find("version"); 36 if (it == headers.end()) 38 version = it->second; 46 for (it = headers.begin(); it != headers.end(); ++it) { [all...] |
/external/chromium/net/tools/flip_server/ |
balsa_headers_token_utils.cc | 29 BalsaHeaders::HeaderLines::iterator it = local 31 if (it == headers->header_lines_.end()) { 40 header_line = it; 41 it = headers->GetHeaderLinesIterator(key, it + 1); 43 while (it != headers->header_lines_.end()); 70 BalsaHeaders::const_header_lines_key_iterator it = local 72 if (it == headers.header_lines_key_end()) 76 BalsaHeaders::const_header_lines_key_iterator header_line = it; 78 header_line = it; [all...] |
/external/chromium/testing/gtest/src/ |
gtest-typed-test.cc | 71 for (DefinedTestIter it = defined_test_names_.begin(); 72 it != defined_test_names_.end(); 73 ++it) { 74 if (name == *it) { 88 for (DefinedTestIter it = defined_test_names_.begin(); 89 it != defined_test_names_.end(); 90 ++it) { 91 if (tests.count(*it) == 0) { 92 errors << "You forgot to list test " << *it << ".\n"; local
|
/external/chromium/third_party/libjingle/source/talk/xmpp/ |
plainsaslhandler.h | 52 std::vector<std::string>::const_iterator it = std::find(mechanisms.begin(), mechanisms.end(), "PLAIN"); local 53 if (it == mechanisms.end()) { 61 // Creates a SaslMechanism for the given mechanism name (you own it 62 // once you get it). If not handled, return NULL.
|
/external/chromium_org/ash/wm/ |
resize_shadow_controller.cc | 19 for (WindowShadowMap::const_iterator it = window_shadows_.begin(); 20 it != window_shadows_.end(); ++it) { 21 it->first->RemoveObserver(this); 69 WindowShadowMap::const_iterator it = window_shadows_.find(window); local 70 return it != window_shadows_.end() ? it->second.get() : NULL;
|
window_cycle_list.cc | 67 WindowList::const_iterator it = local 69 if (it == windows_.end()) 71 return it - windows_.begin();
|
/external/chromium_org/base/metrics/ |
histogram_snapshot_manager.cc | 32 for (StatisticsRecorder::Histograms::const_iterator it = histograms.begin(); 33 histograms.end() != it; 34 ++it) { 35 (*it)->SetFlags(flag_to_set); 37 0 == ((*it)->flags() & Histogram::kUmaTargetedHistogramFlag)) 39 PrepareDelta(**it); 56 // The checksum should have caught this, so crash separately if it didn't. 82 map<string, HistogramSamples*>::iterator it = local 84 if (it == logged_samples_.end()) { 90 HistogramSamples* already_logged = it->second [all...] |
/external/chromium_org/cc/base/ |
scoped_ptr_vector_unittest.cc | 57 ScopedPtrVector<Data>::iterator it = v.begin(); local 58 ++it; 59 ++it; 60 EXPECT_EQ(6, (*it)->data()); 62 v.insert_and_take(it, v2); 86 ScopedPtrVector<Data>::iterator it = v.partition(IsOddPredicate()); local 89 second_it != it; 97 for (; it != v.end(); ++it) { 98 EXPECT_EQ(0, (*it)->data() % 2) [all...] |
/external/chromium_org/cc/layers/ |
delegated_frame_resource_collection.cc | 46 for (ResourceIdRefCountMap::iterator it = resource_id_ref_count_map_.begin(); 47 it != resource_id_ref_count_map_.end(); 48 ++it) { 49 DCHECK_GE(it->second.refs_to_wait_for, 1); 52 returned.id = it->first; 53 returned.count = it->second.refs_to_return; 86 ResourceIdRefCountMap::iterator it = local 88 DCHECK(it != resource_id_ref_count_map_.end()); 89 DCHECK_GE(it->second.refs_to_wait_for, returned[i].count); 90 it->second.refs_to_wait_for -= returned[i].count [all...] |
/external/chromium_org/cc/resources/ |
resource_pool.cc | 40 for (ResourceList::iterator it = unused_resources_.begin(); 41 it != unused_resources_.end(); ++it) { 42 ScopedResource* resource = *it; 48 unused_resources_.erase(it); 89 // a read lock fence but it's still better to evict the least 90 // recently used as it prevents a resource that is hard to reuse 93 // We can free the resource here but it doesn't mean that the 115 ResourceList::iterator it = busy_resources_.begin(); local 117 while (it != busy_resources_.end()) [all...] |
/external/chromium_org/cc/test/ |
fake_output_surface.cc | 92 // then we just post a BeginImplFrame to emulate it as part of the test. 130 TransferableResourceArray::iterator it; local 131 for (it = resources_held_by_parent_.begin(); 132 it != resources_held_by_parent_.end(); 133 ++it) { 134 if (it->id == id) 137 DCHECK(it != resources_held_by_parent_.end()); 138 ack->resources.push_back(it->ToReturnedResource()); 139 resources_held_by_parent_.erase(it);
|
/external/chromium_org/chrome/browser/apps/ |
window_controls_browsertest.cc | 37 extensions::ProcessManager::ViewSet::const_iterator it = all_views.begin(); local 38 for (; it != all_views.end(); ++it) { 39 content::RenderViewHost* host = *it;
|
/external/chromium_org/chrome/browser/browsing_data/ |
browsing_data_server_bound_cert_helper_unittest.cc | 83 net::ServerBoundCertStore::ServerBoundCertList::const_iterator it = local 88 ASSERT_TRUE(it != server_bound_cert_list_.end()); 89 EXPECT_EQ("https://www.google.com:443", it->server_identifier()); 91 ASSERT_TRUE(++it != server_bound_cert_list_.end()); 92 EXPECT_EQ("https://www.youtube.com:443", it->server_identifier()); 94 ASSERT_TRUE(++it == server_bound_cert_list_.end()); 113 net::ServerBoundCertStore::ServerBoundCertList::const_iterator it = local 116 ASSERT_TRUE(it != server_bound_cert_list_.end()); 117 EXPECT_EQ("https://www.youtube.com:443", it->server_identifier()); 119 ASSERT_TRUE(++it == server_bound_cert_list_.end()) [all...] |
/external/chromium_org/chrome/browser/chromeos/contacts/ |
contact_map.cc | 16 Map::const_iterator it = contacts_.find(contact_id); local 17 return (it != contacts_.end()) ? it->second : NULL; 21 Map::iterator it = contacts_.find(contact_id); local 22 if (it == contacts_.end()) 25 delete it->second; 26 contacts_.erase(it); 35 for (ScopedVector<Contact>::iterator it = updated_contacts->begin(); 36 it != updated_contacts->end(); ++it) { [all...] |
/external/chromium_org/chrome/browser/chromeos/file_manager/ |
file_watcher.cc | 58 ExtensionCountMap::iterator it = extensions_.find(extension_id); local 59 if (it == extensions_.end()) { 63 << "] it isn't subscribed"; 67 // If entry found - decrease it's count and remove if necessary 68 --it->second; 69 if (it->second == 0) 70 extensions_.erase(it);
|
mounted_disk_monitor.cc | 44 // Flip the resuming flag while suspending, so it is possible to detect 85 DiskMap::iterator it = mounted_disks_.find(mount_info.source_path); local 86 if (it == mounted_disks_.end()) 88 const std::string& fs_uuid = it->second; 91 mounted_disks_.erase(it);
|
/external/chromium_org/chrome/browser/content_settings/ |
content_settings_rule.cc | 43 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/chrome/browser/extensions/ |
global_shortcut_listener_win.cc | 109 HotkeyIdMap::iterator it = hotkey_ids_.find(accelerator); local 110 if (it == hotkey_ids_.end()) 114 gfx::SingletonHwnd::GetInstance()->hwnd(), it->second); 119 hotkey_ids_.erase(it);
|
/external/chromium_org/chrome/browser/extensions/token_cache/ |
token_cache_service.cc | 52 std::map<std::string, TokenCacheData>::iterator it = local 55 if (it != token_cache_.end()) { 57 if (it->second.expiration_time.is_null() || 58 now < it->second.expiration_time) { 59 return it->second.token; 61 // Remove this entry if it is expired. 62 token_cache_.erase(it);
|