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

/external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/Debug/
H A DRestartLocalMethodItem.java42 @Nonnull private final RestartLocal restartLocal; field in class:RestartLocalMethodItem
46 @Nonnull RestartLocal restartLocal) {
48 this.restartLocal = restartLocal;
55 registerFormatter.writeTo(writer, restartLocal.getRegister());
57 String name = restartLocal.getName();
58 String type = restartLocal.getType();
59 String signature = restartLocal.getSignature();
45 RestartLocalMethodItem(int codeAddress, int sortOrder, @Nonnull RegisterFormatter registerFormatter, @Nonnull RestartLocal restartLocal) argument
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/debug/
H A DImmutableRestartLocal.java68 public static ImmutableRestartLocal of(@Nonnull RestartLocal restartLocal) { argument
69 if (restartLocal instanceof ImmutableRestartLocal) {
70 return (ImmutableRestartLocal)restartLocal;
73 restartLocal.getCodeAddress(),
74 restartLocal.getRegister(),
75 restartLocal.getType(),
76 restartLocal.getName(),
77 restartLocal.getSignature());

Completed in 100 milliseconds