org.jf.dexlib2.iface.debug.EndLocal Java Examples

The following examples show how to use org.jf.dexlib2.iface.debug.EndLocal. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: ImmutableEndLocal.java    From ZjDroid with Apache License 2.0 5 votes vote down vote up
@Nonnull
public static ImmutableEndLocal of(@Nonnull EndLocal endLocal) {
    if (endLocal instanceof  ImmutableEndLocal) {
        return (ImmutableEndLocal)endLocal;
    }
    return new ImmutableEndLocal(
            endLocal.getCodeAddress(),
            endLocal.getRegister(),
            endLocal.getType(),
            endLocal.getName(),
            endLocal.getSignature());
}
 
Example #2
Source File: ImmutableEndLocal.java    From zjdroid with Apache License 2.0 5 votes vote down vote up
@Nonnull
public static ImmutableEndLocal of(@Nonnull EndLocal endLocal) {
    if (endLocal instanceof  ImmutableEndLocal) {
        return (ImmutableEndLocal)endLocal;
    }
    return new ImmutableEndLocal(
            endLocal.getCodeAddress(),
            endLocal.getRegister(),
            endLocal.getType(),
            endLocal.getName(),
            endLocal.getSignature());
}
 
Example #3
Source File: ImmutableEndLocal.java    From HeyGirl with Apache License 2.0 5 votes vote down vote up
@Nonnull
public static ImmutableEndLocal of(@Nonnull EndLocal endLocal) {
    if (endLocal instanceof  ImmutableEndLocal) {
        return (ImmutableEndLocal)endLocal;
    }
    return new ImmutableEndLocal(
            endLocal.getCodeAddress(),
            endLocal.getRegister(),
            endLocal.getType(),
            endLocal.getName(),
            endLocal.getSignature());
}
 
Example #4
Source File: ImmutableEndLocal.java    From ZjDroid with Apache License 2.0 5 votes vote down vote up
@Nonnull
public static ImmutableEndLocal of(@Nonnull EndLocal endLocal) {
    if (endLocal instanceof  ImmutableEndLocal) {
        return (ImmutableEndLocal)endLocal;
    }
    return new ImmutableEndLocal(
            endLocal.getCodeAddress(),
            endLocal.getRegister(),
            endLocal.getType(),
            endLocal.getName(),
            endLocal.getSignature());
}
 
Example #5
Source File: EndLocalMethodItem.java    From ZjDroid with Apache License 2.0 4 votes vote down vote up
public EndLocalMethodItem(int codeAddress, int sortOrder, @Nonnull RegisterFormatter registerFormatter,
                            @Nonnull EndLocal endLocal) {
    super(codeAddress, sortOrder);
    this.endLocal = endLocal;
    this.registerFormatter = registerFormatter;
}
 
Example #6
Source File: EndLocalMethodItem.java    From atlas with Apache License 2.0 4 votes vote down vote up
public EndLocalMethodItem(int codeAddress, int sortOrder, @Nonnull RegisterFormatter registerFormatter,
                            @Nonnull EndLocal endLocal) {
    super(codeAddress, sortOrder);
    this.endLocal = endLocal;
    this.registerFormatter = registerFormatter;
}
 
Example #7
Source File: EndLocalMethodItem.java    From zjdroid with Apache License 2.0 4 votes vote down vote up
public EndLocalMethodItem(int codeAddress, int sortOrder, @Nonnull RegisterFormatter registerFormatter,
                            @Nonnull EndLocal endLocal) {
    super(codeAddress, sortOrder);
    this.endLocal = endLocal;
    this.registerFormatter = registerFormatter;
}
 
Example #8
Source File: EndLocalMethodItem.java    From HeyGirl with Apache License 2.0 4 votes vote down vote up
public EndLocalMethodItem(int codeAddress, int sortOrder, @Nonnull RegisterFormatter registerFormatter,
                            @Nonnull EndLocal endLocal) {
    super(codeAddress, sortOrder);
    this.endLocal = endLocal;
    this.registerFormatter = registerFormatter;
}
 
Example #9
Source File: EndLocalMethodItem.java    From ZjDroid with Apache License 2.0 4 votes vote down vote up
public EndLocalMethodItem(int codeAddress, int sortOrder, @Nonnull RegisterFormatter registerFormatter,
                            @Nonnull EndLocal endLocal) {
    super(codeAddress, sortOrder);
    this.endLocal = endLocal;
    this.registerFormatter = registerFormatter;
}