HomeSort by relevance Sort by last modified time
    Searched refs:Factory (Results 51 - 75 of 985) sorted by null

1 23 4 5 6 7 8 91011>>

  /packages/apps/Camera2/src/com/android/camera/one/v2/commands/
ZslPreviewCommandFactory.java 27 private final RequestBuilder.Factory mPreviewWarmupRequestBuilder;
28 private final RequestBuilder.Factory mZslRequestBuilder;
33 RequestBuilder.Factory previewWarmupRequestBuilder,
34 RequestBuilder.Factory zslRequestBuilder) {
41 public CameraCommand get(RequestBuilder.Factory previewRequestBuilder, int templateType) {
  /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/skia/include/core/
SkTRegistry.h 21 typedef T Factory;
43 const Factory& factory() const { return fFact; } function in class:SkTRegistry
46 Factory fFact;
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.
54 Factory getFactory() const override { return CreateProc; }
85 typedef SkFlattenable* (*Factory)(SkReadBuffer&);
89 /** Implement this to return a factory function pointer that can be called
93 virtual Factory getFactory() const = 0;
99 static Factory NameToFactory(const char name[]);
100 static const char* FactoryToName(Factory);
    [all...]
  /external/dagger2/core/src/main/java/dagger/internal/
Factory.java 24 * scoping semantics while providing an instance, a factory implementation is guaranteed to exercise
36 public interface Factory<T> extends Provider<T> {
ScopedProvider.java 22 * A {@link Provider} implementation that memoizes the result of a {@link Factory} instance.
30 private final Factory<T> factory; field in class:ScopedProvider
33 private ScopedProvider(Factory<T> factory) {
34 assert factory != null;
35 this.factory = factory;
38 @SuppressWarnings("unchecked") // cast only happens when result comes from the factory
47 instance = result = factory.get()
    [all...]
  /external/dagger2/producers/src/main/java/dagger/producers/monitoring/
ProductionComponentMonitor.java 24 * {@code ProductionComponentMonitor.Factory}. The factory will be asked to create one monitor for
31 * {@literal @Provides(type = SET)} ProductionComponentMonitor.Factory provideMonitorFactory(
32 * MyProductionComponentMonitor.Factory monitorFactory) {
52 public interface Factory {
  /external/hamcrest/src/org/hamcrest/core/
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/icu/android_icu4j/src/main/tests/android/icu/dev/util/
UnicodeTransform.java 21 public interface Factory {
25 private static Factory factory = new IcuUnicodeNormalizerFactory(); field in class:UnicodeTransform
27 public static synchronized Factory getFactory() {
28 return factory;
31 public static synchronized void setFactory(Factory factory) {
32 UnicodeTransform.factory = factory;
36 return factory.getInstance(type)
    [all...]
  /external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/util/
UnicodeTransform.java 20 public interface Factory {
24 private static Factory factory = new IcuUnicodeNormalizerFactory(); field in class:UnicodeTransform
26 public static synchronized Factory getFactory() {
27 return factory;
30 public static synchronized void setFactory(Factory factory) {
31 UnicodeTransform.factory = factory;
35 return factory.getInstance(type)
    [all...]
  /external/llvm/include/llvm/CodeGen/
AtomicExpandUtils.h 56 expandAtomicRMWToCmpXchg(AtomicRMWInst *AI, CreateCmpXchgInstFun Factory);
  /external/skia/src/core/
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/skia/src/ports/
SkFontMgr_custom_embedded_factory.cpp 15 SkFontMgr* SkFontMgr::Factory() {
  /frameworks/base/core/java/android/text/
Editable.java 124 * Factory used by TextView to create new Editables. You can subclass
127 public static class Factory {
128 private static Editable.Factory sInstance = new Editable.Factory();
131 * Returns the standard Editable Factory.
133 public static Editable.Factory getInstance() {
  /external/junit/src/org/junit/internal/matchers/
StringContains.java 5 import org.hamcrest.Factory;
26 @Factory
  /external/testng/src/test/java/test/factory/
FactoryDataProviderSampleTest.java 1 package test.factory;
4 import org.testng.annotations.Factory;
9 @Factory(dataProvider = "dp")
FactoryInSeparateClass.java 1 package test.factory;
4 import org.testng.annotations.Factory;
25 @Factory
38 "Test instances made by factory did not invoke their test methods correctly. expected 6 but got " + m_checkSum;
FactoryTest.java 1 package test.factory;
7 import org.testng.annotations.Factory;
13 @Parameters({ "factory-param" })
14 @Factory
  /external/testng/src/test/java/test/morten/
SampleTest.java 3 import org.testng.annotations.Factory;
12 @Factory public Object[] createInstances() {
  /packages/apps/Messaging/src/com/android/messaging/util/
BugleGservices.java 19 import com.android.messaging.Factory;
31 return Factory.get().getBugleGservices();
  /external/hamcrest/library/src/org/hamcrest/number/
OrderingComparisons.java 8 import org.hamcrest.Factory;
13 @Factory
18 @Factory
25 @Factory
32 @Factory
  /external/mockito/src/org/mockito/internal/creation/
CglibMockMaker.java 8 import org.mockito.cglib.proxy.Factory;
37 ((Factory) mock).setCallback(0, new MethodInterceptorFilter(cast(newHandler), settings));
41 if (!(mock instanceof Factory)) {
44 Factory factory = (Factory) mock; local
45 Callback callback = factory.getCallback(0);
  /external/dagger2/producers/src/main/java/dagger/producers/monitoring/internal/
Monitors.java 38 * Returns a monitor factory that delegates to the given factories, and ensures that any method
46 public static ProductionComponentMonitor.Factory delegatingProductionComponentMonitorFactory(
47 Collection<? extends ProductionComponentMonitor.Factory> factories) {
51 return new NonThrowingProductionComponentMonitor.Factory(Iterables.getOnlyElement(factories));
53 return new DelegatingProductionComponentMonitor.Factory(factories);
80 static final class Factory implements ProductionComponentMonitor.Factory {
81 private final ProductionComponentMonitor.Factory delegate;
83 Factory(ProductionComponentMonitor.Factory delegate)
    [all...]
  /external/hamcrest/library/src/org/hamcrest/collection/
IsArrayContaining.java 5 import org.hamcrest.Factory;
32 @Factory
37 @Factory

Completed in 510 milliseconds

1 23 4 5 6 7 8 91011>>