Home | History | Annotate | Download | only in mirror

Lines Matching refs:Method

58 class Method;
69 // Interface method table size. Increasing this value reduces the chance of two interface methods
70 // colliding in the interface method table but increases the size of classes that implement
299 // Mutually exclusive from whether or not each method is allowed to skip access checks.
613 // method has been exposed by a public sub-class
648 // Can this class access a resolved method?
744 // Use only when we are allocating populating the method arrays.
766 static Method* GetDeclaredMethodInternal(Thread* self,
852 void SetEmbeddedImTableEntry(uint32_t i, ArtMethod* method, size_t pointer_size)
867 void SetEmbeddedVTableEntry(uint32_t i, ArtMethod* method, size_t pointer_size)
870 inline void SetEmbeddedVTableEntryUnchecked(uint32_t i, ArtMethod* method, size_t pointer_size)
876 // Given a method implemented by this class but potentially from a super class, return the
877 // specific implementation method for this class.
878 ArtMethod* FindVirtualMethodForVirtual(ArtMethod* method, size_t pointer_size)
881 // Given a method implemented by this class' super class, return the specific implementation
882 // method for this class.
883 ArtMethod* FindVirtualMethodForSuper(ArtMethod* method, size_t pointer_size)
886 // Given a method from some implementor of this interface, return the specific implementation
887 // method for this class.
888 ArtMethod* FindVirtualMethodForInterfaceSuper(ArtMethod* method, size_t pointer_size)
891 // Given a method implemented by this class, but potentially from a
893 // method for this class.
894 ArtMethod* FindVirtualMethodForInterface(ArtMethod* method, size_t pointer_size)
897 ArtMethod* FindVirtualMethodForVirtualOrInterface(ArtMethod* method, size_t pointer_size)
1163 // When class is verified, set the kAccSkipAccessChecks flag on each method.
1312 // The index in the methods_ array where the first declared virtual method is.
1315 // The index in the methods_ array where the first direct method is.
1318 // The index in the methods_ array where the first copied method is.
1380 // Virtual method table (vtable), for use by "invoke-virtual". The vtable from the superclass is
1462 // The offset of the first virtual method that is copied from an interface. This includes miranda,