Home
last modified time | relevance | path

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

/art/runtime/mirror/
Dclass.cc786 ArraySlice<ArtMethod> declared_methods = klass->GetDeclaredMethodsSlice(pointer_size); in FindDeclaredClassMethod() local
787 DCHECK(!declared_methods.empty()); in FindDeclaredClassMethod()
790 ArtMethod& method = declared_methods[mid]; in FindDeclaredClassMethod()
814 uint32_t num_declared_methods = dchecked_integral_cast<uint32_t>(declared_methods.size()); in FindDeclaredClassMethod()
824 return {true, &declared_methods[mid]}; in FindDeclaredClassMethod()
876 ArraySlice<ArtMethod> declared_methods = klass->GetDeclaredMethodsSlice(pointer_size); in FindClassMethod() local
881 for (ArtMethod& method : declared_methods) { in FindClassMethod()
889 } else if (!declared_methods.empty()) { in FindClassMethod()