Searched refs:constructor (Results 1 - 13 of 13) sorted by relevance

/art/test/425-invoke-super/smali/
H A Dsubclass.smali19 .method public constructor <init>()V
H A Dsuperclass.smali19 .method public constructor <init>()V
H A Dinvokesuper.smali20 .method public constructor <init>()V
/art/test/434-invoke-direct/smali/
H A Dinvoke.smali19 .method public constructor <init>()V
/art/test/435-new-instance/smali/
H A Dinstance.smali19 .method public constructor <init>()V
/art/tools/dexfuzz/src/dexfuzz/fuzzers/
H A DFuzzer.java132 Constructor<? extends Executor> constructor =
134 executors.add(constructor.newInstance(listener, device));
137 Constructor<? extends Executor> constructor =
139 executors.add(constructor.newInstance(listener, device));
142 Constructor<? extends Executor> constructor =
144 executors.add(constructor.newInstance(listener, device));
147 Log.errorAndQuit("Executor doesn't have correct constructor.");
/art/runtime/native/
H A Djava_lang_Class.cc301 auto* constructor = mirror::Constructor::CreateFromArtMethod(soa.Self(), &m); local
302 if (UNLIKELY(constructor == nullptr)) {
306 h_constructors->SetWithoutChecks<false>(constructor_count++, constructor);
395 // Add non-constructor direct/static methods.
418 // Add non-constructor direct/static methods.
453 auto* constructor = klass->GetDeclaredConstructor( local
455 if (UNLIKELY(constructor == nullptr)) {
457 "%s has no zero argument constructor",
477 // Verify that we can access the constructor.
478 auto* declaring_class = constructor
[all...]
/art/compiler/driver/
H A Dcompiler_driver_test.cc164 jmethodID constructor = env_->GetMethodID(c_class, "<init>", "()V"); local
166 jobject jobj_ = env_->NewObject(c_class, constructor);
/art/test/046-reflect/src/
H A DMain.java392 Constructor<Thrower> constructor = Thrower.class.getDeclaredConstructor();
393 Thrower thrower = constructor.newInstance();
761 System.out.println("SuperTarget constructor ()V");
777 System.out.println("Target constructor ()V");
781 System.out.println("Target constructor (IF)V : ii="
/art/runtime/interpreter/
H A Dunstarted_runtime.cc172 StackHandleScope<2> hs(self); // Class, constructor, object.
198 // 2) If we can't find the default constructor. We'll postpone the exception to runtime.
214 "Could not find default constructor for '%s'",
729 ArtMethod* constructor = h_class->FindDeclaredDirectMethod( local
731 if (constructor == nullptr) {
732 AbortTransactionOrFail(self, "Could not find StringReader constructor");
738 EnterInterpreterFromInvoke(self, constructor, h_obj.Get(), args, nullptr);
741 AbortTransactionOrFail(self, "Could not run StringReader constructor");
/art/runtime/
H A Dclass_linker.h616 void CheckProxyConstructor(ArtMethod* constructor) const
H A Dclass_linker.cc2435 LOG(WARNING) << method_name << " didn't have expected constructor access flag in class "
3323 // Proxies have 1 direct method, the constructor
3458 // Create constructor for Proxy that must initialize the method.
3462 // Ensure constructor is in dex cache so that we can use the dex cache to look up the overridden
3463 // constructor method.
3466 // Clone the existing constructor of Proxy (our constructor would just invoke it so steal its
3470 // Make this constructor public and fix the class to be our Proxy version
3475 void ClassLinker::CheckProxyConstructor(ArtMethod* constructor) const {
3476 CHECK(constructor
[all...]
/art/compiler/jni/
H A Djni_compiler_test.cc118 jmethodID constructor = env_->GetMethodID(jklass_, "<init>", "()V"); local
119 jobj_ = env_->NewObject(jklass_, constructor);

Completed in 976 milliseconds