congrats Icon
New! Tabnine Pro 14-day free trial
Start a free trial
Tabnine Logo
DexData$ClassDefItem.<init>
Code IndexAdd Tabnine to your IDE (free)

How to use
com.android.dexdeps.DexData$ClassDefItem
constructor

Best Java code snippets using com.android.dexdeps.DexData$ClassDefItem.<init> (Showing top 5 results out of 315)

origin: timmutton/redex-plugin

/**
 * Loads the class defs list.
 */
void loadClassDefs() throws IOException {
  int count = mHeaderItem.classDefsSize;
  mClassDefs = new ClassDefItem[count];
  //System.out.println("reading " + count + " classDefs");
  seek(mHeaderItem.classDefsOff);
  for (int i = 0; i < count; i++) {
    mClassDefs[i] = new ClassDefItem();
    mClassDefs[i].classIdx = readInt();
    /* access_flags = */ readInt();
    /* superclass_idx = */ readInt();
    /* interfaces_off = */ readInt();
    /* source_file_idx = */ readInt();
    /* annotations_off = */ readInt();
    /* class_data_off = */ readInt();
    /* static_values_off = */ readInt();
    //System.out.println(i + ": " + mClassDefs[i].classIdx + " " +
    //    mStrings[mTypeIds[mClassDefs[i].classIdx].descriptorIdx]);
  }
}
origin: gradle.plugin.net.siggijons.dex/dex-methods

/**
 * Loads the class defs list.
 */
void loadClassDefs() throws IOException {
  int count = mHeaderItem.classDefsSize;
  mClassDefs = new ClassDefItem[count];
  //System.out.println("reading " + count + " classDefs");
  seek(mHeaderItem.classDefsOff);
  for (int i = 0; i < count; i++) {
    mClassDefs[i] = new ClassDefItem();
    mClassDefs[i].classIdx = readInt();
    /* access_flags = */ readInt();
    /* superclass_idx = */ readInt();
    /* interfaces_off = */ readInt();
    /* source_file_idx = */ readInt();
    /* annotations_off = */ readInt();
    /* class_data_off = */ readInt();
    /* static_values_off = */ readInt();
    //System.out.println(i + ": " + mClassDefs[i].classIdx + " " +
    //    mStrings[mTypeIds[mClassDefs[i].classIdx].descriptorIdx]);
  }
}
origin: com.github.spyhunter99/dex-method-counts-lib

/**
 * Loads the class defs list.
 */
void loadClassDefs() throws IOException {
  int count = mHeaderItem.classDefsSize;
  mClassDefs = new ClassDefItem[count];
  //System.out.println("reading " + count + " classDefs");
  seek(mHeaderItem.classDefsOff);
  for (int i = 0; i < count; i++) {
    mClassDefs[i] = new ClassDefItem();
    mClassDefs[i].classIdx = readInt();
    /* access_flags = */ readInt();
    /* superclass_idx = */ readInt();
    /* interfaces_off = */ readInt();
    /* source_file_idx = */ readInt();
    /* annotations_off = */ readInt();
    /* class_data_off = */ readInt();
    /* static_values_off = */ readInt();
    //System.out.println(i + ": " + mClassDefs[i].classIdx + " " +
    //    mStrings[mTypeIds[mClassDefs[i].classIdx].descriptorIdx]);
  }
}
origin: CaMnter/AndroidLife

/**
 * Loads the class defs list.
 */
void loadClassDefs() throws IOException {
  int count = mHeaderItem.classDefsSize;
  mClassDefs = new ClassDefItem[count];
  //System.out.println("reading " + count + " classDefs");
  seek(mHeaderItem.classDefsOff);
  for (int i = 0; i < count; i++) {
    mClassDefs[i] = new ClassDefItem();
    mClassDefs[i].classIdx = readInt();
    /* access_flags = */
    readInt();
    /* superclass_idx = */
    readInt();
    /* interfaces_off = */
    readInt();
    /* source_file_idx = */
    readInt();
    /* annotations_off = */
    readInt();
    /* class_data_off = */
    readInt();
    /* static_values_off = */
    readInt();
    //System.out.println(i + ": " + mClassDefs[i].classIdx + " " +
    //    mStrings[mTypeIds[mClassDefs[i].classIdx].descriptorIdx]);
  }
}
origin: com.sloydev/dex-method-counts

/**
 * Loads the class defs list.
 */
void loadClassDefs() throws IOException {
  int count = mHeaderItem.classDefsSize;
  mClassDefs = new ClassDefItem[count];
  //System.out.println("reading " + count + " classDefs");
  seek(mHeaderItem.classDefsOff);
  for (int i = 0; i < count; i++) {
    mClassDefs[i] = new ClassDefItem();
    mClassDefs[i].classIdx = readInt();
    /* access_flags = */ readInt();
    /* superclass_idx = */ readInt();
    /* interfaces_off = */ readInt();
    /* source_file_idx = */ readInt();
    /* annotations_off = */ readInt();
    /* class_data_off = */ readInt();
    /* static_values_off = */ readInt();
    //System.out.println(i + ": " + mClassDefs[i].classIdx + " " +
    //    mStrings[mTypeIds[mClassDefs[i].classIdx].descriptorIdx]);
  }
}
com.android.dexdepsDexData$ClassDefItem<init>

Popular methods of DexData$ClassDefItem

    Popular in Java

    • Creating JSON documents from java classes using gson
    • getExternalFilesDir (Context)
    • scheduleAtFixedRate (ScheduledExecutorService)
    • onCreateOptionsMenu (Activity)
    • Point (java.awt)
      A point representing a location in (x,y) coordinate space, specified in integer precision.
    • InputStreamReader (java.io)
      A class for turning a byte stream into a character stream. Data read from the source input stream is
    • SimpleDateFormat (java.text)
      Formats and parses dates in a locale-sensitive manner. Formatting turns a Date into a String, and pa
    • SSLHandshakeException (javax.net.ssl)
      The exception that is thrown when a handshake could not be completed successfully.
    • JButton (javax.swing)
    • Options (org.apache.commons.cli)
      Main entry-point into the library. Options represents a collection of Option objects, which describ
    • 21 Best Atom Packages for 2021
    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