HomeSort by relevance Sort by last modified time
    Searched defs:getConstructor (Results 1 - 25 of 54) sorted by null

1 2 3

  /external/javassist/src/main/javassist/expr/
ConstructorCall.java 49 * @see #getConstructor()
52 throw new NotFoundException("this is a constructor call. Call getConstructor().");
58 public CtConstructor getConstructor() throws NotFoundException {
59 return getCtClass().getConstructor(getSignature());
NewExpr.java 112 public CtConstructor getConstructor() throws NotFoundException {
116 return getCtClass().getConstructor(desc);
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
TypeExtensions.cs 55 public static ConstructorInfo getConstructor( this Type type, Type[] argumentTypes )
57 return type.GetConstructor( argumentTypes );
97 return type.GetConstructor( new Type[0] ).Invoke( new object[0] );
  /external/junit/src/org/junit/internal/runners/
MethodValidator.java 61 fTestClass.getConstructor();
TestClass.java 90 public Constructor<?> getConstructor() throws SecurityException, NoSuchMethodException {
91 return fClass.getConstructor();
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/compat/
CompatUtils.java 66 public static Constructor<?> getConstructor(final Class<?> targetClass,
70 return targetClass.getConstructor(types);
  /cts/tools/cts-api-coverage/src/com/android/cts/apicoverage/
ApiClass.java 65 public ApiConstructor getConstructor(List<String> parameterTypes) {
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/bytecode/
RobolectricWiringTest.java 38 shadowClass.getConstructor(implementedClass);
41 shadowClass.getConstructor();
90 return implementedClass.getConstructor(parameterTypes);
  /external/webkit/Source/WebCore/bindings/scripts/test/JS/
JSTestInterface.cpp 163 return JSTestInterface::getConstructor(exec, domObject->globalObject());
166 JSValue JSTestInterface::getConstructor(ExecState* exec, JSGlobalObject* globalObject)
JSTestMediaQueryListListener.cpp 159 return JSTestMediaQueryListListener::getConstructor(exec, domObject->globalObject());
162 JSValue JSTestMediaQueryListListener::getConstructor(ExecState* exec, JSGlobalObject* globalObject)
JSTestSerializedScriptValueInterface.cpp 158 return JSTestSerializedScriptValueInterface::getConstructor(exec, domObject->globalObject());
161 JSValue JSTestSerializedScriptValueInterface::getConstructor(ExecState* exec, JSGlobalObject* globalObject)
JSTestObj.cpp     [all...]
  /libcore/luni/src/test/java/libcore/java/lang/reflect/
ConstructorTest.java 24 Constructor<?> constructor = ConstructorTestHelper.class.getConstructor(new Class[0]);
37 Constructor<?> constructor = ConstructorTestHelper.class.getConstructor(expectedParameters);
49 Constructor<?> constructor = ConstructorTestHelper.class.getConstructor((Class[]) null);
55 ConstructorTestHelper.class.getConstructor(new Class[] { null });
63 ConstructorTestHelper.class.getConstructor(Object.class, Object.class);
  /external/dexmaker/src/main/java/com/google/dexmaker/
TypeId.java 124 public MethodId<T, Void> getConstructor(TypeId<?>... parameters) {
  /external/webkit/Source/WebCore/bindings/v8/
V8DOMWrapper.cpp 128 v8::Local<v8::Function> V8DOMWrapper::getConstructor(WrapperTypeInfo* type, v8::Handle<v8::Value> objectPrototype)
157 return getConstructor(type, V8DOMWindowShell::getHiddenObjectPrototype(context));
160 v8::Local<v8::Function> V8DOMWrapper::getConstructor(WrapperTypeInfo* type, DOMWindow* window)
174 v8::Local<v8::Function> V8DOMWrapper::getConstructor(WrapperTypeInfo* type, WorkerContext*)
281 function = getConstructor(type, workerContext);
  /libcore/luni/src/test/java/tests/api/java/lang/reflect/
ConstructorTest.java 108 .getConstructor(Object.class);
128 ctor1 = ConstructorTestHelper.class.getConstructor(new Class[0]);
144 .getConstructor(String[].class);
148 .getConstructor(Object.class);
155 .getConstructor();
165 .getConstructor(Object.class, Object.class);
171 .getConstructor();
181 ctor1 = ConstructorTestHelper.class.getConstructor(
183 ctor2 = ConstructorTestHelper.class.getConstructor(Object.class);
194 Constructor<? extends ConstructorTestHelper> ctor = pclass.getConstructor(new Class[0])
    [all...]
  /external/javassist/src/main/javassist/compiler/
AccessorMaker.java 39 public String getConstructor(CtClass c, String desc, MethodInfo orig)
  /external/jmonkeyengine/engine/src/networking/com/jme3/network/serializing/serializers/
FieldSerializer.java 57 clazz.getConstructor();
  /libcore/benchmarks/src/benchmarks/regression/
ReflectionBenchmark.java 49 klass.getConstructor();
55 Constructor constructor = klass.getConstructor();
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/editors/
ParametricEditor.java 67 static Constructor getConstructor(Class cl) {
69 return cl.getConstructor(Context.class, ViewGroup.class);
  /cts/tools/utils/
CollectAllTests.java 216 klass.getConstructor(new Class<?>[] { String.class } );
226 klass.getConstructor(new Class<?>[0]);
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/
ClassTest.java 229 * @tests java.lang.Class#getConstructor(java.lang.Class[])
233 TestClass.class.getConstructor(new Class[0]);
235 TestClass.class.getConstructor(Object.class);
  /libcore/luni/src/main/java/java/lang/
Class.java 396 public Constructor<T> getConstructor(Class<?>... parameterTypes) throws NoSuchMethodException {
507 * @see #getConstructor(Class[])
    [all...]
  /external/javassist/src/main/javassist/
CtClass.java 768 public CtConstructor getConstructor(String desc)
792 return getConstructor(desc);
    [all...]