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

1 2

  /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);
  /cts/tools/cts-api-coverage/src/com/android/cts/apicoverage/
ApiClass.java 49 public ApiConstructor getConstructor(List<String> 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);
  /dalvik/dx/src/com/android/dx/gen/
Type.java 116 public MethodId<T, Void> getConstructor(Type<?>... parameters) {
  /external/webkit/Source/WebCore/bindings/v8/
V8DOMWrapper.cpp 127 v8::Local<v8::Function> V8DOMWrapper::getConstructor(WrapperTypeInfo* type, v8::Handle<v8::Value> objectPrototype)
156 return getConstructor(type, V8DOMWindowShell::getHiddenObjectPrototype(context));
159 v8::Local<v8::Function> V8DOMWrapper::getConstructor(WrapperTypeInfo* type, DOMWindow* window)
173 v8::Local<v8::Function> V8DOMWrapper::getConstructor(WrapperTypeInfo* type, WorkerContext*)
285 function = getConstructor(type, workerContext);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/compat/
CompatUtils.java 94 public static Constructor<?> getConstructor(Class<?> targetClass, Class<?> ... types) {
97 return targetClass.getConstructor(types);
  /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)
  /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 430 public Constructor<T> getConstructor(Class<?>... parameterTypes) throws NoSuchMethodException {
583 * @see #getConstructor(Class[])
    [all...]
  /external/javassist/src/main/javassist/
CtClass.java 768 public CtConstructor getConstructor(String desc)
792 return getConstructor(desc);
    [all...]
CtClassType.java 1027 public CtConstructor getConstructor(String desc)
1042 return super.getConstructor(desc);
    [all...]
  /external/clang/include/clang/AST/
ExprCXX.h 850 CXXConstructorDecl* getConstructor() const { return Constructor; }
    [all...]
  /libcore/luni/src/main/java/java/io/
ObjectStreamClass.java 184 long getConstructor() {
    [all...]
  /dalvik/dx/junit-tests/com/android/dx/gen/
DexGeneratorTest.java 81 = constructable.getConstructor(Type.LONG, Type.BOOLEAN);
362 MethodId<?, Void> constructor = GENERATED.getConstructor(Type.INT);
366 code.invokeDirect(Type.OBJECT.getConstructor(), null, thisRef);
372 Object instance = generatedClass.getConstructor(int.class).newInstance(0xabcd);
    [all...]
  /prebuilt/sdk/tools/lib/
dx.jar 
  /prebuilt/common/ecj/
ecj.jar 
  /prebuilt/sdk/10/
android.jar 
  /prebuilt/sdk/11/
android.jar 

Completed in 1680 milliseconds

1 2