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

1 2 3 4 5 6 7 8 91011>>

  /external/smali/dexlib/src/main/java/org/jf/dexlib/Code/Format/
Format.java 34 Format10t(Instruction10t.Factory, 2),
35 Format10x(Instruction10x.Factory, 2),
36 Format11n(Instruction11n.Factory, 2),
37 Format11x(Instruction11x.Factory, 2),
38 Format12x(Instruction12x.Factory, 2),
39 Format20bc(Instruction20bc.Factory, 4),
40 Format20t(Instruction20t.Factory, 4),
41 Format21c(Instruction21c.Factory, 4),
42 Format21h(Instruction21h.Factory, 4),
43 Format21s(Instruction21s.Factory, 4)
    [all...]
  /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() {
Editable.java 120 * Factory used by TextView to create new Editables. You can subclass
123 public static class Factory {
124 private static Editable.Factory sInstance = new Editable.Factory();
127 * Returns the standard Editable Factory.
129 public static Editable.Factory getInstance() {
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/util/
Factory.java 19 public interface Factory<A> {
  /external/chromium_org/third_party/skia/include/core/
SkFlattenable.h 30 virtual Factory getFactory() SK_OVERRIDE { return NULL; }; \
33 virtual Factory getFactory() SK_OVERRIDE { return CreateProc; } \
48 typedef SkFlattenable* (*Factory)(SkFlattenableReadBuffer&);
52 /** Implement this to return a factory function pointer that can be called
56 virtual Factory getFactory() = 0;
58 static Factory NameToFactory(const char name[]);
59 static const char* FactoryToName(Factory);
60 static void Register(const char name[], Factory);
64 Registrar(const char name[], Factory factory) {
    [all...]
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/include/core/
SkFlattenable.h 30 virtual Factory getFactory() SK_OVERRIDE { return NULL; }; \
33 virtual Factory getFactory() SK_OVERRIDE { return CreateProc; } \
48 typedef SkFlattenable* (*Factory)(SkFlattenableReadBuffer&);
52 /** Implement this to return a factory function pointer that can be called
56 virtual Factory getFactory() = 0;
58 static Factory NameToFactory(const char name[]);
59 static const char* FactoryToName(Factory);
60 static void Register(const char name[], Factory);
64 Registrar(const char name[], Factory factory) {
    [all...]
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/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
BlockCounter.h 43 class Factory {
46 Factory(llvm::BumpPtrAllocator& Alloc);
47 ~Factory();
55 friend class Factory;
  /external/clang/unittests/AST/
DeclTest.cpp 23 llvm::OwningPtr<FrontendActionFactory> Factory(
32 Factory->create(),
56 Factory->create(),
  /cts/tests/tests/text/src/android/text/cts/
Editable_FactoryTest.java 22 import android.text.Editable.Factory;
26 Factory mFactory;
34 // new the Factory instance
35 mFactory = new Editable.Factory();
43 // new the Factory instance
44 mFactory = Factory.getInstance();
45 assertTrue(mFactory instanceof Editable.Factory);
Spannable_FactoryTest.java 22 import android.text.Spannable.Factory;
28 Factory factory = Spannable.Factory.getInstance(); local
30 Spannable spannable = factory.newSpannable(text);
36 factory.newSpannable(null);
43 Spannable.Factory factory = Spannable.Factory.getInstance(); local
44 assertNotNull(factory);
    [all...]
  /external/jmdns/src/javax/jmdns/
NetworkTopologyDiscovery.java 12 * To create you own filtering class for Internet Addresses you will need to implement the class and the factory delegate. These must be called before any other call to JmDNS.
31 * public static class MyClass implements NetworkTopologyDiscovery.Factory.ClassDelegate {
34 * NetworkTopologyDiscovery.Factory.setClassDelegate(this);
54 * NetworkTopologyDiscovery.Factory enable the creation of new instance of NetworkTopologyDiscovery.
56 public static final class Factory {
60 * This interface defines a delegate to the NetworkTopologyDiscovery.Factory class to enable subclassing.
74 private static final AtomicReference<Factory.ClassDelegate> _databaseClassDelegate = new AtomicReference<Factory.ClassDelegate>();
76 private Factory() {
86 * @see JmmDNS.Factory.ClassDelegat
    [all...]
  /external/chromium_org/net/websockets/
websocket_stream_base.h 24 class Factory {
26 virtual ~Factory() {}
  /external/hamcrest/src/org/hamcrest/core/
IsNull.java 8 import org.hamcrest.Factory;
26 @Factory
34 @Factory
42 @Factory
50 @Factory
Is.java 5 import org.hamcrest.Factory;
40 @Factory
51 @Factory
62 @Factory
IsAnything.java 7 import org.hamcrest.Factory;
37 @Factory
47 @Factory
55 @Factory
  /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...]
  /external/chromium/net/http/
http_auth_handler_basic.h 20 class Factory : public HttpAuthHandlerFactory {
22 Factory();
23 virtual ~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
  /external/chromium/chrome/browser/net/
url_request_mock_link_doctor_job.h 17 static net::URLRequest::ProtocolFactory Factory;
  /external/chromium_org/ppapi/proxy/
interface_proxy.h 23 // Factory function type for interfaces. Ownership of the returned pointer
25 typedef InterfaceProxy* (*Factory)(Dispatcher* dispatcher);
42 InterfaceProxy::Factory create_proxy;
  /external/junit/src/org/junit/internal/matchers/
StringContains.java 5 import org.hamcrest.Factory;
26 @Factory
  /external/skia/tests/
TestClassDef.h 25 static Test* Factory(void*) { return SkNEW(function##Class); } \
30 static TestRegistry gReg_##function##Class(function##Class::Factory); \
37 static Test* Factory(void*) { return SkNEW(classname); } \
42 static TestRegistry gReg_##classname(classname::Factory); \
49 static Test* Factory(void*) { return SkNEW(classname); } \
56 static TestRegistry gReg_##classname(classname::Factory); \
  /external/chromium_org/chrome/browser/content_settings/
cookie_settings.h 104 class Factory : public RefcountedBrowserContextKeyedServiceFactory {
111 static Factory* GetInstance();
114 friend struct DefaultSingletonTraits<Factory>;
116 Factory();
117 virtual ~Factory();

Completed in 465 milliseconds

1 2 3 4 5 6 7 8 91011>>