Searched defs:iface (Results 1 - 7 of 7) sorted by relevance

/art/runtime/
H A Ddebug_print.cc168 ObjPtr<mirror::Class> iface = iftable->GetInterface(i); local
169 CHECK(iface != nullptr);
170 LOG(ERROR) << " iface #" << i << ": " << iface->PrettyDescriptor();
171 matcher(iface);
H A Dclass_linker.cc1620 << klass->PrettyDescriptor() << " iface #" << i;
4107 MutableHandle<mirror::Class> iface(hs.NewHandle<mirror::Class>(nullptr));
4110 iface.Assign(klass->GetIfTable()->GetInterface(i));
4111 DCHECK(iface != nullptr);
4113 if (LIKELY(!iface->HasDefaultMethods() || iface->IsVerified())) {
4115 } else if (UNLIKELY(!AttemptSupertypeVerification(self, klass, iface))) {
4119 } else if (UNLIKELY(!iface->IsVerified())) {
4120 // We softly failed to verify the iface. Stop checking and clean up.
4121 // Put the iface int
4626 ObjPtr<mirror::Class> iface = klass->GetIfTable()->GetInterface(i); local
4929 InitializeDefaultInterfaceRecursive(Thread* self, Handle<mirror::Class> iface, bool can_init_statics, bool can_init_parents) argument
6473 ObjPtr<mirror::Class> iface = iftable->GetInterface(i); local
[all...]
/art/test/023-many-interfaces/src/
H A DManyInterfaces.java302 static void testIface001(Interface001 iface, int count) { argument
304 iface.func001(); iface.func001(); iface.func001(); iface.func001();
305 iface.func001(); iface.func001(); iface.func001(); iface.func001();
306 iface
311 testIface049(Interface049 iface, int count) argument
320 testIface099(Interface099 iface, int count) argument
[all...]
/art/runtime/native/
H A Djava_lang_Class.cc426 ObjPtr<mirror::Class> iface = mirror::Class::ResolveDirectInterface(self, h_clazz, i); local
427 if (UNLIKELY(iface == nullptr)) {
431 result = GetPublicFieldRecursive(self, iface, h_name.Get());
/art/test/004-JniTest/src/
H A DMain.java299 private static native void testInvokeLambdaMethod(LambdaInterface iface); argument
301 private static native void testInvokeLambdaDefaultMethod(LambdaInterface iface); argument
/art/runtime/mirror/
H A Dclass.cc474 ObjPtr<Class> iface = iftable->GetInterface(i); local
475 for (ArtMethod& method : iface->GetVirtualMethodsSlice(pointer_size)) {
767 MutableHandle<Class> iface(hs.NewHandle<Class>(nullptr));
775 iface.Assign(iftable->GetInterface(k));
778 for (auto& method_iter : iface->GetDeclaredVirtualMethods(pointer_size)) {
790 if (iface->IsAssignableFrom(possible_override->GetDeclaringClass())) {
/art/oatdump/
H A Doatdump.cc3442 mirror::Class* iface = if_table->GetInterface(i); local
3444 std::cerr << " " << iface->GetDescriptor(&iface_name) << std::endl;
3446 for (ArtMethod& iface_method : iface->GetVirtualMethods(pointer_size)) {
3523 mirror::Class* iface = if_table->GetInterface(i); local
3524 size_t num_methods = iface->NumDeclaredVirtualMethods();
3526 for (ArtMethod& iface_method : iface->GetMethods(pointer_size)) {

Completed in 136 milliseconds