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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/skia/src/ports/
SkFontHost_none.cpp 12 SkFontMgr* SkFontMgr::Factory() {
SkFontMgr_default_dw.cpp 4 SkFontMgr* SkFontMgr::Factory() {
SkFontMgr_default_gdi.cpp 4 SkFontMgr* SkFontMgr::Factory() {
  /external/deqp/framework/common/
tcuFactoryRegistry.hpp 52 void registerFactory (AbstractFactory* factory);
81 template<class Factory>
92 void registerFactory (Factory* factory) { m_registry.registerFactory(factory); }
94 Factory* getFactoryByName (const std::string& name);
95 const Factory* getFactoryByName (const std::string& name) const;
97 Factory* getFactoryByIndex (size_t index);
98 const Factory* getFactoryByIndex (size_t index) const;
100 Factory* getDefaultFactory (void) { return getFactoryByIndex(0);
    [all...]
  /external/chromium_org/media/midi/
midi_manager_android.cc 13 scoped_ptr<UsbMidiDevice::Factory>(new UsbMidiDeviceFactoryAndroid));
  /external/chromium_org/third_party/skia/src/core/
SkImageGeneratorPriv.h 30 * @param factory If not NULL, this object will be used as a
37 SkDiscardableMemory::Factory* factory);
SkDiscardableMemory.h 21 * Factory method that creates, initializes and locks an SkDiscardableMemory
27 * Factory class that creates, initializes and locks an SkDiscardableMemory
30 class Factory : public SkRefCnt {
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
BlockCounter.h 41 class Factory {
44 Factory(llvm::BumpPtrAllocator& Alloc);
45 ~Factory();
53 friend class Factory;
  /external/clang/unittests/AST/
DeclTest.cpp 23 std::unique_ptr<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/chromium_org/apps/
browser_context_keyed_service_factories.cc 16 extensions::AppWindowGeometryCache::Factory::GetInstance();
  /external/chromium_org/third_party/webrtc/modules/video_coding/codecs/vp8/
temporal_layers.h 27 // Factory for TemporalLayer strategy. Default behaviour is a fixed pattern
29 struct Factory {
30 Factory() {}
31 virtual ~Factory() {}
56 // Factory for a temporal layers strategy that adaptively changes the number of
59 struct RealTimeTemporalLayersFactory : TemporalLayers::Factory {
  /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/hamcrest/library/src/org/hamcrest/text/
StringContains.java 5 import org.hamcrest.Factory;
24 @Factory
StringEndsWith.java 5 import org.hamcrest.Factory;
24 @Factory
StringStartsWith.java 5 import org.hamcrest.Factory;
24 @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/chromium_org/third_party/skia/include/core/
SkFlattenable.h 21 * 2. call flatten(buffer) to write out enough data for the factory to read
23 * Unflattening is easy for the caller: new_instance = factory(buffer)
32 * a thin factory DeepCreateProc. It checks the version of the buffer, and if it is pre-deep,
34 * If the buffer is newer, then it directly calls the "real" factory: CreateProc.
46 virtual Factory getFactory() const SK_OVERRIDE { return NULL; }
64 virtual Factory getFactory() const SK_OVERRIDE {return DeepCreateProc;}
75 virtual Factory getFactory() const SK_OVERRIDE { return CreateProc; }
80 virtual Factory getFactory() const SK_OVERRIDE { return ReturnNullCreateProc; }
113 typedef SkFlattenable* (*Factory)(SkReadBuffer&);
117 /** Implement this to return a factory function pointer that can be calle
    [all...]
SkTRegistry.h 21 typedef T Factory;
43 const Factory& factory() const { return fFact; } function in class:SkTRegistry
46 Factory fFact;
  /external/clang/lib/StaticAnalyzer/Core/
BlockCounter.cpp 54 static inline CountMap::Factory& GetFactory(void *F) {
55 return *static_cast<CountMap::Factory*>(F);
65 BlockCounter::Factory::Factory(llvm::BumpPtrAllocator& Alloc) {
66 F = new CountMap::Factory(Alloc);
69 BlockCounter::Factory::~Factory() {
70 delete static_cast<CountMap::Factory*>(F);
74 BlockCounter::Factory::IncrementCount(BlockCounter BC,
83 BlockCounter::Factory::GetEmptyCounter()
    [all...]
  /external/chromium_org/net/http/
http_auth_handler_basic.h 19 class NET_EXPORT_PRIVATE Factory : public HttpAuthHandlerFactory {
21 Factory();
22 virtual ~Factory();
  /external/chromium_org/skia/ext/
fontmgr_default_win.cc 20 SK_API SkFontMgr* SkFontMgr::Factory() {

Completed in 2430 milliseconds

1 2 3 4 5 6 7 8 91011>>