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

123

/external/dexmaker/src/dx/java/com/android/dx/util/
H A DToHuman.java30 public String toHuman(); method in interface:ToHuman
H A DFixedSizeList.java85 public String toHuman() { method in class:FixedSizeList
116 public String toHuman(String prefix, String separator, String suffix) { method in class:FixedSizeList
239 * Helper for {@link #toString} and {@link #toHuman}, which both of
263 sb.append(((ToHuman) arr[i]).toHuman());
/external/dexmaker/src/dx/java/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;
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
H A DEncodedArrayItem.java81 public String toHuman() { method in class:EncodedArrayItem
82 return array.toHuman();
H A DAnnotationItem.java138 public String toHuman() { method in class:AnnotationItem
139 return annotation.toHuman();
173 annotation.getVisibility().toHuman());
174 out.annotate(0, prefix + "type: " + annotation.getType().toHuman());
180 out.annotate(0, prefix + name.toHuman() + ": " +
H A DCodeItem.java140 return "CodeItem{" + toHuman() + "}";
145 public String toHuman() { method in class:CodeItem
146 return ref.toHuman();
166 out.println(ref.toHuman() + ":");
244 out.annotate(0, offsetString() + ' ' + ref.toHuman());
255 out.annotate(0, " throws " + StdTypeList.toHuman(throwsList));
304 "instructions for " + ref.toHuman());
H A DEncodedField.java111 public String toHuman() { method in class:EncodedField
112 return field.toHuman();
141 field.toHuman()));
H A DEncodedMethod.java128 public final String toHuman() { method in class:EncodedMethod
129 return method.toHuman();
142 out.println(getRef().toHuman() + ": abstract or native");
180 method.toHuman()));
/external/dexmaker/src/dx/java/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());
/external/dexmaker/src/dx/java/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();
H A DCstBoolean.java87 public String toHuman() { method in class:CstBoolean
H A DCstKnownNull.java78 public String toHuman() { method in class:CstKnownNull
H A DCstLong.java75 public String toHuman() { method in class:CstLong
H A DCstAnnotation.java84 public String toHuman() { method in class:CstAnnotation
H A DCstByte.java87 public String toHuman() { method in class:CstByte
/external/dexmaker/src/dx/java/com/android/dx/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());
H A DLocalStart.java44 spec.getTypeBearer().toHuman();
/external/dexmaker/src/dx/java/com/android/dx/rop/code/
H A DCstInsn.java52 return cst.toHuman();

Completed in 148 milliseconds

123