Codota Logo
MethodIdItem.<init>
Code IndexAdd Codota to your IDE (free)

How to use
org.jf.dexlib.MethodIdItem
constructor

Best Java code snippets using org.jf.dexlib.MethodIdItem.<init> (Showing top 6 results out of 315)

  • Add the Codota plugin to your IDE and get smart completions
private void myMethod () {
List l =
  • Codota Iconnew LinkedList()
  • Codota IconCollections.emptyList()
  • Codota Iconnew ArrayList()
  • Smart code suggestions by Codota
}
origin: sonyxperiadev/ApkAnalyser

/**
 * Returns a <code>MethodIdItem</code> for the given values, and that has been interned into
 * the given <code>DexFile</code>
 * @param dexFile The <code>DexFile</code> that this item belongs to
 * @param classType the class that the method is a member of
 * @param methodPrototype the type of the method
 * @param methodName the name of the method
 * @return a <code>MethodIdItem</code> for the given values, and that has been interned into
 * the given <code>DexFile</code>
 */
public static MethodIdItem internMethodIdItem(DexFile dexFile, TypeIdItem classType,
                          ProtoIdItem methodPrototype, StringIdItem methodName) {
  MethodIdItem methodIdItem = new MethodIdItem(dexFile, classType, methodPrototype, methodName);
  return dexFile.MethodIdsSection.intern(methodIdItem);
}
origin: sonyxperiadev/ApkAnalyser

/**
 * Looks up a <code>MethodIdItem</code> from the given <code>DexFile</code> for the given
 * values
 * @param dexFile The <code>DexFile</code> that this item belongs to
 * @param classType the class that the method is a member of
 * @param methodPrototype the type of the method
 * @param methodName the name of the method
 * @return a <code>MethodIdItem</code> from the given <code>DexFile</code> for the given
 * values, or null if it doesn't exist
 */
public static MethodIdItem lookupMethodIdItem(DexFile dexFile, TypeIdItem classType,
                          ProtoIdItem methodPrototype, StringIdItem methodName) {
  MethodIdItem methodIdItem = new MethodIdItem(dexFile, classType, methodPrototype, methodName);
  return dexFile.MethodIdsSection.getInternedItem(methodIdItem);
}
origin: sonyxperiadev/ApkAnalyser

  return new FieldIdItem(dexFile);
case TYPE_METHOD_ID_ITEM:
  return new MethodIdItem(dexFile);
case TYPE_CLASS_DEF_ITEM:
  return new ClassDefItem(dexFile);
origin: org.smali/dexlib

/**
 * Returns a <code>MethodIdItem</code> for the given values, and that has been interned into
 * the given <code>DexFile</code>
 * @param dexFile The <code>DexFile</code> that this item belongs to
 * @param classType the class that the method is a member of
 * @param methodPrototype the type of the method
 * @param methodName the name of the method
 * @return a <code>MethodIdItem</code> for the given values, and that has been interned into
 * the given <code>DexFile</code>
 */
public static MethodIdItem internMethodIdItem(DexFile dexFile, TypeIdItem classType,
                          ProtoIdItem methodPrototype, StringIdItem methodName) {
  MethodIdItem methodIdItem = new MethodIdItem(dexFile, classType, methodPrototype, methodName);
  return dexFile.MethodIdsSection.intern(methodIdItem);
}
origin: org.smali/dexlib

/**
 * Looks up a <code>MethodIdItem</code> from the given <code>DexFile</code> for the given
 * values
 * @param dexFile The <code>DexFile</code> that this item belongs to
 * @param classType the class that the method is a member of
 * @param methodPrototype the type of the method
 * @param methodName the name of the method
 * @return a <code>MethodIdItem</code> from the given <code>DexFile</code> for the given
 * values, or null if it doesn't exist
 */
public static MethodIdItem lookupMethodIdItem(DexFile dexFile, TypeIdItem classType,
                          ProtoIdItem methodPrototype, StringIdItem methodName) {
  MethodIdItem methodIdItem = new MethodIdItem(dexFile, classType, methodPrototype, methodName);
  return dexFile.MethodIdsSection.getInternedItem(methodIdItem);
}
origin: org.smali/dexlib

  return new FieldIdItem(dexFile);
case TYPE_METHOD_ID_ITEM:
  return new MethodIdItem(dexFile);
case TYPE_CLASS_DEF_ITEM:
  return new ClassDefItem(dexFile);
org.jf.dexlibMethodIdItem<init>

Javadoc

Creates a new uninitialized MethodIdItem

Popular methods of MethodIdItem

  • getMethodName
  • calcHashCode
    calculate and cache the hashcode
  • compareTo
  • getContainingClass
  • getDexFile
  • getIndex
  • getMethodString
  • getPrototype
  • hashCode
  • lookupMethodIdItem
    Looks up a MethodIdItem from the given DexFile for the given values
  • getShortMethodString
  • getVirtualMethodString
  • getShortMethodString,
  • getVirtualMethodString

Popular in Java

  • Finding current android device location
  • getSystemService (Context)
  • getSharedPreferences (Context)
  • onCreateOptionsMenu (Activity)
  • HttpServer (com.sun.net.httpserver)
    This class implements a simple HTTP server. A HttpServer is bound to an IP address and port number a
  • NumberFormat (java.text)
    The abstract base class for all number formats. This class provides the interface for formatting and
  • ArrayList (java.util)
    Resizable-array implementation of the List interface. Implements all optional list operations, and p
  • Hashtable (java.util)
    Hashtable is a synchronized implementation of Map. All optional operations are supported.Neither key
  • Queue (java.util)
    A collection designed for holding elements prior to processing. Besides basic java.util.Collection o
  • JFileChooser (javax.swing)
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now