Home
last modified time | relevance | path

Searched refs:ArraySlice (Results 1 – 5 of 5) sorted by relevance

/art/libartbase/base/
Darray_slice.h30 class ArraySlice {
45 ArraySlice() : array_(nullptr), size_(0), element_size_(0) {} in ArraySlice() function
49 ArraySlice(T* array,
108 ArraySlice<T> SubArray(size_type pos) { in SubArray()
112 ArraySlice<const T> SubArray(size_type pos) const { in SubArray()
116 ArraySlice<T> SubArray(size_type pos, size_type length) { in SubArray()
119 return ArraySlice<T>(&AtUnchecked(pos), length, element_size_); in SubArray()
122 ArraySlice<const T> SubArray(size_type pos, size_type length) const { in SubArray()
125 return ArraySlice<const T>(&AtUnchecked(pos), length, element_size_); in SubArray()
/art/runtime/mirror/
Dclass-inl.h125 inline ArraySlice<ArtMethod> Class::GetDirectMethodsSlice(PointerSize pointer_size) { in GetDirectMethodsSlice()
130 inline ArraySlice<ArtMethod> Class::GetDirectMethodsSliceUnchecked(PointerSize pointer_size) { in GetDirectMethodsSliceUnchecked()
138 inline ArraySlice<ArtMethod> Class::GetDeclaredMethodsSlice(PointerSize pointer_size) { in GetDeclaredMethodsSlice()
143 inline ArraySlice<ArtMethod> Class::GetDeclaredMethodsSliceUnchecked(PointerSize pointer_size) { in GetDeclaredMethodsSliceUnchecked()
150 inline ArraySlice<ArtMethod> Class::GetDeclaredVirtualMethodsSlice(PointerSize pointer_size) { in GetDeclaredVirtualMethodsSlice()
155 inline ArraySlice<ArtMethod> Class::GetDeclaredVirtualMethodsSliceUnchecked( in GetDeclaredVirtualMethodsSliceUnchecked()
164 inline ArraySlice<ArtMethod> Class::GetVirtualMethodsSlice(PointerSize pointer_size) { in GetVirtualMethodsSlice()
169 inline ArraySlice<ArtMethod> Class::GetVirtualMethodsSliceUnchecked(PointerSize pointer_size) { in GetVirtualMethodsSliceUnchecked()
178 inline ArraySlice<ArtMethod> Class::GetCopiedMethodsSlice(PointerSize pointer_size) { in GetCopiedMethodsSlice()
183 inline ArraySlice<ArtMethod> Class::GetCopiedMethodsSliceUnchecked(PointerSize pointer_size) { in GetCopiedMethodsSliceUnchecked()
[all …]
Dclass.h48 template<typename T> class ArraySlice; variable
675 ALWAYS_INLINE ArraySlice<ArtMethod> GetDirectMethods(PointerSize pointer_size)
685 ALWAYS_INLINE ArraySlice<ArtMethod> GetMethods(PointerSize pointer_size)
699 ALWAYS_INLINE ArraySlice<ArtMethod> GetDirectMethodsSlice(PointerSize pointer_size)
715 ALWAYS_INLINE ArraySlice<ArtMethod> GetMethodsSlice(PointerSize pointer_size)
719 ALWAYS_INLINE ArraySlice<ArtMethod> GetDeclaredMethodsSlice(PointerSize pointer_size)
722 ALWAYS_INLINE ArraySlice<ArtMethod> GetDeclaredMethods(
740 ALWAYS_INLINE ArraySlice<ArtMethod> GetDeclaredVirtualMethodsSlice(PointerSize pointer_size)
743 ALWAYS_INLINE ArraySlice<ArtMethod> GetDeclaredVirtualMethods(
748 ALWAYS_INLINE ArraySlice<ArtMethod> GetCopiedMethodsSlice(PointerSize pointer_size)
[all …]
Dclass.cc661 ArraySlice<ArtMethod> declared_methods = klass->GetDeclaredMethodsSlice(pointer_size); in FindClassMethod()
701 ArraySlice<ArtMethod> copied_methods = klass->GetCopiedMethodsSlice(pointer_size); in FindClassMethod()
/art/runtime/
Dclass_linker.cc6673 ArraySlice<ArtMethod> virtuals = klass->GetVirtualMethodsSliceUnchecked(pointer_size); in CheckClassOwnsVTableEntries()
7305 ArraySlice<ArtMethod> input_virtual_methods; in LinkInterfaceMethods()