Home
last modified time | relevance | path

Searched refs:factoryMethod (Results 1 – 4 of 4) sorted by relevance

/external/dagger2/compiler/src/main/java/dagger/internal/codegen/
DComponentWriter.java88 MethodWriter factoryMethod = in addFactoryMethods() local
90 factoryMethod.addModifiers(PUBLIC, STATIC); in addFactoryMethods()
92 factoryMethod in addFactoryMethods()
DBindingGraphValidator.java193 ExecutableElement factoryMethod, TypeElement subcomponentType) { in validateSubcomponentFactoryMethod() argument
194 BindingGraph subgraph = subject.subgraphs().get(factoryMethod); in validateSubcomponentFactoryMethod()
197 .filter(not(in(subgraphFactoryMethodParameters(factoryMethod)))) in validateSubcomponentFactoryMethod()
212 factoryMethod); in validateSubcomponentFactoryMethod()
217 ExecutableElement factoryMethod) { in subgraphFactoryMethodParameters() argument
221 asExecutable(types.asMemberOf(componentType, factoryMethod)); in subgraphFactoryMethodParameters()
/external/testng/src/main/java/org/testng/internal/
DTestNGClassFinder.java137 ConstructorOrMethod factoryMethod = in TestNGClassFinder() local
139 if (factoryMethod != null && factoryMethod.getEnabled()) { in TestNGClassFinder()
141 factoryMethod, in TestNGClassFinder()
/external/guice/extensions/assistedinject/src/com/google/inject/assistedinject/
DFactoryProvider2.java131 final Method factoryMethod; field in FactoryProvider2.AssistData
141 TypeLiteral<?> implementationType, Method factoryMethod, in AssistData() argument
148 this.factoryMethod = factoryMethod; in AssistData()
162 .add("factory method", factoryMethod) in toString()
174 return factoryMethod; in getFactoryMethod()