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

  /dalvik/dexgen/src/com/android/dexgen/dex/file/
ClassDefsSection.java 38 private final TreeMap<Type, ClassDefItem> classDefs;
51 classDefs = new TreeMap<Type, ClassDefItem>();
62 return classDefs.values();
75 IndexedItem result = classDefs.get(type);
92 int sz = classDefs.size();
122 if (classDefs.get(type) != null) {
126 classDefs.put(type, clazz);
132 int sz = classDefs.size();
143 for (Type type : classDefs.keySet()) {
159 ClassDefItem c = classDefs.get(type)
    [all...]
DexFile.java 80 private final ClassDefsSection classDefs;
119 classDefs = new ClassDefsSection(this);
128 classDefs, wordData, typeLists, stringData, byteData,
142 classDefs.add(clazz);
155 return (ClassDefItem) classDefs.get(new CstType(type));
308 return classDefs;
483 classDefs.prepare();
  /dalvik/dx/src/com/android/dx/dex/file/
ClassDefsSection.java 37 private final TreeMap<Type, ClassDefItem> classDefs;
50 classDefs = new TreeMap<Type, ClassDefItem>();
61 return classDefs.values();
74 IndexedItem result = classDefs.get(type);
91 int sz = classDefs.size();
121 if (classDefs.get(type) != null) {
125 classDefs.put(type, clazz);
131 int sz = classDefs.size();
142 for (Type type : classDefs.keySet()) {
158 ClassDefItem c = classDefs.get(type)
    [all...]
DexFile.java 83 private final ClassDefsSection classDefs;
124 classDefs = new ClassDefsSection(this);
133 classDefs, wordData, typeLists, stringData, byteData,
144 return classDefs.items().isEmpty();
161 classDefs.add(clazz);
174 return (ClassDefItem) classDefs.get(new CstType(type));
327 return classDefs;
500 classDefs.prepare();
  /external/dexmaker/src/dx/java/com/android/dx/dex/file/
ClassDefsSection.java 38 private final TreeMap<Type, ClassDefItem> classDefs;
51 classDefs = new TreeMap<Type, ClassDefItem>();
62 return classDefs.values();
75 IndexedItem result = classDefs.get(type);
92 int sz = classDefs.size();
122 if (classDefs.get(type) != null) {
126 classDefs.put(type, clazz);
132 int sz = classDefs.size();
143 for (Type type : classDefs.keySet()) {
159 ClassDefItem c = classDefs.get(type)
    [all...]
DexFile.java 85 private final ClassDefsSection classDefs;
126 classDefs = new ClassDefsSection(this);
135 classDefs, wordData, typeLists, stringData, byteData,
146 return classDefs.items().isEmpty();
163 classDefs.add(clazz);
176 return (ClassDefItem) classDefs.get(new CstType(type));
329 return classDefs;
502 classDefs.prepare();
  /external/smali/baksmali/src/main/java/org/jf/baksmali/
baksmali.java 130 List<? extends ClassDef> classDefs = Ordering.natural().sortedCopy(dexFile.getClasses());
133 options.syntheticAccessorResolver = new SyntheticAccessorResolver(classDefs);
141 for (final ClassDef classDef: classDefs) {
  /libcore/dex/src/main/java/com/android/dex/
TableOfContents.java 38 public final Section classDefs = new Section(0x0006);
51 header, stringIds, typeIds, protoIds, fieldIds, methodIds, classDefs, mapList,
109 classDefs.size = headerIn.readInt();
110 classDefs.off = headerIn.readInt();
186 out.writeInt(classDefs.size);
187 out.writeInt(classDefs.off);
Dex.java 255 public Iterable<ClassDef> classDefs() {
362 if (!tableOfContents.classDefs.exists()) {
365 for (int i = 0; i < tableOfContents.classDefs.size; i++) {
466 checkBounds(classDefIndex, tableOfContents.classDefs.size);
467 int position = tableOfContents.classDefs.off + (SizeOf.CLASS_DEF_ITEM * classDefIndex);
475 checkBounds(classDefIndex, tableOfContents.classDefs.size);
476 int position = tableOfContents.classDefs.off + (SizeOf.CLASS_DEF_ITEM * classDefIndex);
490 checkBounds(classDefIndex, tableOfContents.classDefs.size);
491 int position = tableOfContents.classDefs.off + (SizeOf.CLASS_DEF_ITEM * classDefIndex);
    [all...]
  /prebuilts/sdk/tools/darwin/lib/
dx.jar 
  /prebuilts/sdk/tools/lib/
dx.jar 
  /prebuilts/tools/common/m2/repository/com/google/dexmaker/dexmaker/1.0/
dexmaker-1.0.jar 

Completed in 255 milliseconds