Searched defs:it (Results 226 - 250 of 1744) sorted by relevance

1234567891011>>

/external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/
H A Deventhistory.cpp105 WpaMsgList::iterator it; local
106 for (it = msgs.begin(); it != msgs.end(); it++)
107 addEvent(*it);
/external/ceres-solver/include/ceres/
H A Dordered_groups.h66 typename map<T, int>::const_iterator it = element_to_group_.find(element); local
67 if (it != element_to_group_.end()) {
68 if (it->second == group) {
73 group_to_elements_[it->second].erase(element);
74 if (group_to_elements_[it->second].size() == 0) {
75 group_to_elements_.erase(it->second);
89 // Remove the element, no matter what group it is in. Return value
100 // If the group is empty, then get rid of it.
124 typename map<int, set<T> >::reverse_iterator it = local
127 new_group_to_elements[it
146 typename map<T, int>::const_iterator it = element_to_group_.find(element); local
154 typename map<T, int>::const_iterator it = element_to_group_.find(element); local
161 typename map<int, set<T> >::const_iterator it = local
[all...]
/external/ceres-solver/internal/ceres/
H A Dblock_random_access_sparse_matrix.cc67 for (set<pair<int, int> >::const_iterator it = block_pairs.begin();
68 it != block_pairs.end();
69 ++it) {
70 const int row_block_size = blocks_[it->first];
71 const int col_block_size = blocks_[it->second];
86 for (set<pair<int, int> >::const_iterator it = block_pairs.begin();
87 it != block_pairs.end();
88 ++it) {
89 const int row_block_size = blocks_[it->first];
90 const int col_block_size = blocks_[it
134 const LayoutType::iterator it = local
[all...]
H A Dcompressed_col_sparse_matrix_utils.cc69 vector<int>::const_iterator it = lower_bound(row_block_starts.begin(), local
72 // Since we are using lower_bound, it will return the row id
81 if (it == row_block_starts.end() || *it != scalar_rows[idx]) {
85 block_rows->push_back(it - row_block_starts.begin());
/external/chromium_org/android_webview/browser/
H A Daw_form_database_service.cc117 QueryMap::const_iterator it = result_map_.find(h); local
118 if (it == result_map_.end()) {
122 *(it->second.result) = has_form_data;
123 it->second.completion->Signal();
/external/chromium_org/ash/wm/workspace/
H A Dmagnetism_matcher.cc24 // Convert |secondary| to a MagnetismEdge so we can compare it to |edges|.
89 Ranges::const_iterator it = local
91 if (it != ranges_.begin() && RangesIntersect(*(it - 1), range))
92 --it;
93 if (it == ranges_.end())
96 for (size_t i = it - ranges_.begin();
/external/chromium_org/base/metrics/
H A Dhistogram_snapshot_manager.cc33 for (StatisticsRecorder::Histograms::const_iterator it = histograms.begin();
34 histograms.end() != it;
35 ++it) {
36 (*it)->SetFlags(flag_to_set);
37 if (((*it)->flags() & required_flags) == required_flags)
38 PrepareDelta(**it);
55 // The checksum should have caught this, so crash separately if it didn't.
81 map<string, HistogramSamples*>::iterator it = local
83 if (it == logged_samples_.end()) {
89 HistogramSamples* already_logged = it
[all...]
H A Dsample_map.cc27 map<Sample, Count>::const_iterator it = sample_counts_.find(value); local
28 if (it == sample_counts_.end())
30 return it->second;
35 for (map<Sample, Count>::const_iterator it = sample_counts_.begin();
36 it != sample_counts_.end();
37 ++it) {
38 count += it->second;
/external/chromium_org/cc/test/
H A Dfake_output_surface.cc123 TransferableResourceArray::iterator it; local
124 for (it = resources_held_by_parent_.begin();
125 it != resources_held_by_parent_.end();
126 ++it) {
127 if (it->id == id)
130 DCHECK(it != resources_held_by_parent_.end());
131 ack->resources.push_back(it->ToReturnedResource());
132 resources_held_by_parent_.erase(it);
/external/chromium_org/chrome/browser/android/thumbnail/
H A Dscoped_ptr_expiring_cache.h60 iterator it = map_.begin(); local
61 delete it->second;
62 map_.erase(it);
/external/chromium_org/chrome/browser/apps/app_shim/
H A Dapp_shim_handler_mac.cc43 HandlerMap::const_iterator it = handlers_.find(app_mode_id); local
44 if (it != handlers_.end())
45 return it->second;
/external/chromium_org/chrome/browser/chromeos/drive/
H A Ddebug_info_collector.cc21 scoped_ptr<internal::ResourceMetadata::Iterator> it = metadata->GetIterator(); local
22 for (; !it->IsAtEnd(); it->Advance()) {
23 if (it->GetValue().file_specific_info().has_cache_state()) {
24 iteration_callback.Run(it->GetID(),
25 it->GetValue().file_specific_info().cache_state());
28 DCHECK(!it->HasError());
/external/chromium_org/chrome/browser/chromeos/net/
H A Dnetwork_portal_detector_test_impl.cc72 CaptivePortalStateMap::iterator it = portal_state_map_.find(guid); local
73 if (it == portal_state_map_.end()) {
78 << CaptivePortalStatusString(it->second.status);
79 return it->second;
/external/chromium_org/chrome/browser/extensions/api/messaging/
H A Dincognito_connectability.cc111 ExtensionToOriginsMap::const_iterator it = map.find(extension->id()); local
112 return it != map.end() && it->second.count(origin) > 0;
/external/chromium_org/chrome/browser/extensions/
H A Dglobal_shortcut_listener_win.cc93 HotkeyIdMap::iterator it = hotkey_ids_.find(accelerator); local
94 DCHECK(it != hotkey_ids_.end());
97 gfx::SingletonHwnd::GetInstance()->hwnd(), it->second);
102 hotkey_ids_.erase(it);
/external/chromium_org/chrome/browser/extensions/updater/
H A Drequest_queue.h22 // net::BackoffEntry instance associated with it.
27 // request from the queue, assigns it as active request, and calls
66 // earliest available request is in the past, otherwise it will call that
138 explicit iterator(const typename Container::iterator& it) argument
139 : it_(it) {}
/external/chromium_org/chrome/browser/
H A Dfont_family_cache.cc64 // Lazily constructs the map if it doesn't already exist.
77 FontFamilyMap::const_iterator it = font_family_map_.find(map_name); local
78 if (it != font_family_map_.end()) {
79 ScriptFontMap::const_iterator it2 = it->second.find(script);
80 if (it2 != it->second.end())
92 for (FontFamilyMap::iterator it = font_family_map_.begin();
93 it != font_family_map_.end();
94 ++it) {
95 const char* map_name = it->first;
102 ScriptFontMap& map = it
[all...]
H A Dicon_manager.cc42 GroupMap::iterator it = group_cache_.find(file_name); local
43 if (it != group_cache_.end())
44 return LookupIconFromGroup(it->second, size);
51 IconMap::iterator it = icon_cache_.find(CacheKey(group, size)); local
52 if (it != icon_cache_.end())
53 return it->second;
113 // it must not be NULL.
115 IconMap::iterator it = icon_cache_.find(key); local
116 if (it != icon_cache_.end()) {
118 delete it
[all...]
/external/chromium_org/chrome/browser/history/
H A Din_memory_history_backend.cc87 URLRows::const_iterator it; local
88 for (it = modified_details->changed_urls.begin();
89 it != modified_details->changed_urls.end(); ++it) {
90 OnURLVisitedOrModified(*it);
/external/chromium_org/chrome/browser/media_galleries/fileapi/
H A Dmedia_path_filter.cc156 MediaFileExtensionMap::const_iterator it = local
159 if (it == media_file_extensions_map_.end())
161 return static_cast<MediaGalleryScanFileType>(it->second);
169 // This may require I/O when it calls net::GetExtensionsForMimeType(), so
/external/chromium_org/chrome/browser/net/
H A Dreferrer.cc67 SubresourceMap::iterator it = find(url); local
68 if (it != end()) {
69 it->second.SubresourceIsNeeded();
89 for (SubresourceMap::iterator it = begin(); it != end(); ++it) {
90 int64 lifetime = (kNow - it->second.birth_time()).InMilliseconds();
91 double rate = it->second.subresource_use_rate();
98 least_useful_url = it->first;
108 for (SubresourceMap::iterator it
[all...]
/external/chromium_org/chrome/browser/policy/
H A Dprofile_policy_connector_factory.cc86 ConnectorMap::const_iterator it = local
88 CHECK(it != connectors_.end());
89 return it->second;
149 ConnectorMap::iterator it = connectors_.find(profile);
150 if (it != connectors_.end())
151 it->second->Shutdown();
156 ConnectorMap::iterator it = connectors_.find(static_cast<Profile*>(context)); local
157 if (it != connectors_.end())
158 connectors_.erase(it);
/external/chromium_org/chrome/browser/predictors/
H A Dresource_prefetcher_manager.cc74 PrefetcherMap::iterator it = prefetcher_map_.find( local
76 if (it != prefetcher_map_.end() &&
77 it->second->navigation_id() == navigation_id) {
78 it->second->Stop();
83 it = prefetcher_map_.find(navigation_id.main_frame_url.host());
84 if (it != prefetcher_map_.end() &&
85 it->second->navigation_id() == navigation_id) {
86 it->second->Stop();
109 PrefetcherMap::iterator it = prefetcher_map_.find(key); local
110 DCHECK(it !
[all...]
/external/chromium_org/chrome/browser/printing/
H A Dprint_preview_data_service.cc22 // PrintPreviewDataStore owns the data and is responsible for freeing it when
37 PreviewPageDataMap::iterator it = page_data_map_.find(index);
38 if (it != page_data_map_.end())
39 *data = it->second.get();
97 PreviewDataStoreMap::const_iterator it = data_store_map_.find(preview_ui_id); local
98 if (it != data_store_map_.end())
99 it->second->GetPreviewDataForIndex(index, data_bytes);
117 PreviewDataStoreMap::const_iterator it = data_store_map_.find(preview_ui_id); local
118 return (it == data_store_map_.end()) ?
119 0 : it
[all...]
/external/chromium_org/chrome/browser/search/
H A Dsearch_terms_tracker.cc38 TabState::const_iterator it = tabs_.find(contents); local
39 if (it != tabs_.end() && !it->second.search_terms.empty()) {
41 *search_terms = it->second.search_terms;
43 *navigation_index = it->second.srp_navigation_index;
126 TabState::iterator it = tabs_.find(contents); local
127 if (it != tabs_.end()) {
128 tabs_.erase(it);

Completed in 1414 milliseconds

1234567891011>>