Searched refs:infos (Results 26 - 50 of 102) sorted by relevance

12345

/external/chromium_org/chrome/browser/browsing_data/
H A Dbrowsing_data_local_storage_helper.h65 const std::vector<content::LocalStorageUsageInfo>& infos);
/external/chromium_org/content/browser/service_worker/
H A Dservice_worker_context_core.cc293 std::vector<ServiceWorkerRegistrationInfo> infos; local
298 infos.push_back(iter->second->GetInfo());
300 return infos;
305 std::vector<ServiceWorkerVersionInfo> infos; local
310 infos.push_back(iter->second->GetInfo());
312 return infos;
H A Dservice_worker_browsertest.cc238 std::vector<ServiceWorkerRegistrationInfo> infos = local
240 if (infos.empty())
244 size_t index = infos.size() - 1;
245 if (!infos[index].installing_version.is_null)
246 version_id = infos[index].installing_version.version_id;
247 else if (!infos[index].waiting_version.is_null)
248 version_id = infos[1].waiting_version.version_id;
249 else if (!infos[index].active_version.is_null)
250 version_id = infos[index].active_version.version_id;
/external/chromium_org/third_party/webrtc/base/
H A Dsysteminfo.cc60 scoped_ptr<SYSTEM_LOGICAL_PROCESSOR_INFORMATION[]> infos; local
61 while (!glpi(infos.get(), &return_length)) {
63 infos.reset(new SYSTEM_LOGICAL_PROCESSOR_INFORMATION[
73 if (infos[i].Relationship == RelationProcessorCore) {
75 } else if (infos[i].Relationship == RelationCache) {
76 int next_cache_size = static_cast<int>(infos[i].Cache.Size);
/external/chromium_org/content/browser/
H A Ddatabase_tracker_unittest.cc725 std::vector<OriginInfo> infos; local
726 EXPECT_TRUE(tracker->GetAllOriginsInfo(&infos));
727 EXPECT_TRUE(infos.empty());
735 EXPECT_TRUE(tracker->GetAllOriginsInfo(&infos));
736 EXPECT_EQ(1u, infos.size());
737 EXPECT_EQ(kDescription, infos[0].GetDatabaseDescription(kEmptyName));
741 infos.clear();
742 EXPECT_TRUE(tracker->GetAllOriginsInfo(&infos));
743 EXPECT_EQ(1u, infos.size());
744 EXPECT_EQ(kChangedDescription, infos[
[all...]
H A Dstorage_partition_impl.cc116 const std::vector<LocalStorageUsageInfo>& infos) {
119 for (size_t i = 0; i < infos.size(); ++i) {
121 !origin_matcher.Run(infos[i].origin, special_storage_policy.get())) {
125 if (infos[i].last_modified >= delete_begin &&
126 infos[i].last_modified <= delete_end) {
127 dom_storage_context->DeleteLocalStorage(infos[i].origin);
138 const std::vector<SessionStorageUsageInfo>& infos) {
141 for (size_t i = 0; i < infos.size(); ++i) {
143 !origin_matcher.Run(infos[i].origin, special_storage_policy.get())) {
146 dom_storage_context->DeleteSessionStorage(infos[
109 OnLocalStorageUsageInfo( const scoped_refptr<DOMStorageContextWrapper>& dom_storage_context, const scoped_refptr<storage::SpecialStoragePolicy>& special_storage_policy, const StoragePartition::OriginMatcherFunction& origin_matcher, const base::Time delete_begin, const base::Time delete_end, const base::Closure& callback, const std::vector<LocalStorageUsageInfo>& infos) argument
133 OnSessionStorageUsageInfo( const scoped_refptr<DOMStorageContextWrapper>& dom_storage_context, const scoped_refptr<storage::SpecialStoragePolicy>& special_storage_policy, const StoragePartition::OriginMatcherFunction& origin_matcher, const base::Closure& callback, const std::vector<SessionStorageUsageInfo>& infos) argument
[all...]
/external/chromium_org/content/browser/dom_storage/
H A Ddom_storage_context_impl.h114 void GetLocalStorageUsage(std::vector<LocalStorageUsageInfo>* infos,
116 void GetSessionStorageUsage(std::vector<SessionStorageUsageInfo>* infos);
/external/chromium_org/third_party/libjingle/source/talk/p2p/base/
H A Dtransportchannel.h97 virtual bool GetStats(ConnectionInfos* infos) = 0;
H A Dtransportchannelproxy.h72 virtual bool GetStats(ConnectionInfos* infos);
H A Ddtlstransportchannel.h153 virtual bool GetStats(ConnectionInfos* infos) { argument
154 return channel_->GetStats(infos);
H A Dtransportchannelproxy.cc131 bool TransportChannelProxy::GetStats(ConnectionInfos* infos) { argument
136 return impl_->GetStats(infos);
/external/lldb/include/lldb/Symbol/
H A DClangASTContext.h270 const TemplateParameterInfos &infos);
275 const TemplateParameterInfos &infos);
282 const TemplateParameterInfos &infos);
288 const TemplateParameterInfos &infos);
/external/chromium_org/ppapi/proxy/
H A Dfile_ref_resource.cc234 const std::vector<ppapi::FileRefCreateInfo>& infos,
247 for (size_t i = 0; i < infos.size(); ++i) {
251 infos[i]);
230 OnDirectoryEntriesReply( const PP_ArrayOutput& output, scoped_refptr<TrackedCallback> callback, const ResourceMessageReplyParams& params, const std::vector<ppapi::FileRefCreateInfo>& infos, const std::vector<PP_FileType>& file_types) argument
H A Dfile_ref_resource.h80 const std::vector<ppapi::FileRefCreateInfo>& infos,
/external/chromium_org/third_party/WebKit/Source/core/html/parser/
H A DBackgroundHTMLParser.cpp71 static void checkThatXSSInfosAreSafeToSendToAnotherThread(const XSSInfoStream& infos) argument
73 for (size_t i = 0; i < infos.size(); ++i)
74 ASSERT(infos[i]->isSafeToSendToAnotherThread());
/external/chromium_org/content/browser/appcache/
H A Dappcache.cc297 void AppCache::ToResourceInfoVector(AppCacheResourceInfoVector* infos) const {
298 DCHECK(infos && infos->empty());
301 infos->push_back(AppCacheResourceInfo());
302 AppCacheResourceInfo& info = infos->back();
/external/llvm/utils/llvm-build/llvmbuild/
H A Dmain.py89 infos = list(
92 return LLVMProjectInfo(source_root, infos)
227 for subpath, infos in info_basedir.items():
229 infos.sort(key = lambda ci: ci.name)
244 for ci in infos:
265 f = open(infos[0]._source_path)
/external/chromium_org/content/browser/renderer_host/pepper/
H A Dpepper_internal_file_ref_backend.cc224 std::vector<ppapi::FileRefCreateInfo> infos; local
247 infos.push_back(info);
253 PpapiPluginMsg_FileRef_ReadDirectoryEntriesReply(infos, file_types));
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/model/
H A DBuildResultsElement.java99 String[] infos = new String[list.size()];
101 list.toArray(infos);
103 ComboBoxPropertyDescriptor infoDescriptor = new ComboBoxPropertyDescriptor(P_ID_STATUS_INFO, P_STR_STATUS_INFO, infos);
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
H A DGrammarReport.java69 int infos; field in class:GrammarReport.ReportData
247 data.infos = ErrorManager.getErrorState().infos;
470 buf.append("Number of infos: ");
471 buf.append(data.infos);
/external/chromium_org/chrome/browser/download/
H A Ddownload_history.h102 scoped_ptr<std::vector<history::DownloadRow> > infos);
H A Ddownload_history.cc254 void DownloadHistory::QueryCallback(scoped_ptr<InfoVector> infos) { argument
259 for (InfoVector::const_iterator it = infos->begin();
260 it != infos->end(); ++it) {
/external/jmdns/src/javax/jmdns/
H A DJmDNS.java32 * @param infos
35 public void cannotRecoverFromIOError(JmDNS dns, Collection<ServiceInfo> infos); argument
378 * Returns a list of service infos of the specified type.
387 * Returns a list of service infos of the specified type.
398 * Returns a list of service infos of the specified type sorted by subtype. Any service that do not register a subtype is listed in the empty subtype section.
407 * Returns a list of service infos of the specified type sorted by subtype. Any service that do not register a subtype is listed in the empty subtype section.
/external/chromium_org/v8/tools/
H A Dll_prof.py710 self.infos = []
723 self.infos.append(mmap_info)
783 for i, mmap_info in enumerate(self.infos):
786 self.infos[0], self.infos[i] = mmap_info, self.infos[0]
830 mmap_infos = [m for m in library_repo.infos if m.ticks > 0]
/external/chromium_org/extensions/browser/api/serial/
H A Dserial_api.cc356 std::vector<linked_ptr<serial::ConnectionInfo> > infos; local
369 infos.push_back(info);
373 results_ = serial::GetConnections::Results::Create(infos);

Completed in 788 milliseconds

12345