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

1 2

  /dalvik/dexgen/src/com/android/dexgen/rop/code/
LocalItem.java 19 import com.android.dexgen.rop.cst.CstUtf8;
26 private final CstUtf8 name;
29 private final CstUtf8 signature;
40 public static LocalItem make(CstUtf8 name, CstUtf8 signature) {
54 private LocalItem(CstUtf8 name, CstUtf8 signature) {
78 private static int compareHandlesNulls(CstUtf8 a, CstUtf8 b) {
131 public CstUtf8 getName()
    [all...]
SourcePosition.java 19 import com.android.dexgen.rop.cst.CstUtf8;
32 private final CstUtf8 sourceFile;
56 public SourcePosition(CstUtf8 sourceFile, int address, int line) {
146 public CstUtf8 getSourceFile() {
  /dalvik/dexgen/src/com/android/dexgen/rop/
Member.java 21 import com.android.dexgen.rop.cst.CstUtf8;
47 public CstUtf8 getName();
55 public CstUtf8 getDescriptor();
StdField.java 21 import com.android.dexgen.rop.cst.CstUtf8;
50 new CstNat(new CstUtf8(field.getName()),
66 new CstNat(new CstUtf8(name), CstType.intern(type).getDescriptor()),
StdMember.java 21 import com.android.dexgen.rop.cst.CstUtf8;
97 public final CstUtf8 getName() {
102 public final CstUtf8 getDescriptor() {
  /dalvik/dexgen/src/com/android/dexgen/rop/cst/
CstNat.java 31 new CstNat(new CstUtf8("TYPE"),
32 new CstUtf8("Ljava/lang/Class;"));
35 private final CstUtf8 name;
38 private final CstUtf8 descriptor;
46 public CstNat(CstUtf8 name, CstUtf8 descriptor) {
113 public CstUtf8 getName() {
122 public CstUtf8 getDescriptor() {
CstString.java 27 private final CstUtf8 string;
34 public CstString(CstUtf8 string) {
48 this(new CstUtf8(string));
106 public CstUtf8 getString() {
CstFieldRef.java 75 CstUtf8 thisDescriptor = getNat().getDescriptor();
76 CstUtf8 otherDescriptor = otherField.getNat().getDescriptor();
CstUtf8.java 25 public final class CstUtf8 extends Constant {
30 public static final CstUtf8 EMPTY_STRING = new CstUtf8("");
180 public CstUtf8(String string) {
194 public CstUtf8(ByteArray bytes) {
206 if (!(other instanceof CstUtf8)) {
210 return string.equals(((CstUtf8) other).string);
222 return string.compareTo(((CstUtf8) other).string);
CstMemberRef.java 82 CstUtf8 thisName = nat.getName();
83 CstUtf8 otherName = otherMember.nat.getName();
CstType.java 92 private CstUtf8 descriptor;
234 public CstUtf8 getDescriptor() {
236 descriptor = new CstUtf8(type.getDescriptor());
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
StringIdsSection.java 22 import com.android.dexgen.rop.cst.CstUtf8;
38 private final TreeMap<CstUtf8, StringIdItem> strings;
48 strings = new TreeMap<CstUtf8, StringIdItem>();
70 IndexedItem result = strings.get((CstUtf8) cst);
107 CstUtf8 utf8 = new CstUtf8(string);
118 CstUtf8 utf8 = string.getString();
128 public StringIdItem intern(CstUtf8 string) {
145 CstUtf8 value = string.getValue();
173 public int indexOf(CstUtf8 string)
    [all...]
EncodedMember.java 19 import com.android.dexgen.rop.cst.CstUtf8;
56 public abstract CstUtf8 getName();
StringDataItem.java 19 import com.android.dexgen.rop.cst.CstUtf8;
30 private final CstUtf8 value;
37 public StringDataItem(CstUtf8 value) {
49 private static int writeSize(CstUtf8 value) {
StringIdItem.java 19 import com.android.dexgen.rop.cst.CstUtf8;
32 private final CstUtf8 value;
42 public StringIdItem(CstUtf8 value) {
115 public CstUtf8 getValue() {
AnnotationUtils.java 29 import com.android.dexgen.rop.cst.CstUtf8;
70 private static final CstUtf8 ACCESS_FLAGS_UTF = new CstUtf8("accessFlags");
73 private static final CstUtf8 NAME_UTF = new CstUtf8("name");
76 private static final CstUtf8 VALUE_UTF = new CstUtf8("value");
135 public static Annotation makeInnerClass(CstUtf8 name, int accessFlags) {
167 public static Annotation makeSignature(CstUtf8 signature) {
TypeIdItem.java 20 import com.android.dexgen.rop.cst.CstUtf8;
62 CstUtf8 descriptor = type.getDescriptor();
ProtoIdItem.java 20 import com.android.dexgen.rop.cst.CstUtf8;
38 private final CstUtf8 shortForm;
70 private static CstUtf8 makeShortForm(Prototype prototype) {
81 return new CstUtf8(sb.toString());
EncodedField.java 21 import com.android.dexgen.rop.cst.CstUtf8;
106 public CstUtf8 getName() {
HeaderItem.java 19 import com.android.dexgen.rop.cst.CstUtf8;
75 out.annotate(8, "magic: " + new CstUtf8(MAGIC).toQuoted());
AnnotationItem.java 25 import com.android.dexgen.rop.cst.CstUtf8;
179 CstUtf8 name = pair.getName();
EncodedMethod.java 22 import com.android.dexgen.rop.cst.CstUtf8;
134 public final CstUtf8 getName() {
ClassDefItem.java 27 import com.android.dexgen.rop.cst.CstUtf8;
64 private final CstUtf8 sourceFile;
91 CstType superclass, TypeList interfaces, CstUtf8 sourceFile) {
269 public CstUtf8 getSourceFile() {
  /dalvik/dexgen/src/com/android/dexgen/rop/annotation/
NameValuePair.java 21 import com.android.dexgen.rop.cst.CstUtf8;
28 private final CstUtf8 name;
39 public NameValuePair(CstUtf8 name, Constant value) {
48 // Reject CstUtf8 values. (They should be CstStrings.)
49 if (value instanceof CstUtf8) {
100 public CstUtf8 getName() {
Annotation.java 26 import com.android.dexgen.rop.cst.CstUtf8;
51 private final TreeMap<CstUtf8, NameValuePair> elements;
70 this.elements = new TreeMap<CstUtf8, NameValuePair>();
214 CstUtf8 name = pair.getName();

Completed in 263 milliseconds

1 2