Home
last modified time | relevance | path

Searched refs:ref (Results 1 – 18 of 18) sorted by relevance

/dalvik/dx/src/com/android/dx/dex/file/
DCodeItem.java43 private final CstMethodRef ref; field in CodeItem
76 public CodeItem(CstMethodRef ref, DalvCode code, boolean isStatic, in CodeItem() argument
80 if (ref == null) { in CodeItem()
92 this.ref = ref; in CodeItem()
112 debugInfo = new DebugInfoItem(code, isStatic, ref); in addContents()
137 return ref.toHuman(); in toHuman()
146 return ref; in getRef()
157 out.println(ref.toHuman() + ":"); in debugPrint()
235 out.annotate(0, offsetString() + ' ' + ref.toHuman()); in writeTo0()
295 "instructions for " + ref.toHuman()); in writeCodes()
[all …]
DDebugInfoItem.java40 private final CstMethodRef ref; field in DebugInfoItem
42 public DebugInfoItem(DalvCode code, boolean isStatic, CstMethodRef ref) { in DebugInfoItem() argument
52 this.ref = ref; in DebugInfoItem()
77 "...while placing debug info for " + ref.toHuman()); in place0()
145 DebugInfoDecoder.validateEncode(result, file, ref, code, in encode()
180 file, codeSize, regSize, isStatic, ref); in encode0()
DFieldIdsSection.java122 public int indexOf(CstFieldRef ref) { in indexOf() argument
123 if (ref == null) { in indexOf()
129 FieldIdItem item = fieldIds.get(ref); in indexOf()
DMethodIdsSection.java122 public int indexOf(CstBaseMethodRef ref) { in indexOf() argument
123 if (ref == null) { in indexOf()
129 MethodIdItem item = methodIds.get(ref); in indexOf()
DDebugInfoDecoder.java106 boolean isStatic, CstMethodRef ref, DexFile file) { in DebugInfoDecoder() argument
113 this.desc = ref.getPrototype(); in DebugInfoDecoder()
429 CstMethodRef ref, DalvCode code, boolean isStatic) { in validateEncode() argument
438 isStatic, ref, file, pl, ll); in validateEncode()
445 "while processing " + ref.toHuman()); in validateEncode()
450 int countRegisters, boolean isStatic, CstMethodRef ref, in validateEncode0() argument
454 isStatic, ref, file); in validateEncode0()
DDebugInfoEncoder.java118 boolean isStatic, CstMethodRef ref) { in DebugInfoEncoder() argument
122 this.desc = ref.getPrototype(); in DebugInfoEncoder()
/dalvik/opcode-gen/
Dbytecode.txt63 # type-ref
64 # string-ref
65 # method-ref
66 # field-ref
112 op 1a const-string 21c y string-ref continue|throw
113 op 1b const-string/jumbo 31c y string-ref continue|throw
114 op 1c const-class 21c y type-ref continue|throw
117 op 1f check-cast 21c y type-ref continue|throw
118 op 20 instance-of 22c y type-ref continue|throw
120 op 22 new-instance 21c y type-ref continue|throw
[all …]
/dalvik/dexgen/src/com/android/dexgen/dex/file/
DCodeItem.java52 private final CstMethodRef ref; field in CodeItem
85 public CodeItem(CstMethodRef ref, DalvCode code, boolean isStatic, in CodeItem() argument
89 if (ref == null) { in CodeItem()
101 this.ref = ref; in CodeItem()
121 debugInfo = new DebugInfoItem(code, isStatic, ref); in addContents()
146 return ref.toHuman(); in toHuman()
155 return ref; in getRef()
166 out.println(ref.toHuman() + ":"); in debugPrint()
244 out.annotate(0, offsetString() + ' ' + ref.toHuman()); in writeTo0()
304 "instructions for " + ref.toHuman()); in writeCodes()
[all …]
DDebugInfoItem.java43 private final CstMethodRef ref; field in DebugInfoItem
45 public DebugInfoItem(DalvCode code, boolean isStatic, CstMethodRef ref) { in DebugInfoItem() argument
55 this.ref = ref; in DebugInfoItem()
80 "...while placing debug info for " + ref.toHuman()); in place0()
148 DebugInfoDecoder.validateEncode(result, file, ref, code, in encode()
183 file, codeSize, regSize, isStatic, ref); in encode0()
DMethodIdsSection.java122 public int indexOf(CstBaseMethodRef ref) { in indexOf() argument
123 if (ref == null) { in indexOf()
129 MethodIdItem item = methodIds.get(ref); in indexOf()
DFieldIdsSection.java122 public int indexOf(CstFieldRef ref) { in indexOf() argument
123 if (ref == null) { in indexOf()
129 FieldIdItem item = fieldIds.get(ref); in indexOf()
DDebugInfoDecoder.java95 boolean isStatic, CstMethodRef ref, DexFile file) { in DebugInfoDecoder() argument
102 this.desc = ref.getPrototype(); in DebugInfoDecoder()
425 CstMethodRef ref, DalvCode code, boolean isStatic) { in validateEncode() argument
434 isStatic, ref, file, pl, ll); in validateEncode()
441 "while processing " + ref.toHuman()); in validateEncode()
446 int countRegisters, boolean isStatic, CstMethodRef ref, in validateEncode0() argument
450 isStatic, ref, file); in validateEncode0()
DDebugInfoEncoder.java110 boolean isStatic, CstMethodRef ref) { in DebugInfoEncoder() argument
114 this.desc = ref.getPrototype(); in DebugInfoEncoder()
/dalvik/tools/dexdeps/src/com/android/dexdeps/
DOutput.java105 ClassRef ref = classes[i]; in printClassRefs() local
107 out.println(descriptorToDot(ref.getName())); in printClassRefs()
120 FieldRef ref = fields[j]; in printFieldRefs() local
122 out.println(descriptorToDot(ref.getDeclClassName()) + in printFieldRefs()
123 "." + ref.getName() + " : " + ref.getTypeName()); in printFieldRefs()
137 MethodRef ref = methods[j]; in printMethodRefs() local
139 out.println(descriptorToDot(ref.getDeclClassName()) + in printMethodRefs()
140 "." + ref.getName() + " : " + ref.getDescriptor()); in printMethodRefs()
/dalvik/dx/src/com/android/dx/dex/code/
DRopToDop.java522 CstFieldRef ref = in dopFor() local
524 int basicType = ref.getBasicType(); in dopFor()
535 CstFieldRef ref = in dopFor() local
537 int basicType = ref.getBasicType(); in dopFor()
548 CstFieldRef ref = in dopFor() local
550 int basicType = ref.getBasicType(); in dopFor()
561 CstFieldRef ref = in dopFor() local
563 int basicType = ref.getBasicType(); in dopFor()
/dalvik/dexgen/src/com/android/dexgen/dex/code/
DRopToDop.java351 CstFieldRef ref = in dopFor() local
353 int basicType = ref.getBasicType(); in dopFor()
364 CstFieldRef ref = in dopFor() local
366 int basicType = ref.getBasicType(); in dopFor()
377 CstFieldRef ref = in dopFor() local
379 int basicType = ref.getBasicType(); in dopFor()
390 CstFieldRef ref = in dopFor() local
392 int basicType = ref.getBasicType(); in dopFor()
/dalvik/dx/src/com/android/dx/cf/code/
DRopperMachine.java923 CstMethodRef ref = (CstMethodRef) cst; in jopToRopOpcode() local
943 if (ref.getDefiningClass().equals(method.getDefiningClass())) { in jopToRopOpcode()
947 ref.getNat().equals(m.getNat())) { in jopToRopOpcode()
961 CstMethodRef ref = (CstMethodRef) cst; in jopToRopOpcode() local
962 if (ref.isInstanceInit() || in jopToRopOpcode()
963 (ref.getDefiningClass().equals(method.getDefiningClass())) || in jopToRopOpcode()
/dalvik/dx/etc/
Djasmin.jarMETA-INF/ META-INF/MANIFEST.MF jas/ jas/AnnotDefAttr.class AnnotDefAttr ...