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

How to use
BuilderInstruction31c
in
org.jf.dexlib2.builder.instruction

Best Java code snippets using org.jf.dexlib2.builder.instruction.BuilderInstruction31c (Showing top 11 results out of 315)

origin: Tencent/tinker

@Nonnull
private BuilderInstruction31c newBuilderInstruction31c(@Nonnull Instruction31c instruction) {
  return new BuilderInstruction31c(
      instruction.getOpcode(),
      instruction.getRegisterA(),
      convertReference(instruction.getReference()));
}
origin: JesusFreke/smali

private void fixInstructions(@Nonnull MutableMethodImplementation methodImplementation) {
  List<? extends Instruction> instructions = methodImplementation.getInstructions();
  for (int i=0; i<instructions.size(); i++) {
    Instruction instruction = instructions.get(i);
    if (instruction.getOpcode() == Opcode.CONST_STRING) {
      if (stringSection.getItemIndex(
          (StringRef)((ReferenceInstruction)instruction).getReference()) >= 65536) {
        methodImplementation.replaceInstruction(i, new BuilderInstruction31c(Opcode.CONST_STRING_JUMBO,
            ((OneRegisterInstruction)instruction).getRegisterA(),
            ((ReferenceInstruction)instruction).getReference()));
      }
    }
  }
}
origin: JesusFreke/smali

short regA = parseRegister_byte((REGISTER166!=null?REGISTER166.getText():null));
method_stack.peek().methodBuilder.addInstruction(new BuilderInstruction31c(opcode, regA,
    dexBuilder.internStringReference(string_literal167)));
origin: testwhat/SmaliEx

@Nonnull
private BuilderInstruction31c newBuilderInstruction31c(@Nonnull Instruction31c instruction) {
  return new BuilderInstruction31c(
      instruction.getOpcode(),
      instruction.getRegisterA(),
      instruction.getReference());
}
origin: org.smali/dexlib2

@Nonnull
private BuilderInstruction31c newBuilderInstruction31c(@Nonnull Instruction31c instruction) {
  return new BuilderInstruction31c(
      instruction.getOpcode(),
      instruction.getRegisterA(),
      instruction.getReference());
}
origin: KB5201314/ZjDroid

@Nonnull
private BuilderInstruction31c newBuilderInstruction31c(@Nonnull Instruction31c instruction) {
  return new BuilderInstruction31c(
      instruction.getOpcode(),
      instruction.getRegisterA(),
      instruction.getReference());
}
origin: com.tencent.tinker/tinker-patch-lib

@Nonnull
private BuilderInstruction31c newBuilderInstruction31c(@Nonnull Instruction31c instruction) {
  return new BuilderInstruction31c(
      instruction.getOpcode(),
      instruction.getRegisterA(),
      convertReference(instruction.getReference()));
}
origin: org.smali/dexlib2

private void fixInstructions(@Nonnull MutableMethodImplementation methodImplementation) {
  List<? extends Instruction> instructions = methodImplementation.getInstructions();
  for (int i=0; i<instructions.size(); i++) {
    Instruction instruction = instructions.get(i);
    if (instruction.getOpcode() == Opcode.CONST_STRING) {
      if (stringSection.getItemIndex(
          (StringRef)((ReferenceInstruction)instruction).getReference()) >= 65536) {
        methodImplementation.replaceInstruction(i, new BuilderInstruction31c(Opcode.CONST_STRING_JUMBO,
            ((OneRegisterInstruction)instruction).getRegisterA(),
            ((ReferenceInstruction)instruction).getReference()));
      }
    }
  }
}
origin: KB5201314/ZjDroid

private void fixInstructions(@Nonnull MutableMethodImplementation methodImplementation) {
  List<? extends Instruction> instructions = methodImplementation.getInstructions();
  for (int i=0; i<instructions.size(); i++) {
    Instruction instruction = instructions.get(i);
    if (instruction.getOpcode() == Opcode.CONST_STRING) {
      if (stringSection.getItemIndex(
          (StringRef)((ReferenceInstruction)instruction).getReference()) >= 65536) {
        methodImplementation.replaceInstruction(i, new BuilderInstruction31c(Opcode.CONST_STRING_JUMBO,
            ((OneRegisterInstruction)instruction).getRegisterA(),
            ((ReferenceInstruction)instruction).getReference()));
      }
    }
  }
}
origin: KB5201314/ZjDroid

short regA = parseRegister_byte((REGISTER152!=null?REGISTER152.getText():null));
method_stack.peek().methodBuilder.addInstruction(new BuilderInstruction31c(opcode, regA,
    dexBuilder.internStringReference(string_literal153)));
origin: org.smali/smali

short regA = parseRegister_byte((REGISTER166!=null?REGISTER166.getText():null));
method_stack.peek().methodBuilder.addInstruction(new BuilderInstruction31c(opcode, regA,
    dexBuilder.internStringReference(string_literal167)));
org.jf.dexlib2.builder.instructionBuilderInstruction31c

Most used methods

  • <init>

Popular in Java

  • Creating JSON documents from java classes using gson
  • getContentResolver (Context)
  • compareTo (BigDecimal)
  • notifyDataSetChanged (ArrayAdapter)
  • Component (java.awt)
    A component is an object having a graphical representation that can be displayed on the screen and t
  • BufferedImage (java.awt.image)
    The BufferedImage subclass describes an java.awt.Image with an accessible buffer of image data. All
  • UnknownHostException (java.net)
    Thrown when a hostname can not be resolved.
  • NumberFormat (java.text)
    The abstract base class for all number formats. This class provides the interface for formatting and
  • SortedMap (java.util)
    A map that has its keys ordered. The sorting is according to either the natural ordering of its keys
  • Timer (java.util)
    Timers schedule one-shot or recurring TimerTask for execution. Prefer java.util.concurrent.Scheduled
  • Top 17 PhpStorm Plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

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