Searched defs:getConstructor (Results 1 - 25 of 63) sorted by relevance

123

/external/guice/core/src/com/google/inject/internal/
H A DConstructionProxy.java49 Constructor<T> getConstructor(); method in interface:ConstructionProxy
H A DProxyFactory.java259 this.fastConstructor = fastClass.getConstructor(constructor.getParameterTypes());
276 public Constructor<T> getConstructor() { method in class:ProxyFactory.ProxyConstructor
H A DConstructorBindingImpl.java167 builder.add(getConstructor())
179 public InjectionPoint getConstructor() { method in class:ConstructorBindingImpl
198 .add(getConstructor())
215 InjectionPoint constructor = getConstructor();
217 (Constructor) getConstructor().getMember(), (TypeLiteral) constructor.getDeclaringType()));
/external/guice/core/src/com/google/inject/spi/
H A DConstructorBinding.java38 InjectionPoint getConstructor(); method in interface:ConstructorBinding
/external/javassist/src/main/javassist/expr/
H A DConstructorCall.java49 * @see #getConstructor()
52 throw new NotFoundException("this is a constructor call. Call getConstructor().");
58 public CtConstructor getConstructor() throws NotFoundException { method in class:ConstructorCall
59 return getCtClass().getConstructor(getSignature());
H A DNewExpr.java112 public CtConstructor getConstructor() throws NotFoundException { method in class:NewExpr
116 return getCtClass().getConstructor(desc);
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue56/
H A DPerlTest.java113 protected Construct getConstructor(Node node) { method in class:PerlTest.CustomBeanConstructor
118 return super.getConstructor(node);
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue94/
H A DChangeRuntimeClassTest.java79 private Construct getConstructor(Node node) { method in class:ChangeRuntimeClassTest.MyConstructor.ConstructProxy
92 return getConstructor(node).construct(node);
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
H A DTypeExtensions.cs55 public static ConstructorInfo getConstructor( this Type type, Type[] argumentTypes ) method in class:Antlr.Runtime.JavaExtensions.TypeExtensions
/external/javassist/src/main/javassist/compiler/
H A DAccessorMaker.java39 public String getConstructor(CtClass c, String desc, MethodInfo orig) method in class:AccessorMaker
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/resolver/
H A DImplicitResolverTest.java57 protected Construct getConstructor(Node node) { method in class:ImplicitResolverTest.ConfigurationConstructor
61 return super.getConstructor(node);
/external/testng/src/main/java/org/testng/internal/annotations/
H A DBaseAnnotation.java11 public Constructor getConstructor() { method in class:BaseAnnotation
/external/junit/src/org/junit/internal/runners/
H A DTestClass.java90 public Constructor<?> getConstructor() throws SecurityException, NoSuchMethodException { method in class:TestClass
91 return fClass.getConstructor();
/external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/bullet/
H A DBaseWorld.java46 public Constructor<T> getConstructor (final String name) { method in class:BaseWorld
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/extensions/compactnotation/
H A DCompactConstructor.java135 protected Construct getConstructor(Node node) { method in class:CompactConstructor
155 return super.getConstructor(node);
179 * compact object's representation (@see getConstructor(Node) above)
/external/testng/src/main/java/org/testng/internal/
H A DConstructorOrMethod.java26 return getMethod() != null ? getMethod().getDeclaringClass() : getConstructor().getDeclaringClass();
30 return getMethod() != null ? getMethod().getName() : getConstructor().getName();
34 return getMethod() != null ? getMethod().getParameterTypes() : getConstructor().getParameterTypes();
41 public Constructor getConstructor() { method in class:ConstructorOrMethod
49 result = prime * result + ((getConstructor() == null) ? 0 : getConstructor().hashCode());
63 if (getConstructor() == null) {
64 if (other.getConstructor() != null)
66 } else if (!getConstructor().equals(other.getConstructor()))
[all...]
/external/dexmaker/src/main/java/com/google/dexmaker/
H A DTypeId.java124 public MethodId<T, Void> getConstructor(TypeId<?>... parameters) { method in class:TypeId
/external/libgdx/backends/gdx-backends-gwt/src/com/badlogic/gdx/backends/gwt/emu/com/badlogic/gdx/utils/reflect/
H A DClassReflection.java91 static public Constructor getConstructor (Class c, Class... parameterTypes) throws ReflectionException { method in class:ClassReflection
93 return new Constructor(ReflectionCache.getType(c).getConstructor(parameterTypes));
/external/libgdx/gdx/src/com/badlogic/gdx/utils/reflect/
H A DClassReflection.java88 static public Constructor getConstructor (Class c, Class... parameterTypes) throws ReflectionException { method in class:ClassReflection
90 return new Constructor(c.getConstructor(parameterTypes));
/external/mockito/cglib-and-asm/src/org/mockito/cglib/reflect/
H A DFastClass.java103 public FastConstructor getConstructor(Constructor constructor) { method in class:FastClass
115 public FastConstructor getConstructor(Class[] parameterTypes) { method in class:FastClass
117 return getConstructor(type.getConstructor(parameterTypes));
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/constructor/
H A DConstructor.java335 private Construct getConstructor(Node node) { method in class:Constructor.ConstructYamlObject
346 result = getConstructor(node).construct(node);
358 getConstructor(node).construct2ndStep(node, object);
457 java.lang.reflect.Constructor<?> constr = type.getConstructor(long.class);
H A DBaseConstructor.java181 Construct constructor = getConstructor(node);
200 protected Construct getConstructor(Node node) { method in class:BaseConstructor
/external/libgdx/backends/gdx-backends-gwt/src/com/badlogic/gwtref/client/
H A DType.java74 return getConstructor().newInstance();
195 return getConstructor(parameterTypes);
198 public Constructor getConstructor (Class... parameterTypes) throws NoSuchMethodException { method in class:Type
/external/mockito/cglib-and-asm/src/org/mockito/cglib/core/
H A DReflectUtils.java123 return getClass(className, loader).getConstructor(parseTypes(desc, loader));
221 return newInstance(getConstructor(type, parameterTypes), args);
243 public static Constructor getConstructor(Class type, Class[] parameterTypes) { method in class:ReflectUtils
/external/guice/extensions/persist/lib/
H A Daopalliance.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/aopalliance/ org/aopalliance/aop/ org/aopalliance/intercept/ org/ ...

Completed in 1818 milliseconds

123