/art/test/005-annotations/ |
D | expected.txt | 13 interface android.test.anno.AnnoSimpleType 15 interface android.test.anno.AnnoSimpleType2 19 interface android.test.anno.AnnoSimpleConstructor 23 interface android.test.anno.AnnoSimpleConstructor 26 interface android.test.anno.AnnoSimpleParameter 29 interface android.test.anno.AnnoSimpleMethod 33 interface android.test.anno.AnnoSimpleField 36 interface android.test.anno.AnnoSimpleField 38 annotations on TYPE interface android.test.anno.INoted(1): 40 interface android.test.anno.AnnoSimpleType2 [all …]
|
/art/runtime/mirror/ |
D | iftable-inl.h | 25 inline void IfTable::SetInterface(int32_t i, Class* interface) { in SetInterface() argument 26 DCHECK(interface != NULL); in SetInterface() 27 DCHECK(interface->IsInterface()); in SetInterface() 30 SetWithoutChecks<false>(idx, interface); in SetInterface()
|
D | iftable.h | 29 Class* interface = GetWithoutChecks((i * kMax) + kInterface)->AsClass(); in GetInterface() local 30 DCHECK(interface != NULL); in GetInterface() 31 return interface; in GetInterface() 34 ALWAYS_INLINE void SetInterface(int32_t i, Class* interface)
|
D | class.cc | 237 Class* interface = GetDirectInterface(self, h_this, i); in DumpClass() local 238 const ClassLoader* cl = interface->GetClassLoader(); in DumpClass() 239 os << StringPrintf(" %2zd: %s (cl=%p)\n", i, PrettyClass(interface).c_str(), cl); in DumpClass() 641 Handle<mirror::Class> interface(hs.NewHandle(GetDirectInterface(self, h_k, i))); in FindStaticField() local 642 f = FindStaticField(self, interface, name, type); in FindStaticField() 665 Handle<mirror::Class> interface(hs.NewHandle(GetDirectInterface(self, h_k, i))); in FindStaticField() local 666 f = FindStaticField(self, interface, dex_cache, dex_field_idx); in FindStaticField() 693 Handle<mirror::Class> interface(hs.NewHandle(GetDirectInterface(self, h_k, i))); in FindField() local 694 f = interface->FindStaticField(self, interface, name, type); in FindField() 776 mirror::Class* interface = klass->GetDexCache()->GetResolvedType(type_idx); in GetDirectInterface() local [all …]
|
D | art_method.cc | 128 Class* interface = iftable->GetInterface(i); in FindOverriddenMethod() local 129 for (size_t j = 0; j < interface->NumVirtualMethods(); ++j) { in FindOverriddenMethod() 130 interface_mh.ChangeMethod(interface->GetVirtualMethod(j)); in FindOverriddenMethod()
|
/art/test/031-class-attributes/ |
D | expected.txt | 13 public abstract interface java.io.Serializable 15 public abstract static interface ClassAttrs$PublicInnerInterface 17 protected abstract static interface ClassAttrs$ProtectedInnerInterface 19 private abstract static interface ClassAttrs$PrivateInnerInterface 21 abstract static interface ClassAttrs$PackagePrivateInnerInterface 36 … interface ClassAttrs$PackagePrivateInnerInterface, interface ClassAttrs$PrivateInnerInterface, in… 37 …member classes: [3] class ClassAttrs$PublicMemberClass, interface ClassAttrs$PublicInnerInterface,…
|
/art/test/115-native-bridge/ |
D | info.txt | 1 Test for the native bridge interface.
|
/art/test/065-mismatched-implements/ |
D | info.txt | 1 This tests what happens when class A implements interface B, but somebody
|
/art/test/066-mismatched-super/ |
D | info.txt | 2 turns B into an interface without rebuilding A.
|
/art/runtime/ |
D | proxy_test.cc | 52 for (mirror::Class* interface : interfaces) { in GenerateProxyClass() 53 mirror::ObjectArray<mirror::ArtMethod>* virtual_methods = interface->GetVirtualMethods(); in GenerateProxyClass() 83 for (mirror::Class* interface : interfaces) { in GenerateProxyClass() 84 mirror::ObjectArray<mirror::ArtMethod>* virtual_methods = interface->GetVirtualMethods(); in GenerateProxyClass()
|
D | class_linker.cc | 4702 mirror::Class* interface = ResolveType(dex_file, idx, klass.Get()); in LoadSuperAndInterfaces() local 4703 if (interface == nullptr) { in LoadSuperAndInterfaces() 4708 if (!klass->CanAccess(interface)) { in LoadSuperAndInterfaces() 4711 PrettyDescriptor(interface).c_str(), in LoadSuperAndInterfaces() 5079 mirror::Class* interface = have_interfaces ? in LinkInterfaceMethods() local 5081 DCHECK(interface != nullptr); in LinkInterfaceMethods() 5082 if (UNLIKELY(!interface->IsInterface())) { in LinkInterfaceMethods() 5086 PrettyDescriptor(interface->GetDescriptor(&temp)).c_str()); in LinkInterfaceMethods() 5089 ifcount += interface->GetIfTableCount(); in LinkInterfaceMethods() 5106 mirror::Class* interface = have_interfaces ? interfaces->Get(i) : in LinkInterfaceMethods() local [all …]
|
D | class_linker_test.cc | 226 mirror::Class* interface = iftable->GetInterface(i); in AssertClass() local 227 ASSERT_TRUE(interface != NULL); in AssertClass() 231 EXPECT_EQ(interface->NumVirtualMethods(), iftable->GetMethodArrayCount(i)); in AssertClass()
|
/art/test/301-abstract-protected/ |
D | info.txt | 2 of an interface method; the RI only cares about the visibility of the actual
|
/art/test/044-proxy/ |
D | expected.txt | 53 Proxy interfaces: [interface Quads, interface Colors, interface Trace]
|
/art/runtime/base/unix_file/ |
D | README | 7 In particular, the basic RandomAccessFile interface is kept small and simple so
|
/art/test/100-reflect2/ |
D | expected.txt | 38 [interface java.io.Serializable, interface java.lang.Comparable, interface java.lang.CharSequence]
|