OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:tohuman
(Results
1 - 25
of
96
) sorted by null
1
2
3
4
/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
30
import com.android.dx.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/dex/file/
ParameterAnnotationStruct.java
24
import com.android.dx.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
());
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;
ItemType.java
19
import com.android.dx.util.
ToHuman
;
24
public enum ItemType implements
ToHuman
{
94
public String
toHuman
() {
AnnotationSetRefItem.java
65
public String
toHuman
() {
66
return annotations.
toHuman
();
AnnotationItem.java
140
public String
toHuman
() {
141
return annotation.
toHuman
();
175
annotation.getVisibility().
toHuman
());
176
out.annotate(0, prefix + "type: " + annotation.getType().
toHuman
());
182
out.annotate(0, prefix + name.
toHuman
() + ": " +
EncodedField.java
111
public String
toHuman
() {
112
return field.
toHuman
();
141
field.
toHuman
()));
EncodedMember.java
21
import com.android.dx.util.
ToHuman
;
29
public abstract class EncodedMember implements
ToHuman
{
EncodedMethod.java
128
public final String
toHuman
() {
129
return method.
toHuman
();
142
out.println(getRef().
toHuman
() + ": abstract or native");
180
method.
toHuman
()));
Statistics.java
90
public String
toHuman
() {
102
sb.append(data.
toHuman
());
169
out.annotate(
toHuman
());
177
public String
toHuman
() {
CodeItem.java
140
return "CodeItem{" +
toHuman
() + "}";
145
public String
toHuman
() {
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
());
EncodedArrayItem.java
90
public String
toHuman
() {
91
return array.
toHuman
();
TypeListItem.java
77
public String
toHuman
() {
103
" " + Hex.u2(idx) + " // " + one.
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/dx/src/com/android/dx/cf/code/
BaseMachine.java
144
", expected type " + types.getType(i).
toHuman
() +
145
" but found " + args[i].getType().
toHuman
());
156
throw new SimException("expected type " + type.
toHuman
() +
157
" but found " + args[0].getType().
toHuman
());
169
throw new SimException("expected type " + type1.
toHuman
() +
170
" but found " + args[0].getType().
toHuman
());
174
throw new SimException("expected type " + type2.
toHuman
() +
175
" but found " + args[1].getType().
toHuman
());
188
throw new SimException("expected type " + type1.
toHuman
() +
189
" but found " + args[0].getType().
toHuman
());
[
all
...]
/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
();
Constant.java
19
import com.android.dx.util.
ToHuman
;
25
implements
ToHuman
, Comparable<Constant> {
CstString.java
76
return "string{" +
toHuman
() + '}';
97
public String
toHuman
() {
CstArray.java
86
public String
toHuman
() {
87
return list.
toHuman
("{", ", ", "}");
/dalvik/dx/src/com/android/dx/rop/type/
TypeBearer.java
19
import com.android.dx.util.
ToHuman
;
25
extends
ToHuman
{
/dalvik/dx/src/com/android/dx/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 191 milliseconds
1
2
3
4