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

1 2 3 4 5 6 7 8 910

  /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();
  /external/dexmaker/src/dx/java/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;
  /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 149 ", 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/
Item.java 47 return itemType().toHuman();
AnnotationSetRefItem.java 65 public String toHuman() {
66 return annotations.toHuman();
  /dalvik/dx/src/com/android/dx/rop/annotation/
AnnotationVisibility.java 19 import com.android.dx.util.ToHuman;
24 public enum AnnotationVisibility implements ToHuman {
43 public String toHuman() {
Annotation.java 22 import com.android.dx.util.ToHuman;
34 implements Comparable<Annotation>, ToHuman {
128 return toHuman();
132 public String toHuman() {
135 sb.append(visibility.toHuman());
137 sb.append(type.toHuman());
147 sb.append(pair.getName().toHuman());
149 sb.append(pair.getValue().toHuman());
  /dalvik/dx/src/com/android/dx/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();
  /external/dexmaker/src/dx/java/com/android/dx/dex/file/
Item.java 47 return itemType().toHuman();
AnnotationSetRefItem.java 65 public String toHuman() {
66 return annotations.toHuman();
  /external/dexmaker/src/dx/java/com/android/dx/rop/annotation/
AnnotationVisibility.java 19 import com.android.dx.util.ToHuman;
24 public enum AnnotationVisibility implements ToHuman {
43 public String toHuman() {
Annotation.java 22 import com.android.dx.util.ToHuman;
35 implements Comparable<Annotation>, ToHuman {
129 return toHuman();
133 public String toHuman() {
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/
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();

Completed in 552 milliseconds

1 2 3 4 5 6 7 8 910