Searched refs:method_access_flags_ (Results 1 – 1 of 1) sorted by relevance
183 method_access_flags_(access_flags), in MethodVerifier()215 return (method_access_flags_ & kAccStatic) != 0; in IsStatic()790 const uint32_t method_access_flags_; // Method's access flags. member in art::verifier::impl::__anon79162a830111::MethodVerifier910 if ((method_access_flags_ & kAccConstructor) != 0) { in Verify()938 (((method_access_flags_ & kAccPublic) == 0) ? 0 : 1) + in Verify()939 (((method_access_flags_ & kAccProtected) == 0) ? 0 : 1) + in Verify()940 (((method_access_flags_ & kAccPrivate) == 0) ? 0 : 1); in Verify()950 if ((method_access_flags_ & (kAccNative | kAccAbstract)) == 0) { in Verify()958 if ((method_access_flags_ & kAccAbstract) != 0) { in Verify()967 if ((method_access_flags_ & kForbidden) != 0) { in Verify()[all …]