Searched refs:MethodTranslation (Results 1 – 2 of 2) sorted by relevance
874 class MethodTranslation; variable1174 /*out*/HashMap<size_t, MethodTranslation>* default_translations)1221 const HashMap<size_t, MethodTranslation>& default_translations,
6255 class ClassLinker::MethodTranslation { class in art::ClassLinker6257 MethodTranslation() : translation_(nullptr), type_(Type::kInvalid) {} in MethodTranslation() function in art::ClassLinker::MethodTranslation6260 static MethodTranslation CreateConflictingMethod() { in CreateConflictingMethod()6261 return MethodTranslation(Type::kConflict, /*translation=*/nullptr); in CreateConflictingMethod()6265 static MethodTranslation CreateAbstractMethod() { in CreateAbstractMethod()6266 return MethodTranslation(Type::kAbstract, /*translation=*/nullptr); in CreateAbstractMethod()6270 static MethodTranslation CreateTranslatedMethod(ArtMethod* new_method) { in CreateTranslatedMethod()6271 return MethodTranslation(Type::kTranslation, new_method); in CreateTranslatedMethod()6304 MethodTranslation(Type type, ArtMethod* translation) in MethodTranslation() function in art::ClassLinker::MethodTranslation6322 std::pair<size_t, ClassLinker::MethodTranslation> buffer[kBufferSize]; in LinkMethods()[all …]