Searched defs:Factory (Results 1 - 25 of 90) sorted by relevance

1234

/external/chromium/net/url_request/
H A Durl_request_data_job.h22 static URLRequest::ProtocolFactory Factory; member in class:net::URLRequestDataJob
H A Durl_request_about_job.h21 static URLRequest::ProtocolFactory Factory; member in class:net::URLRequestAboutJob
H A Durl_request_about_job.cc22 URLRequestJob* URLRequestAboutJob::Factory(URLRequest* request, function in class:net::URLRequestAboutJob
H A Durl_request_data_job.cc18 URLRequestJob* URLRequestDataJob::Factory(URLRequest* request, function in class:net::URLRequestDataJob
H A Durl_request_file_job.h31 static URLRequest::ProtocolFactory Factory; member in class:net::URLRequestFileJob
H A Durl_request_filter.h9 // URLRequest::RegisterProtocolFactory("http", &URLRequestFilter::Factory);
13 // &URLRequestCustomJob::Factory);
15 // If URLRequestFilter::Factory can't find a handle for the request, it passes
16 // it through to URLRequestInetJob::Factory and lets the default network stack
44 static URLRequest::ProtocolFactory Factory; member in class:net::URLRequestFilter
/external/chromium/chrome/browser/net/
H A Durl_request_mock_link_doctor_job.h17 static net::URLRequest::ProtocolFactory Factory; member in class:URLRequestMockLinkDoctorJob
H A Durl_request_mock_http_job.h26 static net::URLRequest::ProtocolFactory Factory; member in class:URLRequestMockHTTPJob
H A Durl_request_mock_net_error_job.h42 static net::URLRequest::ProtocolFactory Factory; member in class:URLRequestMockNetErrorJob
H A Durl_request_slow_http_job.h20 static net::URLRequest::ProtocolFactory Factory; member in class:URLRequestSlowHTTPJob
H A Durl_request_mock_link_doctor_job.cc25 net::URLRequestJob* URLRequestMockLinkDoctorJob::Factory( function in class:URLRequestMockLinkDoctorJob
36 URLRequestMockLinkDoctorJob::Factory);
H A Durl_request_failed_dns_job.cc34 &URLRequestFailedDnsJob::Factory); member in class:URLRequestFailedDnsJob
38 net::URLRequestJob* URLRequestFailedDnsJob::Factory(net::URLRequest* request, function in class:URLRequestFailedDnsJob
/external/chromium/net/http/
H A Dhttp_auth_handler_basic.h20 class Factory : public HttpAuthHandlerFactory { class in class:net::HttpAuthHandlerBasic
22 Factory();
23 virtual ~Factory();
H A Dhttp_auth_handler_basic.cc87 HttpAuthHandlerBasic::Factory::Factory() { function in class:net::HttpAuthHandlerBasic::Factory
90 HttpAuthHandlerBasic::Factory::~Factory() {
93 int HttpAuthHandlerBasic::Factory::CreateAuthHandler(
H A Dhttp_auth_handler_ntlm_win.cc45 HttpAuthHandlerNTLM::Factory::Factory() function in class:net::HttpAuthHandlerNTLM::Factory
52 HttpAuthHandlerNTLM::Factory::~Factory() {
55 int HttpAuthHandlerNTLM::Factory::CreateAuthHandler(
/external/chromium/chrome/browser/chromeos/login/
H A Downer_key_utils.h28 class Factory { class in class:chromeos::OwnerKeyUtils
40 static void set_factory(Factory* factory) { factory_ = factory; }
44 // Factory (the default) this creates and returns a new OwnerKeyUtils.
84 static Factory* factory_;
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DBlockCounter.h43 class Factory { class in class:clang::ento::BlockCounter
46 Factory(llvm::BumpPtrAllocator& Alloc);
47 ~Factory();
55 friend class Factory;
/external/skia/src/images/
H A DSkImageDecoder_Factory.cpp33 SkImageDecoder* SkImageDecoder::Factory(SkStream* stream) { function in class:SkImageDecoder
/external/clang/lib/StaticAnalyzer/Core/
H A DBlockCounter.cpp55 static inline CountMap::Factory& GetFactory(void *F) {
56 return *static_cast<CountMap::Factory*>(F);
66 BlockCounter::Factory::Factory(llvm::BumpPtrAllocator& Alloc) { function in class:BlockCounter::Factory
67 F = new CountMap::Factory(Alloc);
70 BlockCounter::Factory::~Factory() {
71 delete static_cast<CountMap::Factory*>(F);
75 BlockCounter::Factory::IncrementCount(BlockCounter BC,
84 BlockCounter::Factory
[all...]
/external/emma/core/java12/com/vladium/emma/report/
H A DIReportDataModel.java25 abstract class Factory class in interface:IReportDataModel
/external/skia/include/core/
H A DSkTRegistry.h28 typedef T (*Factory)(P); typedef in class:SkTRegistry
30 SkTRegistry(Factory fact) {
51 Factory factory() const { return fFact; }
54 Factory fFact;
/external/skia/src/ports/
H A DSkImageDecoder_empty.cpp47 SkImageDecoder* SkImageDecoder::Factory(SkStream* stream) { function in class:SkImageDecoder
/external/v8/src/
H A Dfactory.h40 class Factory { class in namespace:v8::internal
/external/chromium/chrome/browser/ui/tabs/
H A Ddock_info.h27 class Factory { class in class:DockInfo
38 virtual ~Factory() {}
80 static void set_factory(Factory* factory) { factory_ = factory; }
93 // If a Factory has been set, the method of the same name is invoked on the
94 // Factory to determine the DockInfo.
103 // If a Factory has been set, the method of the same name is invoked on the
104 // Factory to determine the DockInfo.
185 // Factory that creates DockInfos. By default this is NULL, which gives the
187 static Factory* factory_;
/external/chromium/chrome/common/net/
H A Durl_fetcher.h87 // URLFetcher::Create uses the currently registered Factory to create the
88 // URLFetcher. Factory is intended for testing.
89 class Factory { class in class:URLFetcher
97 virtual ~Factory() {}
111 static void set_factory(Factory* factory) { factory_ = factory; }
122 // Factory (the default) this creates and returns a new URLFetcher. See the
241 static Factory* factory_;

Completed in 578 milliseconds

1234