HomeSort by relevance Sort by last modified time
    Searched refs:toHuman (Results 1 - 25 of 221) sorted by null

1 2 3 4 5 6 7 8 9

  /dalvik/dexgen/src/com/android/dexgen/util/
ToHuman.java 23 public interface ToHuman {
30 public String toHuman();
  /dalvik/dx/src/com/android/dx/util/
ToHuman.java 23 public interface ToHuman {
30 public String toHuman();
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
Item.java 47 return itemType().toHuman();
AnnotationSetRefItem.java 65 public String toHuman() {
66 return annotations.toHuman();
FieldAnnotationStruct.java 23 import com.android.dexgen.util.ToHuman;
29 implements ToHuman, Comparable<FieldAnnotationStruct> {
90 out.annotate(0, " " + field.toHuman());
101 public String toHuman() {
102 return field.toHuman() + ": " + annotations;
MethodAnnotationStruct.java 23 import com.android.dexgen.util.ToHuman;
29 implements ToHuman, Comparable<MethodAnnotationStruct> {
90 out.annotate(0, " " + method.toHuman());
101 public String toHuman() {
102 return method.toHuman() + ": " + annotations;
ParameterAnnotationStruct.java 24 import com.android.dexgen.util.ToHuman;
32 implements ToHuman, Comparable<ParameterAnnotationStruct> {
114 out.annotate(0, " " + method.toHuman());
125 public String toHuman() {
128 sb.append(method.toHuman());
138 sb.append(item.toHuman());
Statistics.java 90 public String toHuman() {
102 sb.append(data.toHuman());
169 out.annotate(toHuman());
177 public String toHuman() {
  /dalvik/dexgen/src/com/android/dexgen/rop/annotation/
AnnotationVisibility.java 19 import com.android.dexgen.util.ToHuman;
24 public enum AnnotationVisibility implements ToHuman {
43 public String toHuman() {
Annotation.java 30 import com.android.dexgen.util.ToHuman;
43 implements Comparable<Annotation>, ToHuman {
137 return toHuman();
141 public String toHuman() {
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/
CstMemberRef.java 91 return typeName() + '{' + toHuman() + '}';
101 public final String toHuman() {
102 return definingClass.toHuman() + '.' + nat.toHuman();
CstNat.java 93 return "nat{" + toHuman() + '}';
132 public String toHuman() {
133 return name.toHuman() + ':' + descriptor.toHuman();
CstString.java 76 return "string{" + toHuman() + '}';
97 public String toHuman() {
  /dalvik/dx/src/com/android/dx/cf/code/
BaseMachine.java 153 ", expected type " + types.getType(i).toHuman() +
154 " but found " + args[i].getType().toHuman());
166 throw new SimException("expected type " + type.toHuman() +
167 " but found " + args[0].getType().toHuman());
180 throw new SimException("expected type " + type1.toHuman() +
181 " but found " + args[0].getType().toHuman());
185 throw new SimException("expected type " + type2.toHuman() +
186 " but found " + args[1].getType().toHuman());
200 throw new SimException("expected type " + type1.toHuman() +
201 " but found " + args[0].getType().toHuman());
    [all...]
  /dalvik/dx/src/com/android/dx/dex/file/
Item.java 47 return itemType().toHuman();
AnnotationSetRefItem.java 66 public String toHuman() {
67 return annotations.toHuman();
FieldAnnotationStruct.java 23 import com.android.dx.util.ToHuman;
29 implements ToHuman, Comparable<FieldAnnotationStruct> {
93 out.annotate(0, " " + field.toHuman());
105 public String toHuman() {
106 return field.toHuman() + ": " + annotations;
MethodAnnotationStruct.java 23 import com.android.dx.util.ToHuman;
29 implements ToHuman, Comparable<MethodAnnotationStruct> {
93 out.annotate(0, " " + method.toHuman());
105 public String toHuman() {
106 return method.toHuman() + ": " + annotations;
  /dalvik/dx/src/com/android/dx/rop/annotation/
AnnotationVisibility.java 19 import com.android.dx.util.ToHuman;
24 public enum AnnotationVisibility implements ToHuman {
44 public String toHuman() {
Annotation.java 22 import com.android.dx.util.ToHuman;
34 implements Comparable<Annotation>, ToHuman {
130 return toHuman();
135 public String toHuman() {
138 sb.append(visibility.toHuman());
140 sb.append(type.toHuman());
150 sb.append(pair.getName().toHuman());
152 sb.append(pair.getValue().toHuman());
  /dalvik/dx/src/com/android/dx/rop/cst/
CstMemberRef.java 91 return typeName() + '{' + toHuman() + '}';
102 public final String toHuman() {
103 return definingClass.toHuman() + '.' + nat.toHuman();
CstNat.java 93 return "nat{" + toHuman() + '}';
133 public String toHuman() {
134 return name.toHuman() + ':' + descriptor.toHuman();
CstCallSiteRef.java 74 public String toHuman() {
75 return getCallSite().toHuman();
CstInvokeDynamic.java 68 this.prototype = Prototype.fromDescriptor(nat.getDescriptor().toHuman());
95 return toHuman();
106 public String toHuman() {
107 String klass = (declaringClass != null) ? declaringClass.toHuman() : "Unknown";
108 return "InvokeDynamic(" + klass + ":" + bootstrapMethodIndex + ", " + nat.toHuman() + ")";
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
CatchHandlerList.java 53 public String toHuman() {
54 return toHuman("", "");
66 public String toHuman(String prefix, String header) {
86 sb.append(entry.getExceptionType().toHuman());

Completed in 457 milliseconds

1 2 3 4 5 6 7 8 9