Searched defs:getConstructor (Results 1 - 25 of 54) 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/main/java/org/junit/internal/runners/
H A DTestClass.java97 public Constructor<?> getConstructor() throws SecurityException, NoSuchMethodException { method in class:TestClass
98 return klass.getConstructor();
/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/desugar/java/com/google/devtools/common/options/
H A DIsolatedOptionsData.java115 public <T extends OptionsBase> Constructor<T> getConstructor(Class<T> clazz) { method in class:IsolatedOptionsData
215 Constructor<?> constructor = converter.getConstructor();
281 parsedOptionsClass.getConstructor();
/external/dexmaker/dexmaker/src/main/java/com/android/dx/
H A DTypeId.java122 public MethodId<T, Void> getConstructor(TypeId<?>... parameters) { method in class:TypeId
/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/guice/extensions/persist/lib/
H A Daopalliance.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/aopalliance/ org/aopalliance/aop/ org/aopalliance/intercept/ org/ ...
/external/guice/lib/
H A Daopalliance.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/aopalliance/ org/aopalliance/aop/ org/aopalliance/intercept/ org/ ...
/external/javassist/src/main/javassist/
H A DCtClass.java768 public CtConstructor getConstructor(String desc) method in class:CtClass
792 return getConstructor(desc);
H A DCtClassType.java1027 public CtConstructor getConstructor(String desc) method in class:CtClassType
1042 return super.getConstructor(desc);
/external/clang/include/clang/AST/
H A DExprCXX.h1225 CXXConstructorDecl *getConstructor() const { return Constructor; } function in class:clang::CXXConstructExpr
1358 CXXConstructorDecl *getConstructor() const { return Constructor; } function in class:clang::CXXConstructExpr
/external/testng/lib-supplied/
H A Dguice-2.0.jarMETA-INF/ META-INF/MANIFEST.MF LICENSE NOTICE org/ org/testng/ org/testng/guice/ org/testng/ ...

Completed in 599 milliseconds

123