Home
last modified time | relevance | path

Searched defs:factory (Results 1 – 25 of 493) sorted by relevance

12345678910>>...20

/external/r8/src/main/java/com/android/tools/r8/graph/
DDexAnnotation.java63 DexItemFactory factory) { in createEnclosingClassAnnotation()
69 DexItemFactory factory) { in createEnclosingMethodAnnotation()
75 DexItemFactory factory) { in isEnclosingClassAnnotation()
80 DexItemFactory factory) { in isEnclosingMethodAnnotation()
85 DexItemFactory factory) { in isInnerClassesAnnotation()
91 DexItemFactory factory) { in createInnerClassAnnotation()
107 DexItemFactory factory) { in createMemberClassesAnnotation()
117 DexItemFactory factory) { in createSourceDebugExtensionAnnotation()
126 DexValue[] accessFlags, DexItemFactory factory) { in createMethodParametersAnnotation()
141 List<DexAnnotationElement> defaults, DexItemFactory factory) { in createAnnotationDefaultAnnotation()
[all …]
/external/dagger2/producers/src/test/java/dagger/producers/monitoring/internal/
DMonitorsTest.java59 ProductionComponentMonitor.Factory factory = in zeroMonitorsReturnsNoOp() local
68 ProductionComponentMonitor.Factory factory = in singleMonitor_nullProductionComponentMonitor() local
79 ProductionComponentMonitor.Factory factory = in singleMonitor_throwingProductionComponentMonitorFactory() local
91 ProductionComponentMonitor.Factory factory = in singleMonitor_nullProducerMonitor() local
106 ProductionComponentMonitor.Factory factory = in singleMonitor_throwingProductionComponentMonitor() local
117 ProductionComponentMonitor.Factory factory = in singleMonitor_normalProducerMonitorSuccess() local
138 ProductionComponentMonitor.Factory factory = in singleMonitor_normalProducerMonitorFailure() local
162 ProductionComponentMonitor.Factory factory = in singleMonitor_throwingProducerMonitorSuccess() local
186 ProductionComponentMonitor.Factory factory = in singleMonitor_throwingProducerMonitorFailure() local
209 ProductionComponentMonitor.Factory factory = in multipleMonitors_nullProductionComponentMonitors() local
[all …]
/external/dagger2/core/src/test/java/dagger/internal/
DSetFactoryTest.java41 Factory<Set<Integer>> factory = SetFactory.create(new Provider<Set<Integer>>() { in providerReturnsNullSet() local
53 Factory<Set<Integer>> factory = SetFactory.create(new Provider<Set<Integer>>() { in providerReturnsNullSet_single() local
65 Factory<Set<Integer>> factory = SetFactory.create(new Provider<Set<Integer>>() { in providerReturnsSetWithNullElement() local
81 Factory<Set<Integer>> factory = SetFactory.create(new Provider<Set<Integer>>() { in providerReturnsSetWithNullElement_single() local
97 Factory<Set<Integer>> factory = SetFactory.create( in invokesProvidersEverytTime() local
108 Factory<Set<Integer>> factory = SetFactory.create( in iterationOrder() local
/external/conscrypt/testing/src/main/java/org/conscrypt/
DChannelType.java41 SSLSocket newClientSocket(SSLSocketFactory factory, InetAddress address, int port) in newClientSocket()
47 ServerSocket newServerSocket(SSLServerSocketFactory factory) throws IOException { in newServerSocket()
58 SSLSocket newClientSocket(SSLSocketFactory factory, InetAddress address, int port) in newClientSocket()
73 SSLSocket accept(ServerSocket serverSocket, SSLSocketFactory factory) throws IOException { in accept()
84 SSLSocket newClientSocket(SSLSocketFactory factory, InetAddress address, int port) in newClientSocket()
98 SSLSocket accept(ServerSocket serverSocket, SSLSocketFactory factory) throws IOException { in accept()
114 abstract SSLSocket newClientSocket(SSLSocketFactory factory, InetAddress address, int port) in newClientSocket()
116 abstract ServerSocket newServerSocket(SSLServerSocketFactory factory) throws IOException; in newServerSocket()
117 abstract SSLSocket accept(ServerSocket socket, SSLSocketFactory factory) throws IOException; in accept()
/external/webrtc/webrtc/base/
Dreferencecountedsingletonfactory_unittest.cc42 ReferenceCountedSingletonFactory<MyExistenceWatcher> *factory) { in DoCreateAndGoOutOfScope()
49 TestReferenceCountedSingletonFactory factory; in TEST() local
56 TestReferenceCountedSingletonFactory factory; in TEST() local
65 TestReferenceCountedSingletonFactory factory; in TEST() local
72 TestReferenceCountedSingletonFactory factory; in TEST() local
83 TestReferenceCountedSingletonFactory factory; in TEST() local
93 TestReferenceCountedSingletonFactory factory; in TEST() local
103 TestReferenceCountedSingletonFactory factory; in TEST() local
119 TestReferenceCountedSingletonFactory factory; in TEST() local
/external/dagger2/core/src/main/java/dagger/internal/
DScopedProvider.java30 private final Factory<T> factory; field in ScopedProvider
33 private ScopedProvider(Factory<T> factory) { in ScopedProvider()
55 public static <T> Provider<T> create(Factory<T> factory) { in create()
/external/apache-commons-math/src/main/java/org/apache/commons/math/dfp/
DDfpDec.java32 protected DfpDec(final DfpField factory) { in DfpDec()
40 protected DfpDec(final DfpField factory, byte x) { in DfpDec()
48 protected DfpDec(final DfpField factory, int x) { in DfpDec()
56 protected DfpDec(final DfpField factory, long x) { in DfpDec()
64 protected DfpDec(final DfpField factory, double x) { in DfpDec()
81 protected DfpDec(final DfpField factory, final String s) { in DfpDec()
92 protected DfpDec(final DfpField factory, final byte sign, final byte nans) { in DfpDec()
/external/libchrome/base/message_loop/
Dmessage_loop_test.cc94 void RunTest_PostTask(MessagePumpFactory factory) { in RunTest_PostTask()
124 void RunTest_PostDelayedTask_Basic(MessagePumpFactory factory) { in RunTest_PostDelayedTask_Basic()
146 void RunTest_PostDelayedTask_InDelayOrder(MessagePumpFactory factory) { in RunTest_PostDelayedTask_InDelayOrder()
169 void RunTest_PostDelayedTask_InPostOrder(MessagePumpFactory factory) { in RunTest_PostDelayedTask_InPostOrder()
197 void RunTest_PostDelayedTask_InPostOrder_2(MessagePumpFactory factory) { in RunTest_PostDelayedTask_InPostOrder_2()
223 void RunTest_PostDelayedTask_InPostOrder_3(MessagePumpFactory factory) { in RunTest_PostDelayedTask_InPostOrder_3()
251 void RunTest_PostDelayedTask_SharedTimer(MessagePumpFactory factory) { in RunTest_PostDelayedTask_SharedTimer()
313 void RunTest_EnsureDeletion(MessagePumpFactory factory) { in RunTest_EnsureDeletion()
332 void RunTest_EnsureDeletion_Chain(MessagePumpFactory factory) { in RunTest_EnsureDeletion_Chain()
363 void RunTest_Nesting(MessagePumpFactory factory) { in RunTest_Nesting()
[all …]
/external/apache-http/src/org/apache/http/auth/
DAuthSchemeRegistry.java82 final AuthSchemeFactory factory) { in register()
89 registeredSchemes.put(name.toLowerCase(Locale.ENGLISH), factory); in register() local
122 AuthSchemeFactory factory = registeredSchemes.get(name.toLowerCase(Locale.ENGLISH)); in getAuthScheme() local
/external/apache-http/src/org/apache/http/cookie/
DCookieSpecRegistry.java77 public synchronized void register(final String name, final CookieSpecFactory factory) { in register()
84 registeredSpecs.put(name.toLowerCase(Locale.ENGLISH), factory); in register() local
116 CookieSpecFactory factory = registeredSpecs.get(name.toLowerCase(Locale.ENGLISH)); in getCookieSpec() local
/external/guava/guava-tests/test/com/google/common/util/concurrent/
DThreadFactoryBuilderTest.java98 ThreadFactory factory = builder.setNameFormat(format).build(); in testNameFormatWithPercentS_custom() local
107 ThreadFactory factory = builder.setNameFormat(format).build(); in testNameFormatWithPercentD_custom() local
115 ThreadFactory factory = builder.setDaemon(false).build(); in testDaemon_false() local
121 ThreadFactory factory = builder.setDaemon(true).build(); in testDaemon_true() local
128 ThreadFactory factory = builder.setPriority(i).build(); in testPriority_custom() local
/external/smali/smalidea/src/main/java/org/jf/smalidea/psi/
DSmaliCompositeElementType.java42 @NotNull private final SmaliCompositeElementFactory factory; field in SmaliCompositeElementType
45 @NotNull SmaliCompositeElementFactory factory) { in SmaliCompositeElementType()
/external/protobuf/csharp/src/Google.Protobuf/
DMessageParser.cs44 private Func<IMessage> factory; field in Google.Protobuf.MessageParser
46 internal MessageParser(Func<IMessage> factory) in MessageParser()
163 private readonly Func<T> factory; field in Google.Protobuf.MessageParser
173 public MessageParser(Func<T> factory) : base(() => factory()) in MessageParser()
/external/antlr/antlr-3.4/runtime/C/src/
Dantlr3commontree.c67 pANTLR3_ARBORETUM factory; in antlr3ArboretumNew() local
124 newPool(pANTLR3_ARBORETUM factory) in newPool()
154 newPoolTree (pANTLR3_ARBORETUM factory) in newPoolTree()
213 newFromTree(pANTLR3_ARBORETUM factory, pANTLR3_COMMON_TREE tree) in newFromTree()
233 newFromToken(pANTLR3_ARBORETUM factory, pANTLR3_COMMON_TOKEN token) in newFromToken()
252 factoryClose (pANTLR3_ARBORETUM factory) in factoryClose()
Dantlr3string.c100 pANTLR3_STRING_FACTORY factory; in antlr3StringFactoryNew() local
186 newRaw8 (pANTLR3_STRING_FACTORY factory) in newRaw8()
215 newRawUTF16 (pANTLR3_STRING_FACTORY factory) in newRawUTF16()
421 newSize8 (pANTLR3_STRING_FACTORY factory, ANTLR3_UINT32 size) in newSize8()
449 newSizeUTF16 (pANTLR3_STRING_FACTORY factory, ANTLR3_UINT32 size) in newSizeUTF16()
476 newPtr8 (pANTLR3_STRING_FACTORY factory, pANTLR3_UINT8 ptr, ANTLR3_UINT32 size) in newPtr8()
509 newPtrUTF16_8 (pANTLR3_STRING_FACTORY factory, pANTLR3_UINT8 ptr, ANTLR3_UINT32 size) in newPtrUTF16_8()
557 newPtrUTF16_UTF16 (pANTLR3_STRING_FACTORY factory, pANTLR3_UINT8 ptr, ANTLR3_UINT32 size) in newPtrUTF16_UTF16()
592 newStr8 (pANTLR3_STRING_FACTORY factory, pANTLR3_UINT8 ptr) in newStr8()
603 newStrUTF16_8 (pANTLR3_STRING_FACTORY factory, pANTLR3_UINT8 ptr) in newStrUTF16_8()
[all …]
Dantlr3commontoken.c94 pANTLR3_TOKEN_FACTORY factory; in antlr3TokenFactoryNew() local
137 setInputStream (pANTLR3_TOKEN_FACTORY factory, pANTLR3_INPUT_STREAM input) in setInputStream()
152 newPool(pANTLR3_TOKEN_FACTORY factory) in newPool()
191 newPoolToken(pANTLR3_TOKEN_FACTORY factory) in newPoolToken()
232 factoryReset (pANTLR3_TOKEN_FACTORY factory) in factoryReset()
242 factoryClose (pANTLR3_TOKEN_FACTORY factory) in factoryClose()
/external/sfntly/cpp/src/test/
Dtest_font_utils.cc27 void BuilderForFontFile(const char* font_path, FontFactory* factory, in BuilderForFontFile()
36 void SerializeFont(const char* font_path, FontFactory* factory, Font* font) { in SerializeFont()
45 void LoadFont(const char* font_path, FontFactory* factory, FontArray* fonts) { in LoadFont()
57 FontFactoryPtr factory; in LoadFontUsingByteVector() local
Dname_editing_test.cc38 void LoadTestFile(FontFactory* factory, FontBuilderArray* font_builders) { in LoadTestFile()
48 FontFactoryPtr factory; in TestChangeOneName() local
92 FontFactoryPtr factory; in TestModifyNameTableAndRevert() local
143 FontFactoryPtr factory; in TestRemoveOneName() local
/external/guava/guava-tests/test/com/google/common/io/
DByteSinkTester.java46 static TestSuite tests(String name, ByteSinkFactory factory) { in tests()
56 private static TestSuite suiteForString(String name, ByteSinkFactory factory, in suiteForString()
66 private static TestSuite suiteForBytes(String name, ByteSinkFactory factory, in suiteForBytes()
77 ByteSinkTester(ByteSinkFactory factory, byte[] data, String suiteName, in ByteSinkTester()
DByteSourceTester.java52 static TestSuite tests(String name, ByteSourceFactory factory, boolean testAsCharSource) { in tests()
65 private static TestSuite suiteForString(ByteSourceFactory factory, String string, in suiteForString()
74 private static TestSuite suiteForBytes(ByteSourceFactory factory, byte[] bytes, in suiteForBytes()
98 public ByteSourceTester(ByteSourceFactory factory, byte[] bytes, in ByteSourceTester()
/external/slf4j/osgi-over-slf4j/src/main/java/org/slf4j/osgi/logservice/impl/
DActivator.java62 ServiceFactory factory = new LogServiceFactory(); in start() local
63 bundleContext.registerService(LogService.class.getName(), factory, props); in start() local
/external/guice/extensions/assistedinject/test/com/google/inject/assistedinject/
DFactoryModuleBuilderTest.java104 MustangFactory factory = injector.getInstance(MustangFactory.class); in testImplicitForwardingAssistedBindingCreatesNewObjects() local
167 ColoredCarFactory factory = injector.getInstance(ColoredCarFactory.class); in testExplicitForwardingAssistedBindingCreatesNewObjects() local
188 AnnotatedVersatileCarFactory factory = injector.getInstance(AnnotatedVersatileCarFactory.class); in testAnnotatedAndParentBoundReturnValue() local
204 ColoredCarFactory factory = injector.getInstance(ColoredCarFactory.class); in testParentBoundReturnValue() local
219 AnnotatedVersatileCarFactory factory = injector.getInstance(AnnotatedVersatileCarFactory.class); in testConfigureAnnotatedReturnValue() local
232 MustangFactory factory = injector.getInstance(MustangFactory.class); in testNoBindingAssistedInject() local
248 ColoredCarFactory factory = injector.getInstance(ColoredCarFactory.class); in testBindingAssistedInject() local
267 ColoredCarFactory factory = injector.getInstance(ColoredCarFactory.class); in testDuplicateBindings() local
304 VersatileCarFactory factory = injector.getInstance(VersatileCarFactory.class); in testMultipleReturnTypes() local
321 …Foo.Factory<String> factory = injector.getInstance(Key.get(new TypeLiteral<Foo.Factory<String>>() … in testParameterizedClassesWithNoImplements() local
/external/r8/src/test/java/com/android/tools/r8/dex/
DDexItemFactoryTest.java20 DexItemFactory factory = new DexItemFactory(); in commonItems() local
53 DexItemFactory factory = new DexItemFactory(); in getPrimitiveTypeName() local
/external/sfntly/cpp/src/sample/subtly/
Dutils.cc45 void LoadFonts(const char* font_path, FontFactory* factory, FontArray* fonts) { in LoadFonts()
53 FontFactory* factory, in LoadFontBuilders()
69 bool SerializeFont(const char* font_path, FontFactory* factory, Font* font) { in SerializeFont()
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
DNFA.java45 protected NFAFactory factory = null; field in NFA
69 public void setFactory(NFAFactory factory) { in setFactory()

12345678910>>...20