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

1 2 3 4

  /dalvik/dexgen/src/com/android/dexgen/util/
ToHuman.java 23 public interface ToHuman {
30 public String toHuman();
FixedSizeList.java 25 extends MutabilityControl implements ToHuman {
83 * implements {@link ToHuman}.
85 public String toHuman() {
109 * ToHuman}.
116 public String toHuman(String prefix, String separator, String suffix) {
239 * Helper for {@link #toString} and {@link #toHuman}, which both of
263 sb.append(((ToHuman) arr[i]).toHuman());
  /dalvik/dx/src/com/android/dx/util/
ToHuman.java 23 public interface ToHuman {
30 public String toHuman();
FixedSizeList.java 25 extends MutabilityControl implements ToHuman {
83 * implements {@link ToHuman}.
85 public String toHuman() {
109 * ToHuman}.
116 public String toHuman(String prefix, String separator, String suffix) {
239 * Helper for {@link #toString} and {@link #toHuman}, which both of
263 sb.append(((ToHuman) arr[i]).toHuman());
  /dalvik/dexgen/src/com/android/dexgen/rop/type/
TypeBearer.java 19 import com.android.dexgen.util.ToHuman;
25 extends ToHuman {
  /dalvik/dx/src/com/android/dx/rop/type/
TypeBearer.java 19 import com.android.dx.util.ToHuman;
25 extends 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/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/dexgen/src/com/android/dexgen/rop/cst/
Constant.java 19 import com.android.dexgen.util.ToHuman;
25 implements ToHuman, Comparable<Constant> {
  /dalvik/dx/src/com/android/dx/rop/cst/
Constant.java 19 import com.android.dx.util.ToHuman;
25 implements ToHuman, Comparable<Constant> {
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
EncodedMember.java 21 import com.android.dexgen.util.ToHuman;
29 public abstract class EncodedMember implements ToHuman {
ItemType.java 19 import com.android.dexgen.util.ToHuman;
24 public enum ItemType implements ToHuman {
94 public String 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());
  /dalvik/dx/src/com/android/dx/dex/file/
EncodedMember.java 21 import com.android.dx.util.ToHuman;
28 public abstract class EncodedMember implements ToHuman {
ItemType.java 19 import com.android.dx.util.ToHuman;
24 public enum ItemType implements ToHuman {
96 public String toHuman() {
FieldAnnotationStruct.java 23 import com.android.dx.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.dx.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.dx.util.ToHuman;
32 implements ToHuman, Comparable<ParameterAnnotationStruct> {
115 out.annotate(0, " " + method.toHuman());
126 public String toHuman() {
129 sb.append(method.toHuman());
139 sb.append(item.toHuman());
  /dalvik/dx/src/com/android/dx/cf/code/
LocalsArray.java 24 import com.android.dx.util.ToHuman;
33 public abstract class LocalsArray extends MutabilityControl implements ToHuman {
  /dalvik/dx/src/com/android/dx/ssa/
SsaInsn.java 24 import com.android.dx.util.ToHuman;
29 public abstract class SsaInsn implements ToHuman, Cloneable {
  /dalvik/dexgen/src/com/android/dexgen/rop/code/
Insn.java 24 import com.android.dexgen.util.ToHuman;
32 public abstract class Insn implements ToHuman {
107 public String toHuman() {
112 * Gets an "inline" string portion for toHuman(), if available. This
115 * @return {@code null-ok;} if non-null, the inline text for toHuman()
357 sb.append(result.toHuman());
368 sb.append(sources.get(i).toHuman());

Completed in 335 milliseconds

1 2 3 4