OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:toHuman
(Results
1 - 25
of
160
) sorted by null
1
2
3
4
5
6
7
/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
() {
CstBoolean.java
87
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
();
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;
/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
;
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
());
/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
();
/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
());
/dalvik/dexgen/src/com/android/dexgen/rop/code/
CstInsn.java
52
return cst.
toHuman
();
Completed in 485 milliseconds
1
2
3
4
5
6
7