HomeSort by relevance Sort by last modified time
    Searched defs:Factory (Results 1 - 25 of 197) sorted by null

1 2 3 4 5 6 7 8

  /external/chromium/net/url_request/
url_request_data_job.h 22 static URLRequest::ProtocolFactory Factory;
url_request_about_job.h 21 static URLRequest::ProtocolFactory Factory;
url_request_data_job.cc 18 URLRequestJob* URLRequestDataJob::Factory(URLRequest* request,
url_request_about_job.cc 22 URLRequestJob* URLRequestAboutJob::Factory(URLRequest* request,
  /external/hamcrest/src/org/hamcrest/
Factory.java 9 * Marks a Hamcrest static factory method so tools recognise them.
10 * A factory method is an equivalent to a named constructor.
16 public @interface Factory {
  /external/chromium/chrome/browser/net/
url_request_mock_link_doctor_job.h 17 static net::URLRequest::ProtocolFactory Factory;
url_request_mock_http_job.h 26 static net::URLRequest::ProtocolFactory Factory;
url_request_mock_link_doctor_job.cc 25 net::URLRequestJob* URLRequestMockLinkDoctorJob::Factory(
36 URLRequestMockLinkDoctorJob::Factory);
url_request_mock_net_error_job.h 42 static net::URLRequest::ProtocolFactory Factory;
url_request_slow_http_job.h 20 static net::URLRequest::ProtocolFactory Factory;
url_request_failed_dns_job.cc 34 &URLRequestFailedDnsJob::Factory);
38 net::URLRequestJob* URLRequestFailedDnsJob::Factory(net::URLRequest* request,
  /external/chromium/chrome/browser/chromeos/login/
owner_key_utils.h 28 class Factory {
35 // Sets the factory used by the static method Create to create an
37 // |factory|. A value of NULL results in an OwnerKeyUtils being
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/chromium/net/http/
http_auth_handler_basic.h 20 class Factory : public HttpAuthHandlerFactory {
22 Factory();
23 virtual ~Factory();
http_auth_handler_basic.cc 87 HttpAuthHandlerBasic::Factory::Factory() {
90 HttpAuthHandlerBasic::Factory::~Factory() {
93 int HttpAuthHandlerBasic::Factory::CreateAuthHandler(
101 // TODO(cbentzel): Move towards model of parsing in the factory
http_auth_handler_ntlm_win.cc 45 HttpAuthHandlerNTLM::Factory::Factory()
52 HttpAuthHandlerNTLM::Factory::~Factory() {
55 int HttpAuthHandlerNTLM::Factory::CreateAuthHandler(
73 // TODO(cbentzel): Move towards model of parsing in the factory
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/util/
Factory.java 19 public interface Factory<A> {
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
BlockCounter.h 43 class Factory {
46 Factory(llvm::BumpPtrAllocator& Alloc);
47 ~Factory();
55 friend class Factory;
  /external/emma/core/java12/com/vladium/emma/report/
IReportDataModel.java 25 abstract class Factory
ItemComparator.java 23 ItemComparator NULL_COMPARATOR = new Factory.NullComparator ();
26 abstract class Factory
39 // TODO: move the code below into the attr factory
45 final Comparator comparator = IItemAttribute.Factory.getAttribute (attributeID, unitsID).comparator ();
  /external/skia/include/core/
SkTRegistry.h 21 typedef T (*Factory)(P);
23 SkTRegistry(Factory fact) {
44 Factory factory() const { return fFact; } function in class:SkTRegistry
47 Factory fFact;
  /external/skia/legacy/include/core/
SkTRegistry.h 21 typedef T (*Factory)(P);
23 SkTRegistry(Factory fact) {
44 Factory factory() const { return fFact; } function in class:SkTRegistry
47 Factory fFact;
  /external/skia/legacy/src/images/
SkImageDecoder_Factory.cpp 25 SkImageDecoder* SkImageDecoder::Factory(SkStream* stream) {
29 codec = curr->factory()(stream);
55 SkMovie* movie = curr->factory()(stream);
  /external/skia/src/images/
SkImageDecoder_Factory.cpp 25 SkImageDecoder* SkImageDecoder::Factory(SkStream* stream) {
29 codec = curr->factory()(stream);
55 SkMovie* movie = curr->factory()(stream);
  /frameworks/base/core/java/android/text/
Spannable.java 49 * Factory used by TextView to create new Spannables. You can subclass
52 public static class Factory {
53 private static Spannable.Factory sInstance = new Spannable.Factory();
56 * Returns the standard Spannable Factory.
58 public static Spannable.Factory getInstance() {
  /external/clang/lib/StaticAnalyzer/Core/
BlockCounter.cpp 55 static inline CountMap::Factory& GetFactory(void *F) {
56 return *static_cast<CountMap::Factory*>(F);
66 BlockCounter::Factory::Factory(llvm::BumpPtrAllocator& Alloc) {
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::GetEmptyCounter()
    [all...]

Completed in 805 milliseconds

1 2 3 4 5 6 7 8