Searched defs:found (Results 201 - 225 of 862) sorted by relevance

1234567891011>>

/external/chromium_org/chromeos/network/
H A Dnetwork_profile_handler.cc3 // found in the LICENSE file.
154 ProfileList::iterator found = std::find_if(profiles_.begin(), profiles_.end(), local
156 if (found == profiles_.end())
158 NetworkProfile profile = *found;
159 profiles_.erase(found);
166 ProfileList::const_iterator found = local
170 if (found == profiles_.end())
172 return &*found;
/external/chromium_org/components/bookmarks/browser/
H A Dbookmark_index_unittest.cc3 // found in the LICENSE file.
41 std::map<GURL, int>::const_iterator found = variable
43 if (found == typed_count_map_.end())
46 node_typed_count_pairs->push_back(std::make_pair(node, found->second));
95 bool found = false; local
99 found = true;
103 ASSERT_TRUE(found);
/external/chromium_org/content/browser/appcache/
H A Dappcache.cc3 // found in the LICENSE file.
64 EntryMap::iterator found = entries_.find(url); local
65 DCHECK(found != entries_.end());
66 cache_size_ -= found->second.response_size();
67 entries_.erase(found);
89 HandlerMap::const_iterator found = executable_handlers_.find(response_id); local
90 if (found != executable_handlers_.end())
91 return found->second;
/external/chromium_org/content/browser/
H A Ddatabase_quota_client_unittest.cc3 // found in the LICENSE file.
42 std::map<GURL, MockOriginInfo>::const_iterator found = variable
45 if (found == mock_origin_infos_.end())
47 *info = OriginInfo(found->second);
/external/chromium_org/content/browser/dom_storage/
H A Ddom_storage_host.cc3 // found in the LICENSE file.
44 AreaMap::iterator found = connections_.find(connection_id); local
45 if (found == connections_.end())
47 found->second.namespace_->CloseStorageArea(found->second.area_.get());
48 connections_.erase(found);
183 AreaMap::iterator found = connections_.find(connection_id); local
184 if (found == connections_.end())
186 return found->second.area_.get();
190 AreaMap::iterator found local
[all...]
H A Ddom_storage_namespace.cc3 // found in the LICENSE file.
243 AreaMap::iterator found = areas_.find(origin); local
244 if (found == areas_.end())
246 return &(found->second);
/external/chromium_org/content/browser/indexed_db/
H A Dindexed_db_fake_backing_store.cc3 // found in the LICENSE file.
42 bool* found) {
125 bool* found) {
39 GetIDBDatabaseMetaData( const base::string16& name, IndexedDBDatabaseMetadata*, bool* found) argument
119 KeyExistsInObjectStore( Transaction*, int64 database_id, int64 object_store_id, const IndexedDBKey&, RecordIdentifier* found_record_identifier, bool* found) argument
/external/chromium_org/content/browser/indexed_db/leveldb/
H A Dleveldb_transaction.cc3 // found in the LICENSE file.
69 bool* found) {
70 *found = false;
80 *found = true;
84 leveldb::Status s = db_->Get(key, value, found, &snapshot_);
86 DCHECK(!*found);
475 bool* found) {
476 *found = false;
479 leveldb::Status s = db_->Get(key, value, found);
480 DCHECK(s.ok() || !*found);
67 Get(const StringPiece& key, std::string* value, bool* found) argument
473 Get(const StringPiece& key, std::string* value, bool* found) argument
[all...]
/external/chromium_org/content/browser/quota/
H A Dquota_temporary_storage_evictor_unittest.cc3 // found in the LICENSE file.
101 std::map<GURL, int64>::iterator found = origins_.find(origin); local
102 EXPECT_TRUE(origins_.end() != found);
103 AddOrigin(origin, found->second);
H A Dusage_tracker_unittest.cc3 // found in the LICENSE file.
105 UsageMap::const_iterator found = usage_map_.find(origin); local
106 if (found == usage_map_.end())
108 return found->second;
/external/chromium_org/content/browser/renderer_host/pepper/
H A Dbrowser_ppapi_host_impl.cc3 // found in the LICENSE file.
95 InstanceMap::const_iterator found = instance_map_.find(instance); local
96 if (found == instance_map_.end()) {
102 *render_process_id = found->second.render_process_id;
103 *render_frame_id = found->second.render_frame_id;
120 InstanceMap::const_iterator found = instance_map_.find(instance); local
121 if (found == instance_map_.end())
123 return found->second.document_url;
127 InstanceMap::const_iterator found = instance_map_.find(instance); local
128 if (found
146 InstanceMap::iterator found = instance_map_.find(instance); local
[all...]
/external/chromium_org/content/browser/service_worker/
H A Dembedded_worker_registry.cc3 // found in the LICENSE file.
55 WorkerInstanceMap::iterator found = worker_map_.find(message.routing_id()); local
56 DCHECK(found != worker_map_.end());
57 if (found == worker_map_.end())
59 return found->second->OnMessageReceived(message);
73 WorkerInstanceMap::iterator found = worker_map_.find(embedded_worker_id); local
74 DCHECK(found != worker_map_.end());
75 DCHECK_EQ(found->second->process_id(), process_id);
76 if (found == worker_map_.end() || found
85 WorkerInstanceMap::iterator found = worker_map_.find(embedded_worker_id); local
95 WorkerInstanceMap::iterator found = worker_map_.find(embedded_worker_id); local
107 WorkerInstanceMap::iterator found = worker_map_.find(embedded_worker_id); local
118 WorkerInstanceMap::iterator found = worker_map_.find(embedded_worker_id); local
129 WorkerInstanceMap::iterator found = worker_map_.find(embedded_worker_id); local
143 WorkerInstanceMap::iterator found = worker_map_.find(embedded_worker_id); local
158 WorkerInstanceMap::iterator found = worker_map_.find(embedded_worker_id); local
174 std::map<int, std::set<int> >::iterator found = local
191 WorkerInstanceMap::iterator found = worker_map_.find(embedded_worker_id); local
[all...]
/external/chromium_org/content/renderer/gpu/
H A Dcompositor_software_output_device.cc3 // found in the LICENSE file.
165 bool found = local
168 if (!found)
/external/chromium_org/content/renderer/pepper/
H A Dhost_globals.cc3 // found in the LICENSE file.
110 InstanceMap::iterator found = instance_map_.find(instance); local
111 if (found == instance_map_.end())
113 return found->second->module()->GetCallbackTracker().get();
220 ModuleMap::iterator found = module_map_.find(module); local
221 if (found == module_map_.end()) {
225 module_map_.erase(found);
231 ModuleMap::iterator found = module_map_.find(module); local
232 if (found == module_map_.end())
234 return found
272 InstanceMap::iterator found = instance_map_.find(instance); local
[all...]
/external/chromium_org/courgette/
H A Ddisassembler_elf_32_arm.cc3 // found in the LICENSE file.
389 bool found = false; local
392 if (!found && (p + 3) <= end_pointer) {
402 found = true;
411 found = true;
416 if (!found && (p + 5) <= end_pointer) {
431 found = true;
442 found = true;
448 if (!found && on_32bit && (p + 5) <= end_pointer) {
459 found
[all...]
/external/chromium_org/dbus/
H A Ddbus_statistics.cc3 // found in the LICENSE file.
111 StatSet::iterator found = stats_.find(stat.get()); local
112 if (found != stats_.end())
113 return *found;
116 found = stats_.insert(stat.release()).first;
117 return *found;
/external/chromium_org/extensions/browser/
H A Dfile_highlighter.cc3 // found in the LICENSE file.
22 // over any escaped quotes. If no next quote is found, |index| is set to
26 bool found = false; local
27 while (!found && i < str.size()) {
31 found = true;
35 *index = found ? i : std::string::npos;
134 // We may have found trailing whitespace. Don't use base::TrimWhitespace,
/external/chromium_org/media/cdm/
H A Djson_web_key.cc3 // found in the LICENSE file.
37 size_t found = encoded_text.find_last_not_of(kBase64Padding); local
38 if (found != std::string::npos)
39 encoded_text.erase(found + 1);
91 // Have found a JWK, start by checking that it is a symmetric key.
/external/chromium_org/media/cdm/ppapi/
H A Dcdm_file_io_impl.cc3 // found in the LICENSE file.
222 FileLockMap::iterator found = file_lock_map_->find(file_id_); local
223 if (found != file_lock_map_->end() && found->second)
237 FileLockMap::iterator found = file_lock_map_->find(file_id_);
238 if (found != file_lock_map_->end() && found->second)
239 found->second = false;
/external/chromium_org/net/http/
H A Dhttp_security_headers.cc3 // found in the LICENSE file.
328 bool found = false; local
333 found = true;
338 if (!found)
/external/chromium_org/net/quic/crypto/
H A Dcert_compressor.cc3 // found in the LICENSE file.
375 bool found = false; local
379 found = true;
383 if (!found) {
/external/chromium_org/net/socket/
H A Dnss_ssl_util.cc3 // found in the LICENSE file.
38 // true if it found and removed every element of |to_remove|. It assumes that
41 size_t i, found = 0; local
50 found++;
56 return found == i;
/external/chromium_org/ppapi/cpp/
H A Dinstance.cc3 // found in the LICENSE file.
221 InterfaceNameToObjectMap::iterator found = interface_name_to_objects_.find( local
223 if (found == interface_name_to_objects_.end()) {
231 PP_DCHECK(found->second == object);
234 interface_name_to_objects_.erase(found);
254 InterfaceNameToObjectMap::iterator found =
256 if (found == that->interface_name_to_objects_.end())
258 return found->second;
/external/chromium_org/ppapi/host/
H A Dppapi_host.cc3 // found in the LICENSE file.
252 PendingHostResourceMap::iterator found = local
254 if (found == pending_resource_hosts_.end()) {
259 found->second->SetPPResourceForPendingHost(pp_resource);
260 resources_[pp_resource] = found->second;
261 pending_resource_hosts_.erase(found);
265 ResourceMap::iterator found = resources_.find(resource); local
266 if (found == resources_.end()) {
275 linked_ptr<ResourceHost> delete_at_end_of_scope(found->second);
276 resources_.erase(found);
280 ResourceMap::const_iterator found = resources_.find(resource); local
[all...]
/external/chromium_org/ppapi/proxy/
H A Dhost_dispatcher.cc3 // found in the LICENSE file.
33 ModuleToDispatcherMap::const_iterator found = local
35 if (found == g_module_to_dispatcher->end()) {
41 if (!found->second->Send(new PpapiMsg_ReserveInstanceId(instance, &usable)))
104 InstanceToDispatcherMap::iterator found = g_instance_to_dispatcher->find(
106 if (found == g_instance_to_dispatcher->end())
108 return found->second;
123 InstanceToDispatcherMap::iterator found = g_instance_to_dispatcher->find(
125 if (found != g_instance_to_dispatcher->end())
126 g_instance_to_dispatcher->erase(found);
[all...]

Completed in 6734 milliseconds

1234567891011>>