Searched defs:constructor (Results 1 - 3 of 3) sorted by relevance

/art/compiler/driver/
H A Dcompiler_driver_test.cc168 jmethodID constructor = env_->GetMethodID(c_class, "<init>", "()V"); local
169 jobject jobj_ = env_->NewObject(c_class, constructor);
/art/compiler/jni/
H A Djni_compiler_test.cc125 jmethodID constructor = env_->GetMethodID(jklass_, "<init>", "()V"); local
126 jobj_ = env_->NewObject(jklass_, constructor);
/art/runtime/
H A Dclass_linker.cc2932 LOG(WARNING) << method_name << " didn't have expected constructor access flag in class "
3772 static void CheckProxyConstructor(mirror::ArtMethod* constructor);
3829 // Proxies have 1 direct method, the constructor
3837 mirror::ArtMethod* constructor = CreateProxyConstructor(self, klass, proxy_class); local
3838 if (UNLIKELY(constructor == nullptr)) {
3842 klass->SetDirectMethod(0, constructor);
3972 // Create constructor for Proxy that must initialize h
3977 // Ensure constructor is in dex cache so that we can use the dex cache to look up the overridden
3978 // constructor method.
3981 // Clone the existing constructor o
3983 mirror::ArtMethod* constructor = down_cast<mirror::ArtMethod*>(proxy_constructor->Clone(self)); local
[all...]

Completed in 97 milliseconds