Tabnine Logo
IndentingWriter.printSignedIntAsDec
Code IndexAdd Tabnine to your IDE (free)

How to use
printSignedIntAsDec
method
in
org.jf.util.IndentingWriter

Best Java code snippets using org.jf.util.IndentingWriter.printSignedIntAsDec (Showing top 20 results out of 315)

origin: JesusFreke/smali

  protected void writeVtableIndex(IndentingWriter writer) throws IOException {
    writer.write("vtable@");
    writer.printSignedIntAsDec(((VtableIndexInstruction)instruction).getVtableIndex());
  }
}
origin: JesusFreke/smali

protected void writeInlineIndex(IndentingWriter writer) throws IOException {
  writer.write("inline@");
  writer.printSignedIntAsDec(((InlineIndexInstruction)instruction).getInlineIndex());
}
origin: JesusFreke/smali

if ((options.debugInfo && parameterName != null) || annotations.size() != 0) {
  writer.write(".param p");
  writer.printSignedIntAsDec(registerNumber);
origin: JesusFreke/smali

if (classDef.options.localsDirective) {
  writer.write(".locals ");
  writer.printSignedIntAsDec(methodImpl.getRegisterCount() - parameterRegisterCount);
} else {
  writer.write(".registers ");
  writer.printSignedIntAsDec(methodImpl.getRegisterCount());
origin: JesusFreke/smali

if (verificationErrorName == null) {
  writer.write("#was invalid verification error type: ");
  writer.printSignedIntAsDec(verificationError);
  writer.write("\n");
  verificationErrorName = "generic-error";
} catch (ReferenceType.InvalidReferenceTypeException ex) {
  writer.write("#invalid reference type: ");
  writer.printSignedIntAsDec(ex.getReferenceType());
  commentOutInstruction = true;
  referenceWritable = indentingWriter -> writer.write("invalid_reference");
  } catch (ReferenceType.InvalidReferenceTypeException ex) {
    writer.write("#invalid reference type: ");
    writer.printSignedIntAsDec(ex.getReferenceType());
    commentOutInstruction = true;
    referenceWritable2 = indentingWriter -> indentingWriter.write("invalid reference");
origin: testwhat/SmaliEx

  public void writeTargetTo(IndentingWriter writer) throws IOException {
    if (target >= 0) {
      writer.write('+');
    }
    writer.printSignedIntAsDec(target);
  }
}
origin: KB5201314/ZjDroid

  public void writeTargetTo(IndentingWriter writer) throws IOException {
    if (target >= 0) {
      writer.write('+');
    }
    writer.printSignedIntAsDec(target);
  }
}
origin: KB5201314/ZjDroid

  public void printUnsignedIntAsDec(int value) throws IOException {
    int bufferIndex = 15;

    if (value < 0) {
      printSignedLongAsDec(value & 0xFFFFFFFFL);
    } else {
      printSignedIntAsDec(value);
    }
  }
}
origin: testwhat/SmaliEx

  public void writeTargetTo(IndentingWriter writer) throws IOException {
    if (target >= 0) {
      writer.write('+');
    }
    writer.printSignedIntAsDec(target);
  }
}
origin: testwhat/SmaliEx

  public void printUnsignedIntAsDec(int value) throws IOException {
    int bufferIndex = 15;

    if (value < 0) {
      printSignedLongAsDec(value & 0xFFFFFFFFL);
    } else {
      printSignedIntAsDec(value);
    }
  }
}
origin: org.smali/dexlib2

  public void printUnsignedIntAsDec(int value) throws IOException {
    int bufferIndex = 15;

    if (value < 0) {
      printSignedLongAsDec(value & 0xFFFFFFFFL);
    } else {
      printSignedIntAsDec(value);
    }
  }
}
origin: org.smali/baksmali

  public void writeTargetTo(IndentingWriter writer) throws IOException {
    if (target >= 0) {
      writer.write('+');
    }
    writer.printSignedIntAsDec(target);
  }
}
origin: com.taobao.android/dex_patch

  public void writeTargetTo(IndentingWriter writer) throws IOException {
    if (target >= 0) {
      writer.write('+');
    }
    writer.printSignedIntAsDec(target);
  }
}
origin: org.smali/baksmali

  public void writeTargetTo(IndentingWriter writer) throws IOException {
    if (target >= 0) {
      writer.write('+');
    }
    writer.printSignedIntAsDec(target);
  }
}
origin: com.taobao.android/dex_patch

  public void writeTargetTo(IndentingWriter writer) throws IOException {
    if (target >= 0) {
      writer.write('+');
    }
    writer.printSignedIntAsDec(target);
  }
}
origin: KB5201314/ZjDroid

  public void writeTargetTo(IndentingWriter writer) throws IOException {
    if (target >= 0) {
      writer.write('+');
    }
    writer.printSignedIntAsDec(target);
  }
}
origin: com.taobao.android/dex_patch

  protected void writeVtableIndex(IndentingWriter writer) throws IOException {
    writer.write("vtable@");
    writer.printSignedIntAsDec(((VtableIndexInstruction) instruction).getVtableIndex());
  }
}
origin: KB5201314/ZjDroid

  protected void writeVtableIndex(IndentingWriter writer) throws IOException {
    writer.write("vtable@");
    writer.printSignedIntAsDec(((VtableIndexInstruction)instruction).getVtableIndex());
  }
}
origin: org.smali/baksmali

  protected void writeVtableIndex(IndentingWriter writer) throws IOException {
    writer.write("vtable@");
    writer.printSignedIntAsDec(((VtableIndexInstruction)instruction).getVtableIndex());
  }
}
origin: com.taobao.android/dex_patch

protected void writeInlineIndex(IndentingWriter writer) throws IOException {
  writer.write("inline@");
  writer.printSignedIntAsDec(((InlineIndexInstruction) instruction).getInlineIndex());
}
org.jf.utilIndentingWriterprintSignedIntAsDec

Popular methods of IndentingWriter

  • <init>
  • write
  • writeIndent
  • deindent
  • indent
  • printUnsignedIntAsDec
  • printUnsignedLongAsHex
  • printSignedLongAsDec
  • writeLine
    Writes out a block of text that contains no newlines
  • close
  • flush
  • flush

Popular in Java

  • Parsing JSON documents to java classes using gson
  • getOriginalFilename (MultipartFile)
    Return the original filename in the client's filesystem.This may contain path information depending
  • onRequestPermissionsResult (Fragment)
  • putExtra (Intent)
  • GridLayout (java.awt)
    The GridLayout class is a layout manager that lays out a container's components in a rectangular gri
  • Calendar (java.util)
    Calendar is an abstract base class for converting between a Date object and a set of integer fields
  • Date (java.util)
    A specific moment in time, with millisecond precision. Values typically come from System#currentTime
  • TimeZone (java.util)
    TimeZone represents a time zone offset, and also figures out daylight savings. Typically, you get a
  • UUID (java.util)
    UUID is an immutable representation of a 128-bit universally unique identifier (UUID). There are mul
  • IOUtils (org.apache.commons.io)
    General IO stream manipulation utilities. This class provides static utility methods for input/outpu
  • Github Copilot alternatives
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