HomeSort by relevance Sort by last modified time
    Searched defs:directMethodCount (Results 1 - 4 of 4) sorted by null

  /external/smali/dexlib/src/main/java/org/jf/dexlib/
ClassDataItem.java 278 int directMethodCount = getDirectMethodCount();
279 out.annotate("direct_methods_size: 0x" + Integer.toHexString(directMethodCount) + " (" +
280 directMethodCount + ")");
281 out.writeUnsignedLeb128(directMethodCount);
    [all...]
  /dalvik/vm/oo/
Object.h 409 int directMethodCount;
Class.cpp     [all...]
  /external/smali/dexlib/src/main/java/org/jf/dexlib/Code/Analysis/
ClassPath.java 706 int directMethodCount = 0;
708 directMethodCount = classInfo.directMethods.length;
710 methodLookup = new HashMap<String, Integer>((int)Math.ceil(((vtable.length + directMethodCount)/ .7f)), .75f);
714 if (directMethodCount > 0) {
    [all...]

Completed in 529 milliseconds