Searched defs:thisClass (Results 1 - 6 of 6) sorted by relevance

/dalvik/dx/src/com/android/dx/dex/cf/
H A DAttributeTranslator.java120 CstType thisClass = cf.getThisClass();
127 translateInnerClasses(thisClass, attribs,
279 * @param thisClass {@code non-null;} type representing the class being
287 private static Annotations translateInnerClasses(CstType thisClass, argument
309 if (innerClass.equals(thisClass)) {
311 } else if (thisClass.equals(item.getOuterClass())) {
334 "(" + thisClass.toHuman() +
414 CstType thisClass = cf.getThisClass();
418 new Annotation(thisClass, AnnotationVisibility.EMBEDDED);
/dalvik/dexgen/src/com/android/dexgen/dex/file/
H A DClassDataItem.java45 private final CstType thisClass; field in class:ClassDataItem
75 * @param thisClass {@code non-null;} what class this data is for, just
78 public ClassDataItem(CstType thisClass) { argument
81 if (thisClass == null) {
82 throw new NullPointerException("thisClass == null");
85 this.thisClass = thisClass;
348 thisClass.toHuman());
H A DClassDefItem.java49 private final CstType thisClass; field in class:ClassDefItem
82 * @param thisClass {@code non-null;} type constant for this class
90 public ClassDefItem(CstType thisClass, int accessFlags, argument
92 if (thisClass == null) {
93 throw new NullPointerException("thisClass == null");
105 this.thisClass = thisClass;
111 this.classData = new ClassDataItem(thisClass);
137 typeIds.intern(thisClass);
176 int classIdx = typeIds.indexOf(thisClass);
[all...]
/dalvik/dx/src/com/android/dx/cf/direct/
H A DDirectClassFile.java115 private CstType thisClass; field in class:DirectClassFile
285 return thisClass;
525 thisClass = (CstType) pool.get(cpi);
534 observer.parsed(bytes, at + 2, 2, "this_class: " + thisClass);
553 String thisClassName = thisClass.getClassType().getClassName();
571 new FieldListParser(this, thisClass, at, attributeFactory);
577 new MethodListParser(this, thisClass, at, attributeFactory);
/dalvik/dx/src/com/android/dx/dex/file/
H A DClassDataItem.java41 private final CstType thisClass; field in class:ClassDataItem
71 * @param thisClass {@code non-null;} what class this data is for, just
74 public ClassDataItem(CstType thisClass) { argument
77 if (thisClass == null) {
78 throw new NullPointerException("thisClass == null");
81 this.thisClass = thisClass;
344 thisClass.toHuman());
H A DClassDefItem.java46 private final CstType thisClass; field in class:ClassDefItem
79 * @param thisClass {@code non-null;} type constant for this class
87 public ClassDefItem(CstType thisClass, int accessFlags, argument
89 if (thisClass == null) {
90 throw new NullPointerException("thisClass == null");
102 this.thisClass = thisClass;
108 this.classData = new ClassDataItem(thisClass);
134 typeIds.intern(thisClass);
173 int classIdx = typeIds.indexOf(thisClass);
[all...]

Completed in 93 milliseconds