Searched refs:toHuman (Results 1 - 25 of 159) sorted by relevance

1234567

/dalvik/dexgen/src/com/android/dexgen/util/
H A DToHuman.java30 public String toHuman(); method in interface:ToHuman
/dalvik/dx/src/com/android/dx/util/
H A DToHuman.java30 public String toHuman(); method in interface:ToHuman
/dalvik/dexgen/src/com/android/dexgen/dex/file/
H A DItem.java47 return itemType().toHuman();
H A DAnnotationSetRefItem.java65 public String toHuman() { method in class:AnnotationSetRefItem
66 return annotations.toHuman();
H A DFieldAnnotationStruct.java90 out.annotate(0, " " + field.toHuman());
101 public String toHuman() { method in class:FieldAnnotationStruct
102 return field.toHuman() + ": " + annotations;
H A DMethodAnnotationStruct.java90 out.annotate(0, " " + method.toHuman());
101 public String toHuman() { method in class:MethodAnnotationStruct
102 return method.toHuman() + ": " + annotations;
H A DParameterAnnotationStruct.java114 out.annotate(0, " " + method.toHuman());
125 public String toHuman() { method in class:ParameterAnnotationStruct
128 sb.append(method.toHuman());
138 sb.append(item.toHuman());
H A DStatistics.java90 public String toHuman() { method in class:Statistics
102 sb.append(data.toHuman());
169 out.annotate(toHuman());
177 public String toHuman() { method in class:Statistics.Data
/dalvik/dexgen/src/com/android/dexgen/rop/annotation/
H A DAnnotationVisibility.java43 public String toHuman() { method in class:AnnotationVisibility
H A DAnnotation.java137 return toHuman();
141 public String toHuman() { method in class:Annotation
144 sb.append(visibility.toHuman());
146 sb.append(type.toHuman());
156 sb.append(pair.getName().toHuman());
158 sb.append(pair.getValue().toHuman());
/dalvik/dexgen/src/com/android/dexgen/rop/cst/
H A DCstMemberRef.java91 return typeName() + '{' + toHuman() + '}';
101 public final String toHuman() { method in class:CstMemberRef
102 return definingClass.toHuman() + '.' + nat.toHuman();
H A DCstNat.java93 return "nat{" + toHuman() + '}';
132 public String toHuman() { method in class:CstNat
133 return name.toHuman() + ':' + descriptor.toHuman();
H A DCstString.java76 return "string{" + toHuman() + '}';
97 public String toHuman() { method in class:CstString
H A DCstBoolean.java87 public String toHuman() { method in class:CstBoolean
/dalvik/dx/src/com/android/dx/cf/code/
H A DBaseMachine.java149 ", expected type " + types.getType(i).toHuman() +
150 " but found " + args[i].getType().toHuman());
161 throw new SimException("expected type " + type.toHuman() +
162 " but found " + args[0].getType().toHuman());
174 throw new SimException("expected type " + type1.toHuman() +
175 " but found " + args[0].getType().toHuman());
179 throw new SimException("expected type " + type2.toHuman() +
180 " but found " + args[1].getType().toHuman());
193 throw new SimException("expected type " + type1.toHuman() +
194 " but found " + args[0].getType().toHuman());
[all...]
/dalvik/dx/src/com/android/dx/dex/file/
H A DItem.java47 return itemType().toHuman();
H A DAnnotationSetRefItem.java65 public String toHuman() { method in class:AnnotationSetRefItem
66 return annotations.toHuman();
H A DFieldAnnotationStruct.java90 out.annotate(0, " " + field.toHuman());
101 public String toHuman() { method in class:FieldAnnotationStruct
102 return field.toHuman() + ": " + annotations;
H A DMethodAnnotationStruct.java90 out.annotate(0, " " + method.toHuman());
101 public String toHuman() { method in class:MethodAnnotationStruct
102 return method.toHuman() + ": " + annotations;
/dalvik/dx/src/com/android/dx/rop/annotation/
H A DAnnotationVisibility.java43 public String toHuman() { method in class:AnnotationVisibility
H A DAnnotation.java129 return toHuman();
133 public String toHuman() { method in class:Annotation
136 sb.append(visibility.toHuman());
138 sb.append(type.toHuman());
148 sb.append(pair.getName().toHuman());
150 sb.append(pair.getValue().toHuman());
/dalvik/dx/src/com/android/dx/rop/cst/
H A DCstMemberRef.java91 return typeName() + '{' + toHuman() + '}';
101 public final String toHuman() { method in class:CstMemberRef
102 return definingClass.toHuman() + '.' + nat.toHuman();
H A DCstNat.java93 return "nat{" + toHuman() + '}';
132 public String toHuman() { method in class:CstNat
133 return name.toHuman() + ':' + descriptor.toHuman();
/dalvik/dexgen/src/com/android/dexgen/dex/code/
H A DCatchHandlerList.java53 public String toHuman() { method in class:CatchHandlerList
54 return toHuman("", "");
66 public String toHuman(String prefix, String header) { method in class:CatchHandlerList
86 sb.append(entry.getExceptionType().toHuman());
/dalvik/dexgen/src/com/android/dexgen/rop/code/
H A DCstInsn.java52 return cst.toHuman();

Completed in 398 milliseconds

1234567