Searched defs:MethodTranslation (Results 1 - 1 of 1) sorted by relevance

/art/runtime/
H A Dclass_linker.h904 // 1) No translation is necessary. In this case there is no MethodTranslation object for it. This
919 // default_translation maps. So an instance of MethodTranslation must be in one of #2-#4.
920 class MethodTranslation { class in class:art::ClassLinker
923 static MethodTranslation CreateConflictingMethod() {
924 return MethodTranslation(Type::kConflict, /*translation*/nullptr);
928 static MethodTranslation CreateAbstractMethod() {
929 return MethodTranslation(Type::kAbstract, /*translation*/nullptr);
933 static MethodTranslation CreateTranslatedMethod(ArtMethod* new_method) {
934 return MethodTranslation(Type::kTranslation, new_method);
966 MethodTranslation(Typ function in class:art::ClassLinker::MethodTranslation
[all...]

Completed in 18 milliseconds