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

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

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

origin: pxb1988/dex2jar

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

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

case SPARSE_SWITCH:
  SparseSwitchStmt sparseSwitchStmt = (SparseSwitchStmt) needCareStmts.get(labelIndex + 1);
  cv.visitSparseSwitchStmt(op, reg, sparseSwitchStmt.cases, sparseSwitchStmt.labels);
  break;
case FILL_ARRAY_DATA:
origin: pxb1988/dex2jar

    labels[i] = labelsMap.get(offset + sint(insns, z + i * 4));
  dcv.visitSparseSwitchStmt(op, a, keys, labels);
} else {
  int size = sshort(insns, u1SwitchData + 2);
origin: SparkInLee/dexdiff

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

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

    labels[i] = labelsMap.get(offset + sint(insns, z + i * 4));
  dcv.visitSparseSwitchStmt(op, a, keys, labels);
} else {
  int size = sshort(insns, u1SwitchData + 2);
com.googlecode.d2j.visitorsDexCodeVisitorvisitSparseSwitchStmt

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
  • visitPackedSwitchStmt
  • 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
  • visitStmt3R,
  • visitTypeStmt,
  • visitDebug,
  • visitFillArrayDataStmt,
  • visitJumpStmt,
  • visitStmt2R1N,
  • visitTryCatch,
  • visitFilledNewArrayStmt

Popular in Java

  • Finding current android device location
  • runOnUiThread (Activity)
  • scheduleAtFixedRate (ScheduledExecutorService)
  • getSystemService (Context)
  • Font (java.awt)
    The Font class represents fonts, which are used to render text in a visible way. A font provides the
  • FileReader (java.io)
    A specialized Reader that reads from a file in the file system. All read requests made by calling me
  • InputStream (java.io)
    A readable source of bytes.Most clients will use input streams that read data from the file system (
  • Socket (java.net)
    Provides a client-side TCP socket.
  • TreeMap (java.util)
    Walk the nodes of the tree left-to-right or right-to-left. Note that in descending iterations, next
  • SAXParseException (org.xml.sax)
    Encapsulate an XML parse error or warning.> This module, both source code and documentation, is in t
  • From CI to AI: The AI layer in your organization
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