Java Code Examples for proguard.evaluation.value.InstructionOffsetValue#EMPTY_VALUE

The following examples show how to use proguard.evaluation.value.InstructionOffsetValue#EMPTY_VALUE . 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: BasicBranchUnit.java    From java-n-IDE-for-Android with Apache License 2.0 5 votes vote down vote up
public void returnFromMethod()
{
    // Stop processing this block.
    traceBranchTargets = InstructionOffsetValue.EMPTY_VALUE;

    wasCalled = true;
}
 
Example 2
Source File: BasicBranchUnit.java    From java-n-IDE-for-Android with Apache License 2.0 5 votes vote down vote up
public void throwException()
{
    // Stop processing this block.
    traceBranchTargets = InstructionOffsetValue.EMPTY_VALUE;

    wasCalled = true;
}
 
Example 3
Source File: BasicBranchUnit.java    From proguard with GNU General Public License v2.0 5 votes vote down vote up
public void returnFromMethod()
{
    // Stop processing this block.
    traceBranchTargets = InstructionOffsetValue.EMPTY_VALUE;

    wasCalled = true;
}
 
Example 4
Source File: BasicBranchUnit.java    From proguard with GNU General Public License v2.0 5 votes vote down vote up
public void throwException()
{
    // Stop processing this block.
    traceBranchTargets = InstructionOffsetValue.EMPTY_VALUE;

    wasCalled = true;
}
 
Example 5
Source File: BasicBranchUnit.java    From bazel with Apache License 2.0 5 votes vote down vote up
public void returnFromMethod()
{
    // Stop processing this block.
    traceBranchTargets = InstructionOffsetValue.EMPTY_VALUE;

    wasCalled = true;
}
 
Example 6
Source File: BasicBranchUnit.java    From bazel with Apache License 2.0 5 votes vote down vote up
public void throwException()
{
    // Stop processing this block.
    traceBranchTargets = InstructionOffsetValue.EMPTY_VALUE;

    wasCalled = true;
}