Searched refs:method_access_flags_ (Results 1 – 1 of 1) sorted by relevance
166 method_access_flags_(access_flags), in MethodVerifier()195 return (method_access_flags_ & kAccStatic) != 0; in IsStatic()750 const uint32_t method_access_flags_; // Method's access flags. member in art::verifier::impl::__anon79162a830111::MethodVerifier859 if ((method_access_flags_ & kAccConstructor) != 0) { in Verify()887 (((method_access_flags_ & kAccPublic) == 0) ? 0 : 1) + in Verify()888 (((method_access_flags_ & kAccProtected) == 0) ? 0 : 1) + in Verify()889 (((method_access_flags_ & kAccPrivate) == 0) ? 0 : 1); in Verify()899 if ((method_access_flags_ & (kAccNative | kAccAbstract)) == 0) { in Verify()906 if ((method_access_flags_ & kAccNative) != 0) { in Verify()912 if ((method_access_flags_ & kAccSynchronized) != 0) { in Verify()[all …]