Tabnine Logo
Instruction10t
Code IndexAdd Tabnine to your IDE (free)

How to use
Instruction10t
in
org.jf.dexlib2.iface.instruction.formats

Best Java code snippets using org.jf.dexlib2.iface.instruction.formats.Instruction10t (Showing top 13 results out of 315)

origin: Tencent/tinker

@Nonnull
private BuilderInstruction10t newBuilderInstruction10t(int codeAddress, int[] codeAddressToIndex,
                            @Nonnull Instruction10t instruction) {
  return new BuilderInstruction10t(
      instruction.getOpcode(),
      newLabel(codeAddressToIndex, codeAddress + instruction.getCodeOffset()));
}
origin: wala/WALA

  break;
case GOTO:
  instructions.add(new Goto(instLoc, ((Instruction10t)inst).getCodeOffset(), inst.getOpcode(), this));
  break;
case GOTO_16:
origin: com.ibm.wala/com.ibm.wala.dalvik

  break;
case GOTO:
  instructions.add(new Goto(instLoc, ((Instruction10t)inst).getCodeOffset(), inst.getOpcode(), this));
  break;
case GOTO_16:
origin: testwhat/SmaliEx

public static ImmutableInstruction10t of(Instruction10t instruction) {
  if (instruction instanceof ImmutableInstruction10t) {
    return (ImmutableInstruction10t)instruction;
  }
  return new ImmutableInstruction10t(
      instruction.getOpcode(),
      instruction.getCodeOffset());
}
origin: org.smali/dexlib2

public static ImmutableInstruction10t of(Instruction10t instruction) {
  if (instruction instanceof ImmutableInstruction10t) {
    return (ImmutableInstruction10t)instruction;
  }
  return new ImmutableInstruction10t(
      instruction.getOpcode(),
      instruction.getCodeOffset());
}
origin: KB5201314/ZjDroid

public static ImmutableInstruction10t of(Instruction10t instruction) {
  if (instruction instanceof ImmutableInstruction10t) {
    return (ImmutableInstruction10t)instruction;
  }
  return new ImmutableInstruction10t(
      instruction.getOpcode(),
      instruction.getCodeOffset());
}
origin: com.tencent.tinker/tinker-patch-lib

@Nonnull
private BuilderInstruction10t newBuilderInstruction10t(int codeAddress, int[] codeAddressToIndex,
                            @Nonnull Instruction10t instruction) {
  return new BuilderInstruction10t(
      instruction.getOpcode(),
      newLabel(codeAddressToIndex, codeAddress + instruction.getCodeOffset()));
}
origin: testwhat/SmaliEx

@Nonnull
private BuilderInstruction10t newBuilderInstruction10t(int codeAddress, int[] codeAddressToIndex,
                            @Nonnull Instruction10t instruction) {
  return new BuilderInstruction10t(
      instruction.getOpcode(),
      newLabel(codeAddressToIndex, codeAddress + instruction.getCodeOffset()));
}
origin: org.smali/dexlib2

@Nonnull
private BuilderInstruction10t newBuilderInstruction10t(int codeAddress, int[] codeAddressToIndex,
                            @Nonnull Instruction10t instruction) {
  return new BuilderInstruction10t(
      instruction.getOpcode(),
      newLabel(codeAddressToIndex, codeAddress + instruction.getCodeOffset()));
}
origin: KB5201314/ZjDroid

public void write(@Nonnull Instruction10t instruction) {
  try {
    writer.write(instruction.getOpcode().value);
    writer.write(instruction.getCodeOffset());
  } catch (IOException ex) {
    throw new RuntimeException(ex);
  }
}
origin: KB5201314/ZjDroid

@Nonnull
private BuilderInstruction10t newBuilderInstruction10t(int codeAddress, int[] codeAddressToIndex,
                            @Nonnull Instruction10t instruction) {
  return new BuilderInstruction10t(
      instruction.getOpcode(),
      newLabel(codeAddressToIndex, codeAddress + instruction.getCodeOffset()));
}
origin: testwhat/SmaliEx

public void write(@Nonnull Instruction10t instruction) {
  try {
    writer.write(getOpcodeValue(instruction.getOpcode()));
    writer.write(instruction.getCodeOffset());
  } catch (IOException ex) {
    throw new RuntimeException(ex);
  }
}
origin: org.smali/dexlib2

public void write(@Nonnull Instruction10t instruction) {
  try {
    writer.write(getOpcodeValue(instruction.getOpcode()));
    writer.write(instruction.getCodeOffset());
  } catch (IOException ex) {
    throw new RuntimeException(ex);
  }
}
org.jf.dexlib2.iface.instruction.formatsInstruction10t

Most used methods

  • getCodeOffset
  • getOpcode

Popular in Java

  • Reading from database using SQL prepared statement
  • startActivity (Activity)
  • setScale (BigDecimal)
  • notifyDataSetChanged (ArrayAdapter)
  • Thread (java.lang)
    A thread is a thread of execution in a program. The Java Virtual Machine allows an application to ha
  • ServerSocket (java.net)
    This class represents a server-side socket that waits for incoming client connections. A ServerSocke
  • Hashtable (java.util)
    A plug-in replacement for JDK1.5 java.util.Hashtable. This version is based on org.cliffc.high_scale
  • DataSource (javax.sql)
    An interface for the creation of Connection objects which represent a connection to a database. This
  • StringUtils (org.apache.commons.lang)
    Operations on java.lang.String that arenull safe. * IsEmpty/IsBlank - checks if a String contains
  • DateTimeFormat (org.joda.time.format)
    Factory that creates instances of DateTimeFormatter from patterns and styles. Datetime formatting i
  • Top PhpStorm plugins
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