Tabnine Logo
DexCodeVisitor.visitPackedSwitchStmt
Code IndexAdd Tabnine to your IDE (free)

How to use
visitPackedSwitchStmt
method
in
com.googlecode.d2j.visitors.DexCodeVisitor

Best Java code snippets using com.googlecode.d2j.visitors.DexCodeVisitor.visitPackedSwitchStmt (Showing top 9 results out of 315)

origin: pxb1988/dex2jar

public void visitPackedSwitchStmt(Op op, int aA, int first_case, DexLabel[] labels) {
  if (visitor != null) {
    visitor.visitPackedSwitchStmt(op, aA, first_case, labels);
  }
}
origin: pxb1988/dex2jar

  @Override
  public void accept(DexCodeVisitor cv) {
    cv.visitPackedSwitchStmt(op, a, first_case, labels);
  }
}
origin: pxb1988/dex2jar

case PACKED_SWITCH:
  PackedSwitchStmt packedSwitchStmt = (PackedSwitchStmt) needCareStmts.get(labelIndex + 1);
  cv.visitPackedSwitchStmt(op, reg, packedSwitchStmt.firstCase, packedSwitchStmt.labels);
  break;
case SPARSE_SWITCH:
origin: pxb1988/dex2jar

code.visitPackedSwitchStmt(Op.PACKED_SWITCH, 0, 0, labels);
code.visitTypeStmt(Op.NEW_INSTANCE, 0, 0, "Ljava/lang/RuntimeException;");
code.visitConstStmt(Op.CONST_STRING, 1, "invalid idx");
origin: pxb1988/dex2jar

  z += 4;
dcv.visitPackedSwitchStmt(op, a, first_key, labels);
origin: pxb1988/dex2jar

  labels[i] = new DexLabel();
code.visitPackedSwitchStmt(Op.PACKED_SWITCH, 2, 0, labels);
code.visitTypeStmt(Op.NEW_INSTANCE, 0, 0, "Ljava/lang/RuntimeException;");
code.visitConstStmt(Op.CONST_STRING, 1, "invalid idx");
origin: SparkInLee/dexdiff

  @Override
  public void accept(DexCodeVisitor cv) {
    cv.visitPackedSwitchStmt(op, a, first_case, labels);
  }
}
origin: SparkInLee/dexdiff

public void visitPackedSwitchStmt(Op op, int aA, int first_case, DexLabel[] labels) {
  if (visitor != null) {
    visitor.visitPackedSwitchStmt(op, aA, first_case, labels);
  }
}
origin: SparkInLee/dexdiff

  z += 4;
dcv.visitPackedSwitchStmt(op, a, first_key, labels);
com.googlecode.d2j.visitorsDexCodeVisitorvisitPackedSwitchStmt

Popular methods of DexCodeVisitor

  • visitEnd
  • visitConstStmt
    CONST * CONST_WIDE * CONST_STRING * CONST_CLASS
  • visitRegister
  • visitStmt0R
    Op#RETURN_VOID Op#NOP Op#BAD_OP
  • visitFieldStmt
    OP_IGETX a,b field OP_IPUTX a,b field OP_SGETX a field OP_SPUTX a field
  • visitLabel
  • visitMethodStmt
    OP_INVOKE_CUSTOM
  • visitStmt1R
    OP_RETURN_X OP_THROW_X OP_MONITOR_ENTER OP_MONITOR_EXIT OP_MOVE_RESULT_X OP_MOVE_EXCEPTION_X
  • visitStmt2R
    OP_MOVE a = a X b OP_ARRAY_LENGTH a=Xb X_TO_Y
  • visitStmt3R
    OP_ADD OP_SUB OP_MUL OP_DIV OP_REM OP_AND OP_OR OP_XOR OP_SHL OP_SHR OP_USHR OP_CMPL O
  • visitTypeStmt
    OP_INSTANCE_OF OP_NEW_ARRAY OP_CHECK_CAST OP_NEW_INSTANCE
  • visitDebug
  • visitTypeStmt,
  • visitDebug,
  • visitFillArrayDataStmt,
  • visitJumpStmt,
  • visitSparseSwitchStmt,
  • visitStmt2R1N,
  • visitTryCatch,
  • visitFilledNewArrayStmt

Popular in Java

  • Reactive rest calls using spring rest template
  • compareTo (BigDecimal)
  • getSupportFragmentManager (FragmentActivity)
  • getSharedPreferences (Context)
  • InputStreamReader (java.io)
    A class for turning a byte stream into a character stream. Data read from the source input stream is
  • Format (java.text)
    The base class for all formats. This is an abstract base class which specifies the protocol for clas
  • Collections (java.util)
    This class consists exclusively of static methods that operate on or return collections. It contains
  • Callable (java.util.concurrent)
    A task that returns a result and may throw an exception. Implementors define a single method with no
  • Response (javax.ws.rs.core)
    Defines the contract between a returned instance and the runtime when an application needs to provid
  • BasicDataSource (org.apache.commons.dbcp)
    Basic implementation of javax.sql.DataSource that is configured via JavaBeans properties. This is no
  • Top plugins for WebStorm
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now