Home
last modified time | relevance | path

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

/art/runtime/mirror/
Dclass.cc783 ArraySlice<ArtMethod> declared_methods = klass->GetDeclaredMethodsSlice(pointer_size); in FindDeclaredClassMethod() local
784 DCHECK(!declared_methods.empty()); in FindDeclaredClassMethod()
787 ArtMethod& method = declared_methods[mid]; in FindDeclaredClassMethod()
811 uint32_t num_declared_methods = dchecked_integral_cast<uint32_t>(declared_methods.size()); in FindDeclaredClassMethod()
821 return {true, &declared_methods[mid]}; in FindDeclaredClassMethod()
873 ArraySlice<ArtMethod> declared_methods = klass->GetDeclaredMethodsSlice(pointer_size); in FindClassMethod() local
878 for (ArtMethod& method : declared_methods) { in FindClassMethod()
886 } else if (!declared_methods.empty()) { in FindClassMethod()