Home
last modified time | relevance | path

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

/art/runtime/
Dclass_linker.h874 class MethodTranslation; variable
1174 /*out*/HashMap<size_t, MethodTranslation>* default_translations)
1221 const HashMap<size_t, MethodTranslation>& default_translations,
Dclass_linker.cc6255 class ClassLinker::MethodTranslation { class in art::ClassLinker
6257 MethodTranslation() : translation_(nullptr), type_(Type::kInvalid) {} in MethodTranslation() function in art::ClassLinker::MethodTranslation
6260 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::MethodTranslation
6322 std::pair<size_t, ClassLinker::MethodTranslation> buffer[kBufferSize]; in LinkMethods()
[all …]