Home
last modified time | relevance | path

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

/art/runtime/native/
Djava_lang_Class.cc110 Thread* self, mirror::Class* klass, bool public_only, bool force_resolve) in GetDeclaredFields() argument
118 if (public_only) { in GetDeclaredFields()
139 if (!public_only || art_field->IsPublic()) { in GetDeclaredFields()
153 if (!public_only || art_field->IsPublic()) { in GetDeclaredFields()
276 static ALWAYS_INLINE inline bool MethodMatchesConstructor(ArtMethod* m, bool public_only) in MethodMatchesConstructor() argument
279 return (!public_only || m->IsPublic()) && !m->IsStatic() && m->IsConstructor(); in MethodMatchesConstructor()