Searched defs:it (Results 276 - 300 of 1744) sorted by relevance

<<11121314151617181920>>

/external/chromium_org/content/browser/frame_host/
H A Drender_frame_proxy_host.cc38 RoutingIDFrameProxyMap::iterator it = frames->find( local
40 return it == frames->end() ? NULL : it->second;
60 // it is created in the parent's process. CrossProcessFrameConnector
64 // process navigations, but it will be destroyed if the frame is
117 // initialized it) or may not (we have our own process or the old process
/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/gpu/
H A Dgpu_surface_tracker.cc41 for (SurfaceMap::iterator it = surface_map_.begin(); it != surface_map_.end();
42 ++it) {
43 const SurfaceInfo& info = it->second;
46 return it->first;
71 SurfaceMap::iterator it = surface_map_.find(surface_id); local
72 if (it == surface_map_.end())
74 const SurfaceInfo& info = it->second;
92 SurfaceMap::iterator it = surface_map_.find(surface_id); local
93 if (it
100 SurfaceMap::iterator it = surface_map_.find(surface_id); local
116 SurfaceMap::iterator it = surface_map_.find(surface_id); local
[all...]
/external/chromium_org/content/browser/indexed_db/
H A Dindexed_db_transaction_coordinator.cc70 for (TransactionSet::const_iterator it = started_transactions_.begin();
71 it != started_transactions_.end();
72 ++it) {
73 result.push_back(it->get());
75 for (TransactionSet::const_iterator it = queued_transactions_.begin();
76 it != queued_transactions_.end();
77 ++it) {
78 result.push_back(it->get());
97 for (TransactionSet::const_iterator it = started_transactions_.begin();
98 it !
109 TransactionSet::const_iterator it = queued_transactions_.begin(); local
[all...]
/external/chromium_org/content/browser/manifest/
H A Dmanifest_manager_host.cc36 FrameCallbackMap::iterator it = pending_callbacks_.find(render_frame_host); local
37 return it != pending_callbacks_.end() ? it->second : 0;
48 CallbackMap::const_iterator it(callbacks);
49 for (; !it.IsAtEnd(); it.Advance())
50 it.GetCurrentValue()->Run(Manifest());
103 // When receiving a Manifest, the browser process can't trust that it is
/external/chromium_org/content/browser/renderer_host/media/
H A Dvideo_capture_buffer_pool.cc123 for (BufferMap::iterator it = buffers_.begin(); it != buffers_.end(); ++it) {
124 Buffer* buffer = it->second;
127 // Existing buffer is big enough. Reuse it.
129 return it->first;
133 realloc = it;
165 BufferMap::iterator it = buffers_.find(buffer_id); local
166 if (it == buffers_.end())
168 return it
[all...]
/external/chromium_org/content/browser/renderer_host/p2p/
H A Dsocket_host_tcp_server.cc105 AcceptedSocketsMap::iterator it = accepted_sockets_.find(address); local
106 if (it != accepted_sockets_.end())
107 delete it->second;
130 AcceptedSocketsMap::iterator it = accepted_sockets_.find(remote_address); local
131 if (it == accepted_sockets_.end())
134 net::StreamSocket* socket = it->second;
135 accepted_sockets_.erase(it);
/external/chromium_org/content/browser/service_worker/
H A Dservice_worker_cache_storage_manager.cc64 for (ServiceWorkerCacheStorageMap::iterator it = cache_storage_map_.begin();
65 it != cache_storage_map_.end();
66 ++it) {
67 delete it->second;
153 ServiceWorkerCacheStorageMap::const_iterator it = local
155 if (it == cache_storage_map_.end()) {
167 return it->second;
/external/chromium_org/content/common/dom_storage/
H A Ddom_storage_map.cc22 DOMStorageValuesMap::const_iterator it = values.begin(); local
23 for (; it != values.end(); ++it)
24 count += size_of_item(it->first, it->second.string());
/external/chromium_org/content/public/browser/
H A Ddesktop_media_id.cc29 std::map<aura::Window*, int>::iterator it = window_to_id_map_.find(window); local
30 if (it != window_to_id_map_.end()) {
31 return it->second;
34 // If the windows doesn't have an Id yet assign it.
48 std::map<int, aura::Window*>::iterator it = id_to_window_map_.find(id); local
49 return (it != id_to_window_map_.end()) ? it->second : NULL;
62 std::map<aura::Window*, int>::iterator it = window_to_id_map_.find(window); variable
63 DCHECK(it != window_to_id_map_.end());
64 id_to_window_map_.erase(it
[all...]
/external/chromium_org/content/renderer/gpu/
H A Dmailbox_output_surface.cc152 // Ignore message if it's a stale one coming from a different output surface
161 // if it decided to skip a frame.
162 std::deque<TransferableFrame>::iterator it; local
163 for (it = pending_textures_.begin(); it != pending_textures_.end(); it++) {
164 DCHECK(!it->mailbox.IsZero());
165 if (!memcmp(it->mailbox.name,
167 sizeof(it->mailbox.name))) {
168 DCHECK(it
[all...]
/external/chromium_org/content/renderer/input/
H A Dinput_handler_manager.cc112 InputHandlerMap::iterator it = input_handlers_.find(routing_id); local
113 if (it == input_handlers_.end()) {
120 InputHandlerProxy* proxy = it->second->input_handler_proxy();
/external/chromium_org/content/renderer/media/
H A Dtagged_list.h52 // to it if it is found.
57 typename ItemList::iterator it = std::find_if( local
59 if (it != items_.end()) {
60 scoped_refptr<ItemType> removed_item = *it;
61 items_.erase(it);
H A Dvideo_capture_impl_manager.cc16 // Immediately after that the pointer to it is dropped. This means no
47 for (VideoCaptureDeviceMap::iterator it = devices_.begin();
48 it != devices_.end(); ++it) {
49 VideoCaptureImpl* impl = it->second.second;
67 VideoCaptureDeviceMap::iterator it = devices_.find(id); local
68 if (it == devices_.end()) {
78 ++it->second.first;
90 VideoCaptureDeviceMap::iterator it = devices_.find(id); local
91 DCHECK(it !
114 VideoCaptureDeviceMap::iterator it = devices_.find(id); local
127 VideoCaptureDeviceMap::iterator it = devices_.find(id); local
146 VideoCaptureDeviceMap::iterator it = devices_.find(id); local
158 VideoCaptureDeviceMap::iterator it = devices_.find(id); local
[all...]
H A Dwebrtc_identity_service.cc69 std::deque<RequestInfo>::iterator it; local
70 for (it = pending_requests_.begin(); it != pending_requests_.end(); ++it) {
71 if (it->request_id != request_id)
73 if (it != pending_requests_.begin()) {
74 pending_requests_.erase(it);
103 // The browser process may have sent the response before it receives the
115 // The browser process may have sent the response before it receives the
/external/chromium_org/content/renderer/pepper/
H A Dpepper_browser_connection.cc73 std::map<int32_t, PendingResourceIDCallback>::iterator it = local
75 if (it != pending_create_map_.end()) {
76 it->second.Run(pending_resource_host_ids);
77 pending_create_map_.erase(it);
/external/chromium_org/content/shell/app/
H A Dwebkit_test_platform_support_win.cc77 // The size of drop-down menus depends on it.
106 for (std::list<std::string>::iterator it = errors.begin(); it != errors.end();
107 ++it) {
108 std::cerr << *it << "\n"; local
/external/chromium_org/device/hid/
H A Dhid_service.cc73 for (DeviceMap::iterator it = devices_.begin();
74 it != devices_.end();
75 ++it) {
76 devices->push_back(it->second);
83 DeviceMap::const_iterator it = devices_.find(device_id); local
84 if (it == devices_.end())
86 *info = it->second;
103 DeviceMap::iterator it = devices_.find(device_id); local
104 if (it != devices_.end())
105 devices_.erase(it);
[all...]
/external/chromium_org/extensions/browser/api/storage/
H A Dstorage_frontend.cc32 // processes for |context| and its incognito partner if it exists.
106 for (CacheMap::iterator it = caches_.begin(); it != caches_.end(); ++it) {
107 ValueStoreCache* cache = it->second;
115 CacheMap::const_iterator it = caches_.find(settings_namespace); local
116 if (it != caches_.end())
117 return it->second;
144 for (CacheMap::iterator it = caches_.begin(); it !
161 CacheMap::iterator it = caches_.find(settings_namespace); local
[all...]
/external/chromium_org/extensions/browser/
H A Dlazy_background_task_queue.cc74 PendingTasksMap::iterator it = pending_tasks_.find(key); local
75 if (it == pending_tasks_.end()) {
97 tasks_list = it->second.get();
123 for (PendingTasksList::const_iterator it = tasks.begin();
124 it != tasks.end(); ++it) {
125 it->Run(host);
145 // events for it.
H A Druntime_data.cc63 ExtensionFlagsMap::const_iterator it = extension_flags_.find(extension->id()); local
64 if (it == extension_flags_.end())
66 return !!(it->second & flag);
/external/chromium_org/gin/
H A Dper_isolate_data.cc48 ObjectTemplateMap::iterator it = object_templates_.find(info); local
49 if (it == object_templates_.end())
51 return it->second.Get(isolate_);
56 FunctionTemplateMap::iterator it = function_templates_.find(info); local
57 if (it == function_templates_.end())
59 return it->second.Get(isolate_);
77 IndexedPropertyInterceptorMap::iterator it = indexed_interceptors_.find(base); local
78 if (it != indexed_interceptors_.end())
79 indexed_interceptors_.erase(it);
87 NamedPropertyInterceptorMap::iterator it local
96 IndexedPropertyInterceptorMap::iterator it = indexed_interceptors_.find(base); local
105 NamedPropertyInterceptorMap::iterator it = named_interceptors_.find(base); local
[all...]
/external/chromium_org/gpu/command_buffer/client/
H A Dbuffer_tracker.cc41 BufferMap::iterator it = buffers_.find(client_id); local
42 return it != buffers_.end() ? it->second : NULL;
46 BufferMap::iterator it = buffers_.find(client_id); local
47 if (it != buffers_.end()) {
48 Buffer* buffer = it->second;
49 buffers_.erase(it);
/external/chromium_org/gpu/command_buffer/service/
H A Dmailbox_manager.cc29 MailboxToTextureMap::iterator it = local
31 if (it != mailbox_to_textures_.end())
32 return it->second->first;
35 // See if it's visible in another mailbox manager, and if so make it visible
52 MailboxToTextureMap::iterator it = mailbox_to_textures_.find(target_name); local
53 if (it != mailbox_to_textures_.end()) {
54 if (it->second->first == texture)
56 TextureToMailboxMap::iterator texture_it = it->second;
57 mailbox_to_textures_.erase(it);
[all...]
H A Dvertex_array_manager.cc51 VertexAttribManagerMap::iterator it = vertex_attrib_managers_.find(client_id); local
52 return it != vertex_attrib_managers_.end() ? it->second.get() : NULL;
56 VertexAttribManagerMap::iterator it = vertex_attrib_managers_.find(client_id); local
57 if (it != vertex_attrib_managers_.end()) {
58 VertexAttribManager* vertex_attrib_manager = it->second.get();
60 vertex_attrib_managers_.erase(it);
77 for (VertexAttribManagerMap::const_iterator it =
79 it != vertex_attrib_managers_.end(); ++it) {
[all...]

Completed in 6326 milliseconds

<<11121314151617181920>>