Searched refs:it (Results 201 - 225 of 4721) sorted by relevance

1234567891011>>

/external/chromium_org/net/http/
H A Dhttp_server_properties_impl.cc46 for (std::vector<std::string>::reverse_iterator it = spdy_servers->rbegin();
47 it != spdy_servers->rend(); ++it) {
48 spdy_servers_map_.Put(*it, support_spdy);
56 for (AlternateProtocolMap::iterator it = alternate_protocol_map_.begin();
57 it != alternate_protocol_map_.end();) {
58 AlternateProtocolMap::iterator old_it = it;
59 ++it;
66 for (AlternateProtocolMap::reverse_iterator it =
68 it !
237 AlternateProtocolMap::iterator it = alternate_protocol_map_.Get(server); local
309 AlternateProtocolMap::iterator it = alternate_protocol_map_.Get(server); local
350 AlternateProtocolMap::iterator it = alternate_protocol_map_.Peek(server); local
374 SpdySettingsMap::iterator it = spdy_settings_map_.Get(host_port_pair); local
391 SpdySettingsMap::iterator it = spdy_settings_map_.Get(host_port_pair); local
405 SpdySettingsMap::iterator it = spdy_settings_map_.Peek(host_port_pair); local
421 SupportsQuicMap::const_iterator it = supports_quic_map_.find(host_port_pair); local
451 ServerNetworkStatsMap::const_iterator it = local
[all...]
/external/chromium_org/chrome/browser/media_galleries/win/
H A Dportable_device_map_service.cc39 PortableDeviceMap::iterator it = device_map_.find(device_location); local
40 if (it != device_map_.end())
41 it->second.scheduled_to_delete = true;
49 PortableDeviceMap::const_iterator it = device_map_.find(device_location); local
50 if ((it != device_map_.end()) && it->second.scheduled_to_delete)
51 device_map_.erase(it);
59 PortableDeviceMap::const_iterator it = device_map_.find(device_location); local
60 return (it == device_map_.end() || it
[all...]
/external/chromium_org/chrome/browser/policy/
H A Dmanaged_bookmarks_policy_handler.cc45 base::ListValue::iterator it = list->begin(); local
46 while (it != list->end()) {
48 if (!*it || !(*it)->GetAsDictionary(&dict)) {
49 it = list->Erase(it, NULL);
61 it = list->Erase(it, NULL);
74 it = list->Erase(it, NUL
[all...]
/external/chromium_org/components/copresence/handlers/audio/
H A Daudio_directive_list.cc33 // In case this op is already in the list, update it instead of adding
34 // it again.
35 std::vector<AudioDirective>::iterator it = FindDirectiveByOpId(op_id); local
36 if (it != active_directives_.end()) {
37 it->end_time = end_time;
51 std::vector<AudioDirective>::iterator it = FindDirectiveByOpId(op_id); local
52 if (it != active_directives_.end())
53 active_directives_.erase(it);
77 for (std::vector<AudioDirective>::iterator it = active_directives_.begin();
78 it !
[all...]
/external/chromium_org/content/renderer/media/
H A Dmedia_stream.cc57 std::vector<MediaStreamObserver*>::iterator it = local
59 DCHECK(it != observers_.end());
60 observers_.erase(it);
65 for (std::vector<MediaStreamObserver*>::iterator it = observers_.begin();
66 it != observers_.end(); ++it) {
67 (*it)->TrackAdded(track);
74 for (std::vector<MediaStreamObserver*>::iterator it = observers_.begin();
75 it != observers_.end(); ++it) {
[all...]
H A Dmedia_stream_dispatcher.cc36 // The ipc_request is garanteed to be unique when it's created in
92 RequestList::iterator it = requests_.begin(); local
93 for (; it != requests_.end(); ++it) {
94 if (it->IsThisRequest(request_id, event_handler)) {
95 int ipc_request = it->ipc_request;
96 requests_.erase(it);
144 for (RequestList::iterator it = requests_.begin(); it != requests_.end();
145 ++it) {
202 LabelStreamMap::iterator it = label_stream_map_.find(label); local
298 LabelStreamMap::iterator it = label_stream_map_.find(label); local
382 LabelStreamMap::iterator it = label_stream_map_.find(label); local
398 LabelStreamMap::iterator it = label_stream_map_.find(label); local
[all...]
/external/chromium_org/media/cast/logging/
H A Draw_event_subscriber_bundle.cc60 SubscribersMapByStream::iterator it = subscribers_.find(is_audio); local
61 if (it != subscribers_.end())
71 SubscribersMapByStream::iterator it = subscribers_.find(is_audio); local
72 if (it == subscribers_.end())
75 subscribers_.erase(it);
85 SubscribersMapByStream::iterator it = subscribers_.find(is_audio); local
86 return it == subscribers_.end() ?
87 NULL : it->second->GetEncodingEventSubscriber();
92 SubscribersMapByStream::iterator it = subscribers_.find(is_audio); local
93 return it
[all...]
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSGridTemplateAreasValue.cpp53 for (NamedGridAreaMap::const_iterator it = gridAreaMap.begin(); it != end; ++it) {
54 const GridCoordinate& coordinate = it->value;
56 candidates.append(it->key);
60 for (NamedGridAreaMap::const_iterator it = gridAreaMap.begin(); it != end; ++it) {
61 const GridCoordinate& coordinate = it->value;
62 if (column >= coordinate.columns.resolvedInitialPosition.toInt() && column <= coordinate.columns.resolvedFinalPosition.toInt() && candidates.contains(it
[all...]
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGEnumeration.cpp62 StringEntries::const_iterator it = m_entries.begin(); local
64 for (; it != itEnd; ++it) {
65 if (m_value == it->first)
66 return it->second;
91 StringEntries::const_iterator it = m_entries.begin(); local
93 for (; it != itEnd; ++it) {
94 if (string == it->second) {
96 ASSERT(it
[all...]
/external/chromium_org/third_party/boringssl/src/crypto/asn1/
H A Dx_bignum.c10 * apply to all code found in this distribution, be it the RC4, RSA,
64 * BIGNUM directly. Currently it ignores the sign which isn't a problem since all
71 static int bn_new(ASN1_VALUE **pval, const ASN1_ITEM *it);
72 static void bn_free(ASN1_VALUE **pval, const ASN1_ITEM *it);
74 static int bn_i2c(ASN1_VALUE **pval, unsigned char *cont, int *putype, const ASN1_ITEM *it);
75 static int bn_c2i(ASN1_VALUE **pval, const unsigned char *cont, int len, int utype, char *free_cont, const ASN1_ITEM *it);
94 static int bn_new(ASN1_VALUE **pval, const ASN1_ITEM *it) argument
101 static void bn_free(ASN1_VALUE **pval, const ASN1_ITEM *it) argument
104 if(it->size & BN_SENSITIVE) BN_clear_free((BIGNUM *)*pval);
109 static int bn_i2c(ASN1_VALUE **pval, unsigned char *cont, int *putype, const ASN1_ITEM *it) argument
125 bn_c2i(ASN1_VALUE **pval, const unsigned char *cont, int len, int utype, char *free_cont, const ASN1_ITEM *it) argument
[all...]
/external/openssl/crypto/asn1/
H A Dx_bignum.c65 * BIGNUM directly. Currently it ignores the sign which isn't a problem since all
72 static int bn_new(ASN1_VALUE **pval, const ASN1_ITEM *it);
73 static void bn_free(ASN1_VALUE **pval, const ASN1_ITEM *it);
75 static int bn_i2c(ASN1_VALUE **pval, unsigned char *cont, int *putype, const ASN1_ITEM *it);
76 static int bn_c2i(ASN1_VALUE **pval, const unsigned char *cont, int len, int utype, char *free_cont, const ASN1_ITEM *it);
95 static int bn_new(ASN1_VALUE **pval, const ASN1_ITEM *it) argument
102 static void bn_free(ASN1_VALUE **pval, const ASN1_ITEM *it) argument
105 if(it->size & BN_SENSITIVE) BN_clear_free((BIGNUM *)*pval);
110 static int bn_i2c(ASN1_VALUE **pval, unsigned char *cont, int *putype, const ASN1_ITEM *it) argument
127 int utype, char *free_cont, const ASN1_ITEM *it)
126 bn_c2i(ASN1_VALUE **pval, const unsigned char *cont, int len, int utype, char *free_cont, const ASN1_ITEM *it) argument
[all...]
/external/chromium_org/ui/events/
H A Dlatency_info.cc110 for (ui::LatencyInfo::LatencyMap::const_iterator it =
112 it != latency.latency_components.end(); ++it) {
114 component_info->SetDouble("comp_id", it->first.second);
115 component_info->SetDouble("time", it->second.event_time.ToInternalValue());
116 component_info->SetDouble("count", it->second.event_count);
117 record_data->Set(GetComponentName(it->first.first), component_info);
170 for (LatencyMap::const_iterator it = other.latency_components.begin();
171 it != other.latency_components.end();
172 ++it) {
256 LatencyMap::iterator it = latency_components.find(key); local
294 LatencyMap::const_iterator it = latency_components.find( local
304 LatencyMap::iterator it = latency_components.begin(); local
[all...]
/external/chromium_org/chrome/browser/extensions/api/mdns/
H A Dmdns_api.cc89 for (EventListenerMap::ListenerList::const_iterator it = listeners.begin();
90 it != listeners.end(); ++it) {
91 base::DictionaryValue* filter = ((*it)->filter());
110 for (std::set<std::string>::iterator it = added_service_types.begin();
111 it != added_service_types.end(); ++it) {
112 if (IsServiceTypeWhitelisted(*it))
113 registry->RegisterDnsSdListener(*it);
115 for (std::set<std::string>::iterator it
[all...]
/external/chromium_org/content/browser/gamepad/
H A Dgamepad_service.cc89 ConsumerSet::iterator it = consumers_.find(consumer); local
90 if (it->is_active && --num_active_consumers_ == 0)
92 consumers_.erase(it);
110 for (ConsumerSet::iterator it = consumers_.begin();
111 it != consumers_.end(); ++it) {
112 if (it->did_observe_user_gesture && it->is_active)
113 it->consumer->OnGamepadConnected(index, pad);
122 for (ConsumerSet::iterator it
[all...]
/external/chromium_org/content/browser/renderer_host/pepper/
H A Dquota_reservation.cc47 for (FileMap::iterator it = files_.begin(); it != files_.end(); ++it)
48 delete it->second;
82 FileMap::iterator it = files_.find(id); local
83 if (it != files_.end()) {
84 it->second->UpdateMaxWrittenOffset(file_growth.max_written_offset);
85 it->second->AddAppendModeWriteAmount(file_growth.append_mode_write_amount);
86 delete it->second;
87 files_.erase(it);
[all...]
/external/chromium_org/third_party/webrtc/base/
H A Dprofiler.cc95 EventMap::iterator it = events_.find(event_name); local
96 bool needs_insert = (it == events_.end());
102 it = events_.insert(
106 it->second.Start();
113 EventMap::iterator it = events_.find(event_name); local
114 if (it != events_.end()) {
115 it->second.Stop(stop_time);
136 for (EventMap::const_iterator it = events_.begin();
137 it != events_.end(); ++it) {
154 EventMap::const_iterator it = local
163 EventMap::iterator it = events_.begin(); local
[all...]
/external/ltrace/
H A Dfilter.c5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License as
10 * This program is distributed in the hope that it will be useful, but
40 struct filter_rule *it; local
41 for (it = filt->rules; it != NULL; ) {
42 struct filter_rule *next = it->next;
43 filter_rule_destroy(it);
44 it = next;
151 struct filter_rule *it; local
170 struct filter_rule *it; local
[all...]
/external/chromium_org/gpu/command_buffer/service/
H A Dframebuffer_manager.cc354 AttachmentMap::const_iterator it = local
356 if (it != attachments_.end()) {
357 const Attachment* attachment = it->second.get();
364 for (AttachmentMap::const_iterator it = attachments_.begin();
365 it != attachments_.end(); ++it) {
366 if (it->first >= GL_COLOR_ATTACHMENT0 &&
367 it->first < GL_COLOR_ATTACHMENT0 + manager_->max_draw_buffers_) {
368 const Attachment* attachment = it->second.get();
380 for (AttachmentMap::const_iterator it
417 AttachmentMap::iterator it = attachments_.find(attachment); local
452 AttachmentMap::const_iterator it = attachments_.find(GL_COLOR_ATTACHMENT0); local
461 AttachmentMap::const_iterator it = attachments_.find(GL_COLOR_ATTACHMENT0); local
524 FramebufferComboCompleteMap::const_iterator it = local
624 FramebufferMap::iterator it = framebuffers_.find(client_id); local
629 FramebufferMap::iterator it = framebuffers_.find(client_id); local
669 AttachmentMap::const_iterator it = attachments_.find(attachment); local
[all...]
/external/apache-http/src/org/apache/http/impl/client/
H A DBasicCookieStore.java82 * If the given cookie has already expired it will not be added, but existing
93 for (Iterator<Cookie> it = cookies.iterator(); it.hasNext();) {
94 if (cookieComparator.compare(cookie, it.next()) == 0) {
95 it.remove();
107 * in the given array order. If any of the given cookies has already expired it will
146 for (Iterator<Cookie> it = cookies.iterator(); it.hasNext();) {
147 if (it.next().isExpired(date)) {
148 it
[all...]
/external/chromium_org/cc/base/
H A Drolling_time_delta_history.cc25 TimeDeltaMultiset::iterator it = sample_set_.insert(time); local
26 chronological_sample_deque_.push_back(it);
51 TimeDeltaMultiset::const_reverse_iterator it = sample_set_.rbegin(); local
53 it++;
54 return *it;
57 TimeDeltaMultiset::const_iterator it = sample_set_.begin(); local
59 it++;
60 return *it;
/external/chromium_org/chrome/browser/chromeos/events/
H A Devent_rewriter_controller.cc47 for (aura::Window::Windows::iterator it = windows.begin();
48 it != windows.end();
49 ++it) {
50 AddToEventSource((*it)->GetHost()->GetEventSource());
61 for (EventRewriters::iterator it = rewriters_.begin(); it != rewriters_.end();
62 ++it) {
63 source->AddEventRewriter(*it);
/external/chromium_org/chrome/browser/chromeos/settings/
H A Downer_flags_storage.cc32 for (base::ListValue::const_iterator it = legacy_experiments->begin();
33 it != legacy_experiments->end(); ++it) {
35 if (!(*it)->GetAsString(&experiment_name)) {
59 for (CommandLine::StringVector::const_iterator it = switches.begin() + 1;
60 it != switches.end(); ++it) {
61 experiments_list.Append(new base::StringValue(*it));
/external/chromium_org/chrome/browser/content_settings/
H A Dlocal_shared_objects_container.cc93 for (OriginCookieSetMap::const_iterator it = origin_cookies_set_map.begin();
94 it != origin_cookies_set_map.end();
95 ++it) {
96 const canonical_cookie::CookieHashSet* cookie_list = it->second;
118 for (std::set<GURL>::const_iterator it = local_storage_info.begin();
119 it != local_storage_info.end();
120 ++it) {
121 if (SameDomainOrHost(origin, *it))
127 for (std::set<GURL>::const_iterator it = urls.begin();
128 it !
[all...]
/external/chromium_org/chrome/browser/devtools/
H A Dbrowser_list_tabcontents_provider.cc47 for (chrome::BrowserIterator it; !it.done(); it.Next())
48 profiles.insert((*it)->profile());
50 for (std::set<Profile*>::iterator it = profiles.begin();
51 it != profiles.end(); ++it) {
52 history::TopSites* ts = (*it)->GetTopSites();
/external/chromium_org/chrome/browser/
H A Dpref_service_flags_storage.cc23 for (base::ListValue::const_iterator it = enabled_experiments->begin();
24 it != enabled_experiments->end();
25 ++it) {
27 if (!(*it)->GetAsString(&experiment_name)) {
41 for (std::set<std::string>::const_iterator it = flags.begin();
42 it != flags.end(); ++it) {
43 experiments_list->Append(new base::StringValue(*it));

Completed in 1146 milliseconds

1234567891011>>