Home
last modified time | relevance | path

Searched refs:thisClass (Results 1 – 7 of 7) sorted by relevance

/dalvik/dexgen/src/com/android/dexgen/dex/file/
DClassDefItem.java49 private final CstType thisClass; field in ClassDefItem
90 public ClassDefItem(CstType thisClass, int accessFlags, in ClassDefItem() argument
92 if (thisClass == null) { in ClassDefItem()
105 this.thisClass = thisClass; in ClassDefItem()
111 this.classData = new ClassDataItem(thisClass); in ClassDefItem()
137 typeIds.intern(thisClass); in addContents()
176 int classIdx = typeIds.indexOf(thisClass); in writeTo()
189 out.annotate(0, indexString() + ' ' + thisClass.toHuman()); in writeTo()
229 return thisClass; in getThisClass()
DClassDataItem.java45 private final CstType thisClass; field in ClassDataItem
78 public ClassDataItem(CstType thisClass) { in ClassDataItem() argument
81 if (thisClass == null) { in ClassDataItem()
85 this.thisClass = thisClass; in ClassDataItem()
348 thisClass.toHuman()); in encodeOutput()
/dalvik/dx/src/com/android/dx/dex/file/
DClassDefItem.java47 private final CstType thisClass; field in ClassDefItem
88 public ClassDefItem(CstType thisClass, int accessFlags, in ClassDefItem() argument
90 if (thisClass == null) { in ClassDefItem()
103 this.thisClass = thisClass; in ClassDefItem()
109 this.classData = new ClassDataItem(thisClass); in ClassDefItem()
135 typeIds.intern(thisClass); in addContents()
174 int classIdx = typeIds.indexOf(thisClass); in writeTo()
187 out.annotate(0, indexString() + ' ' + thisClass.toHuman()); in writeTo()
227 return thisClass; in getThisClass()
DClassDataItem.java41 private final CstType thisClass; field in ClassDataItem
74 public ClassDataItem(CstType thisClass) { in ClassDataItem() argument
77 if (thisClass == null) { in ClassDataItem()
81 this.thisClass = thisClass; in ClassDataItem()
344 thisClass.toHuman()); in encodeOutput()
/dalvik/dx/src/com/android/dx/dex/cf/
DAttributeTranslator.java114 CstType thisClass = cf.getThisClass(); in getClassAnnotations() local
121 translateInnerClasses(thisClass, attribs, in getClassAnnotations()
269 private static Annotations translateInnerClasses(CstType thisClass, in translateInnerClasses() argument
291 if (innerClass.equals(thisClass)) { in translateInnerClasses()
293 } else if (thisClass.equals(item.getOuterClass())) { in translateInnerClasses()
316 "(" + thisClass.toHuman() + in translateInnerClasses()
396 CstType thisClass = cf.getThisClass(); in translateAnnotationDefaults() local
400 new Annotation(thisClass, AnnotationVisibility.EMBEDDED); in translateAnnotationDefaults()
DCfTranslator.java120 CstType thisClass = cf.getThisClass(); in translate0() local
125 new ClassDefItem(thisClass, classAccessFlags, in translate0()
168 CstType thisClass = cf.getThisClass(); in processFields() local
175 CstFieldRef field = new CstFieldRef(thisClass, one.getNat()); in processFields()
250 CstType thisClass = cf.getThisClass(); in processMethods() local
257 CstMethodRef meth = new CstMethodRef(thisClass, one.getNat()); in processMethods()
287 = thisClass.getClassType().getDescriptor() in processMethods()
/dalvik/dx/src/com/android/dx/cf/direct/
DDirectClassFile.java111 private CstType thisClass; field in DirectClassFile
276 return thisClass; in getThisClass()
488 thisClass = (CstType) pool.get(cpi); in parse0()
497 observer.parsed(bytes, at + 2, 2, "this_class: " + thisClass); in parse0()
516 String thisClassName = thisClass.getClassType().getClassName(); in parse0()
534 new FieldListParser(this, thisClass, at, attributeFactory); in parse0()
540 new MethodListParser(this, thisClass, at, attributeFactory); in parse0()