Home
last modified time | relevance | path

Searched refs:Factory (Results 1 – 25 of 569) sorted by relevance

12345678910>>...23

/external/deqp/framework/common/
DtcuFactoryRegistry.hpp81 template<class Factory>
92 void registerFactory (Factory* factory) { m_registry.registerFactory(factory); } in registerFactory()
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); } in getDefaultFactory()
101 const Factory* getDefaultFactory (void) const { return getFactoryByIndex(0); } in getDefaultFactory()
107 template<class Factory>
108 inline Factory* FactoryRegistry<Factory>::getFactoryByName (const std::string& name) in getFactoryByName()
[all …]
/external/jmdns/src/javax/jmdns/
DNetworkTopologyDiscovery.java56 public static final class Factory { class
74 …private static final AtomicReference<Factory.ClassDelegate> _databaseClassDelegate = new AtomicRef…
76 private Factory() { in Factory() method in NetworkTopologyDiscovery.Factory
88 public static void setClassDelegate(Factory.ClassDelegate delegate) { in setClassDelegate()
99 public static Factory.ClassDelegate classDelegate() { in classDelegate()
110 Factory.ClassDelegate delegate = _databaseClassDelegate.get(); in newNetworkTopologyDiscovery()
124 synchronized (NetworkTopologyDiscovery.Factory.class) { in getInstance()
126 _instance = NetworkTopologyDiscovery.Factory.newNetworkTopologyDiscovery(); in getInstance()
/external/clang/lib/StaticAnalyzer/Core/
DBlockCounter.cpp54 static inline CountMap::Factory& GetFactory(void *F) { in GetFactory()
55 return *static_cast<CountMap::Factory*>(F); in GetFactory()
65 BlockCounter::Factory::Factory(llvm::BumpPtrAllocator& Alloc) { in Factory() function in BlockCounter::Factory
66 F = new CountMap::Factory(Alloc); in Factory()
69 BlockCounter::Factory::~Factory() { in ~Factory()
70 delete static_cast<CountMap::Factory*>(F); in ~Factory()
74 BlockCounter::Factory::IncrementCount(BlockCounter BC, in IncrementCount()
83 BlockCounter::Factory::GetEmptyCounter() { in GetEmptyCounter()
/external/dagger2/producers/src/main/java/dagger/producers/monitoring/internal/
DMonitors.java46 public static ProductionComponentMonitor.Factory delegatingProductionComponentMonitorFactory( in delegatingProductionComponentMonitorFactory()
47 Collection<? extends ProductionComponentMonitor.Factory> factories) { in delegatingProductionComponentMonitorFactory()
51 return new NonThrowingProductionComponentMonitor.Factory(Iterables.getOnlyElement(factories)); in delegatingProductionComponentMonitorFactory()
53 return new DelegatingProductionComponentMonitor.Factory(factories); in delegatingProductionComponentMonitorFactory()
80 static final class Factory implements ProductionComponentMonitor.Factory { class in Monitors.NonThrowingProductionComponentMonitor
81 private final ProductionComponentMonitor.Factory delegate;
83 Factory(ProductionComponentMonitor.Factory delegate) { in Factory() method in Monitors.NonThrowingProductionComponentMonitor.Factory
185 static final class Factory implements ProductionComponentMonitor.Factory { class in Monitors.DelegatingProductionComponentMonitor
186 private final ImmutableList<? extends ProductionComponentMonitor.Factory> delegates;
188 Factory(Iterable<? extends ProductionComponentMonitor.Factory> delegates) { in Factory() method in Monitors.DelegatingProductionComponentMonitor.Factory
[all …]
/external/v8/src/
Dfactory.cc57 Handle<T> Factory::New(Handle<Map> map, AllocationSpace space) { in New()
66 Handle<T> Factory::New(Handle<Map> map, in New()
76 Handle<HeapObject> Factory::NewFillerObject(int size, in NewFillerObject()
86 Handle<Box> Factory::NewBox(Handle<Object> value) { in NewBox()
93 Handle<PrototypeInfo> Factory::NewPrototypeInfo() { in NewPrototypeInfo()
105 Factory::NewSloppyBlockWithEvalContextExtension( in NewSloppyBlockWithEvalContextExtension()
116 Handle<Oddball> Factory::NewOddball(Handle<Map> map, const char* to_string, in NewOddball()
126 Handle<FixedArray> Factory::NewFixedArray(int size, PretenureFlag pretenure) { in NewFixedArray()
135 Handle<FixedArray> Factory::NewFixedArrayWithHoles(int size, in NewFixedArrayWithHoles()
147 Handle<FixedArray> Factory::NewUninitializedFixedArray(int size) { in NewUninitializedFixedArray()
[all …]
/external/llvm/include/llvm/ADT/
DImmutableMap.h99 class Factory {
100 typename TreeTy::Factory F;
104 Factory(bool canonicalize = true) : Canonicalize(canonicalize) {} in Canonicalize()
106 Factory(BumpPtrAllocator &Alloc, bool canonicalize = true)
121 typename TreeTy::Factory *getTreeFactory() const { in getTreeFactory()
122 return const_cast<typename TreeTy::Factory *>(&F); in getTreeFactory()
126 Factory(const Factory& RHS) = delete;
127 void operator=(const Factory& RHS) = delete;
261 typedef typename TreeTy::Factory FactoryTy;
265 FactoryTy *Factory; variable
[all …]
/external/v8/test/mjsunit/
Ddebug-set-variable-value.js142 function Factory(debug_stop) {
150 new ClosureTestCase(0, 4, 't', 7, 9, true, function Factory(debug_stop) {
159 new ClosureTestCase(0, 6, 't', 10, 13, true, function Factory(debug_stop) {
169 function Factory(debug_stop) {
178 function Factory(debug_stop) {
195 function Factory(debug_stop) {
222 RunPauseTest(0, 'HelloYou', 'u', 'We', 'HelloWe', (function Factory() { class
232 (function Factory() {
243 RunPauseTest(0, 'mouse', 'v1', 'dog', 'dog', (function Factory() {
252 RunPauseTest(0, 'mouse', 'v1', 'dog', 'dog', (function Factory() {
[all …]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
DICUService.java123 private final List<Factory> factories = new ArrayList<Factory>();
222 public static interface Factory { interface in ICUService
247 public void updateVisibleIDs(Map<String, Factory> result); in updateVisibleIDs()
267 public static class SimpleFactory implements Factory {
309 public void updateVisibleIDs(Map<String, Factory> result) { in updateVisibleIDs()
387 public Object getKey(Key key, String[] actualReturn, Factory factory) { in getKey()
459 Factory f = factories.get(index++); in getKey()
585 private Map<String, Factory> getVisibleIDMap() { in getVisibleIDMap()
586 Map<String, Factory> idcache = null; in getVisibleIDMap()
587 SoftReference<Map<String, Factory>> ref = idref; in getVisibleIDMap()
[all …]
/external/icu/android_icu4j/src/main/java/android/icu/impl/
DICUService.java125 private final List<Factory> factories = new ArrayList<Factory>();
224 public static interface Factory { interface in ICUService
249 public void updateVisibleIDs(Map<String, Factory> result); in updateVisibleIDs()
269 public static class SimpleFactory implements Factory {
311 public void updateVisibleIDs(Map<String, Factory> result) { in updateVisibleIDs()
389 public Object getKey(Key key, String[] actualReturn, Factory factory) { in getKey()
461 Factory f = factories.get(index++); in getKey()
587 private Map<String, Factory> getVisibleIDMap() { in getVisibleIDMap()
588 Map<String, Factory> idcache = null; in getVisibleIDMap()
589 SoftReference<Map<String, Factory>> ref = idref; in getVisibleIDMap()
[all …]
/external/emma/core/java12/com/vladium/emma/report/html/doc/
DHTMLDocument.java18 final class HTMLDocument extends IElement.Factory.ElementImpl
32 super.add (m_head = IElement.Factory.create (Tag.HEAD)); in HTMLDocument()
33 super.add (m_body = IElement.Factory.create (Tag.BODY)); in HTMLDocument()
38 final ISimpleElement meta = ISimpleElement.Factory.create (Tag.META); in HTMLDocument()
52 … final IElement titleElement = IElement.Factory.create (Tag.TITLE).setText (title, false); in HTMLDocument()
120 final IElement style = IElement.Factory.create (Tag.STYLE); in addStyle()
140 final ISimpleElement link = ISimpleElement.Factory.create (Tag.LINK); in addLINK()
155 final IElement h = IElement.Factory.create (Hl); in addH()
166 final IElement h = IElement.Factory.create (Hl); in addH()
175 final IElement hr = IElement.Factory.create (Tag.HR); in addHR()
[all …]
/external/dagger2/compiler/src/main/java/dagger/internal/codegen/
DComponentProcessor.java126 Key.Factory keyFactory = new Key.Factory(types, elements); in initSteps()
138 DependencyRequest.Factory dependencyRequestFactory = in initSteps()
139 new DependencyRequest.Factory(elements, keyFactory); in initSteps()
140 ProvisionBinding.Factory provisionBindingFactory = in initSteps()
141 new ProvisionBinding.Factory(elements, types, keyFactory, dependencyRequestFactory); in initSteps()
142 ProductionBinding.Factory productionBindingFactory = in initSteps()
143 new ProductionBinding.Factory(types, keyFactory, dependencyRequestFactory); in initSteps()
145 MembersInjectionBinding.Factory membersInjectionBindingFactory = in initSteps()
146 new MembersInjectionBinding.Factory(elements, types, keyFactory, dependencyRequestFactory); in initSteps()
151 ModuleDescriptor.Factory moduleDescriptorFactory = new ModuleDescriptor.Factory( in initSteps()
[all …]
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
DProgramStateTrait.h61 typedef typename data_type::Factory& context_type;
85 return *((typename data_type::Factory*) p);
89 return new typename data_type::Factory(Alloc);
93 delete (typename data_type::Factory*) Ctx;
112 typedef typename data_type::Factory& context_type;
137 return *((typename data_type::Factory*) p);
141 return new typename data_type::Factory(Alloc);
145 delete (typename data_type::Factory*) Ctx;
156 typedef typename data_type::Factory& context_type;
176 return *((typename data_type::Factory*) p);
[all …]
DBlockCounter.h41 class Factory {
44 Factory(llvm::BumpPtrAllocator& Alloc);
45 ~Factory();
53 friend class Factory; variable
/external/skia/include/core/
DSkFlattenable.h54 Factory getFactory() const override { return CreateProc; }
85 typedef SkFlattenable* (*Factory)(SkReadBuffer&); typedef
93 virtual Factory getFactory() const = 0;
99 static Factory NameToFactory(const char name[]);
100 static const char* FactoryToName(Factory);
103 static void Register(const char name[], Factory, Type);
/external/jmdns/src/javax/jmdns/impl/
DDNSTaskStarter.java36 public static final class Factory { class
38 private static volatile Factory _instance;
58 …private static final AtomicReference<Factory.ClassDelegate> _databaseClassDelegate = new AtomicRef…
60 private Factory() { in Factory() method in DNSTaskStarter.Factory
73 public static void setClassDelegate(Factory.ClassDelegate delegate) { in setClassDelegate()
84 public static Factory.ClassDelegate classDelegate() { in classDelegate()
97 Factory.ClassDelegate delegate = _databaseClassDelegate.get(); in newDNSTaskStarter()
109 public static Factory getInstance() { in getInstance()
111 synchronized (DNSTaskStarter.Factory.class) { in getInstance()
113 _instance = new Factory(); in getInstance()
/external/hamcrest/library/src/org/hamcrest/collection/
DIsMapContaining.java4 import org.hamcrest.Factory;
41 @Factory
46 @Factory
51 @Factory
56 @Factory
61 @Factory
66 @Factory
/external/dagger2/producers/src/test/java/dagger/producers/monitoring/internal/
DMonitorsTest.java39 @Mock private ProductionComponentMonitor.Factory mockProductionComponentMonitorFactory;
42 @Mock private ProductionComponentMonitor.Factory mockProductionComponentMonitorFactoryA;
43 @Mock private ProductionComponentMonitor.Factory mockProductionComponentMonitorFactoryB;
44 @Mock private ProductionComponentMonitor.Factory mockProductionComponentMonitorFactoryC;
59 ProductionComponentMonitor.Factory factory = in zeroMonitorsReturnsNoOp()
61 ImmutableList.<ProductionComponentMonitor.Factory>of()); in zeroMonitorsReturnsNoOp()
68 ProductionComponentMonitor.Factory factory = in singleMonitor_nullProductionComponentMonitor()
79 ProductionComponentMonitor.Factory factory = in singleMonitor_throwingProductionComponentMonitorFactory()
91 ProductionComponentMonitor.Factory factory = in singleMonitor_nullProducerMonitor()
106 ProductionComponentMonitor.Factory factory = in singleMonitor_throwingProductionComponentMonitor()
[all …]
/external/libgdx/gdx/src/com/badlogic/gdx/graphics/glutils/
DFacedCubemapData.java34 …this(TextureData.Factory.loadFromFile(positiveX, false), TextureData.Factory.loadFromFile(negative… in FacedCubemapData()
35 false), TextureData.Factory.loadFromFile(positiveY, false), TextureData.Factory.loadFromFile( in FacedCubemapData()
36 negativeY, false), TextureData.Factory.loadFromFile(positiveZ, false), TextureData.Factory in FacedCubemapData()
43 this(TextureData.Factory.loadFromFile(positiveX, useMipMaps), TextureData.Factory.loadFromFile( in FacedCubemapData()
44 …negativeX, useMipMaps), TextureData.Factory.loadFromFile(positiveY, useMipMaps), TextureData.Facto… in FacedCubemapData()
45 .loadFromFile(negativeY, useMipMaps), TextureData.Factory.loadFromFile(positiveZ, useMipMaps), in FacedCubemapData()
46 TextureData.Factory.loadFromFile(negativeZ, useMipMaps)); in FacedCubemapData()
97 data[side.index] = TextureData.Factory.loadFromFile(file, false); in load()
/external/hamcrest/src/org/hamcrest/core/
DIsNull.java8 import org.hamcrest.Factory;
26 @Factory
34 @Factory
42 @Factory
50 @Factory
/external/icu/android_icu4j/src/main/java/android/icu/text/
DEscapeTransliterator.java83 Transliterator.registerFactory("Any-Hex/Unicode", new Transliterator.Factory() { in register()
91 Transliterator.registerFactory("Any-Hex/Java", new Transliterator.Factory() { in register()
99 Transliterator.registerFactory("Any-Hex/C", new Transliterator.Factory() { in register()
108 Transliterator.registerFactory("Any-Hex/XML", new Transliterator.Factory() { in register()
116 Transliterator.registerFactory("Any-Hex/XML10", new Transliterator.Factory() { in register()
124 Transliterator.registerFactory("Any-Hex/Perl", new Transliterator.Factory() { in register()
132 Transliterator.registerFactory("Any-Hex/Plain", new Transliterator.Factory() { in register()
140 Transliterator.registerFactory("Any-Hex", new Transliterator.Factory() { in register()
/external/icu/icu4j/main/classes/translit/src/com/ibm/icu/text/
DEscapeTransliterator.java82 Transliterator.registerFactory("Any-Hex/Unicode", new Transliterator.Factory() { in register()
90 Transliterator.registerFactory("Any-Hex/Java", new Transliterator.Factory() { in register()
98 Transliterator.registerFactory("Any-Hex/C", new Transliterator.Factory() { in register()
107 Transliterator.registerFactory("Any-Hex/XML", new Transliterator.Factory() { in register()
115 Transliterator.registerFactory("Any-Hex/XML10", new Transliterator.Factory() { in register()
123 Transliterator.registerFactory("Any-Hex/Perl", new Transliterator.Factory() { in register()
131 Transliterator.registerFactory("Any-Hex/Plain", new Transliterator.Factory() { in register()
139 Transliterator.registerFactory("Any-Hex", new Transliterator.Factory() { in register()
/external/hamcrest/library/src/org/hamcrest/number/
DOrderingComparisons.java8 import org.hamcrest.Factory;
13 @Factory
18 @Factory
25 @Factory
32 @Factory
/external/mockito/src/org/mockito/internal/creation/
DCglibMockMaker.java8 import org.mockito.cglib.proxy.Factory;
37 ((Factory) mock).setCallback(0, new MethodInterceptorFilter(cast(newHandler), settings)); in resetMock()
41 if (!(mock instanceof Factory)) { in getHandler()
44 Factory factory = (Factory) mock; in getHandler()
/external/guice/extensions/assistedinject/test/com/google/inject/assistedinject/
DFactoryProvider2Test.java432 public interface Factory { interface in FactoryProvider2Test.WildcardCollection
444 bind(WildcardCollection.Factory.class).toProvider( in testWildcardGenerics()
445 FactoryProvider.newFactory(WildcardCollection.Factory.class, WildcardCollection.class)); in testWildcardGenerics()
448 WildcardCollection.Factory factory = injector.getInstance(WildcardCollection.Factory.class); in testWildcardGenerics()
1070 interface Factory { interface
1091 bind(Equals.Factory.class).toProvider( in testFactoryMethodCalledEquals()
1092 FactoryProvider.newFactory(Equals.Factory.class, Equals.Impl.class)); in testFactoryMethodCalledEquals()
1095 Equals.Factory equalsFactory = injector.getInstance(Equals.Factory.class); in testFactoryMethodCalledEquals()
1111 install(new FactoryModuleBuilder().build(Delegater.Factory.class)); in testReturnValueMatchesParamValue()
1115 Delegater user = injector.getInstance(Delegater.Factory.class).create(delegate); in testReturnValueMatchesParamValue()
[all …]
/external/okhttp/okio/okio/src/test/java/okio/
DReadUtf8LineTest.java33 private interface Factory { interface in ReadUtf8LineTest
43 new Object[] { new Factory() { in parameters()
52 new Object[] { new Factory() { in parameters()
61 new Object[] { new Factory() { in parameters()
79 private final Factory factory;
80 public ReadUtf8LineTest(Factory factory) {

12345678910>>...23