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

/art/runtime/
H A Dclass_linker.h1028 // 1) No translation is necessary. In this case there is no MethodTranslation object for it. This
1043 // default_translation maps. So an instance of MethodTranslation must be in one of #2-#4.
1044 class MethodTranslation { class in class:art::ClassLinker
1047 static MethodTranslation CreateConflictingMethod() {
1048 return MethodTranslation(Type::kConflict, /*translation*/nullptr);
1052 static MethodTranslation CreateAbstractMethod() {
1053 return MethodTranslation(Type::kAbstract, /*translation*/nullptr);
1057 static MethodTranslation CreateTranslatedMethod(ArtMethod* new_method) {
1058 return MethodTranslation(Type::kTranslation, new_method);
1090 MethodTranslation(Typ function in class:art::ClassLinker::MethodTranslation
[all...]

Completed in 44 milliseconds