/dalvik/dx/src/com/android/dx/rop/cst/ |
D | StdConstantPool.java | 30 private final Constant[] entries; 47 entries = new Constant[size]; in StdConstantPool() 56 public Constant getOrNull(int n) { in getOrNull() 66 public Constant get0Ok(int n) { in get0Ok() 75 public Constant get(int n) { in get() 77 Constant result = entries[n]; in get() 95 public Constant[] getEntries() { in getEntries() 105 public void set(int n, Constant cst) { in set() 128 Constant prev = entries[n - 1]; in set() 144 private static Constant throwInvalid(int idx) { in throwInvalid()
|
D | ConstantPool.java | 43 public Constant get(int n); in get() 55 public Constant get0Ok(int n); in get0Ok() 69 public Constant getOrNull(int n); in getOrNull() 76 public Constant[] getEntries(); in getEntries()
|
D | CstArray.java | 24 public final class CstArray extends Constant { 61 protected int compareTo0(Constant other) { in compareTo0() 119 Constant thisItem = (Constant) get0(i); in compareTo() 120 Constant otherItem = (Constant) other.get0(i); in compareTo() 144 public Constant get(int n) { in get() 145 return (Constant) get0(n); in get() 154 public void set(int n, Constant a) { in set()
|
D | Constant.java | 24 public abstract class Constant class 25 implements ToHuman, Comparable<Constant> { 48 public final int compareTo(Constant other) { in compareTo() 67 protected abstract int compareTo0(Constant other); in compareTo0()
|
/dalvik/dexgen/src/com/android/dexgen/rop/cst/ |
D | StdConstantPool.java | 30 private final Constant[] entries; 47 entries = new Constant[size]; in StdConstantPool() 56 public Constant getOrNull(int n) { in getOrNull() 66 public Constant get0Ok(int n) { in get0Ok() 75 public Constant get(int n) { in get() 77 Constant result = entries[n]; in get() 96 public void set(int n, Constant cst) { in set() 119 Constant prev = entries[n - 1]; in set() 135 private static Constant throwInvalid(int idx) { in throwInvalid()
|
D | CstArray.java | 26 public final class CstArray extends Constant { 63 protected int compareTo0(Constant other) { in compareTo0() 121 Constant thisItem = (Constant) get0(i); in compareTo() 122 Constant otherItem = (Constant) other.get0(i); in compareTo() 146 public Constant get(int n) { in get() 147 return (Constant) get0(n); in get() 156 public void set(int n, Constant a) { in set()
|
D | Constant.java | 24 public abstract class Constant class 25 implements ToHuman, Comparable<Constant> { 48 public final int compareTo(Constant other) { in compareTo() 67 protected abstract int compareTo0(Constant other); in compareTo0()
|
D | ConstantPool.java | 43 public Constant get(int n); in get() 55 public Constant get0Ok(int n); in get0Ok() 69 public Constant getOrNull(int n); in getOrNull()
|
/dalvik/dx/src/com/android/dx/cf/attrib/ |
D | AttAnnotationDefault.java | 19 import com.android.dx.rop.cst.Constant; 29 private final Constant value; 42 public AttAnnotationDefault(Constant value, int byteLength) { in AttAnnotationDefault() 64 public Constant getValue() { in getValue()
|
/dalvik/dx/src/com/android/dx/rop/code/ |
D | FillArrayDataInsn.java | 19 import com.android.dx.rop.cst.Constant; 33 private final ArrayList<Constant> initValues; 39 private final Constant arrayType; 52 ArrayList<Constant> initValues, in FillArrayDataInsn() 53 Constant cst) { in FillArrayDataInsn() 75 public ArrayList<Constant> getInitValues() { in getInitValues() 83 public Constant getConstant() { in getConstant()
|
D | CstInsn.java | 19 import com.android.dx.rop.cst.Constant; 27 private final Constant cst; 39 RegisterSpecList sources, Constant cst) { in CstInsn() 60 public Constant getConstant() { in getConstant()
|
D | PlainInsn.java | 19 import com.android.dx.rop.cst.Constant; 113 Constant cst = (Constant) firstType; in withSourceLiteral() 123 Constant cst = (Constant) lastType; in withSourceLiteral()
|
D | ThrowingCstInsn.java | 19 import com.android.dx.rop.cst.Constant; 44 TypeList catches, Constant cst) { in ThrowingCstInsn() 61 Constant cst = getConstant(); in getInlineString()
|
/dalvik/dexgen/src/com/android/dexgen/rop/code/ |
D | FillArrayDataInsn.java | 19 import com.android.dexgen.rop.cst.Constant; 34 private final ArrayList<Constant> initValues; 40 private final Constant arrayType; 53 ArrayList<Constant> initValues, in FillArrayDataInsn() 54 Constant cst) { in FillArrayDataInsn() 76 public ArrayList<Constant> getInitValues() { in getInitValues() 84 public Constant getConstant() { in getConstant()
|
D | CstInsn.java | 19 import com.android.dexgen.rop.cst.Constant; 27 private final Constant cst; 39 RegisterSpecList sources, Constant cst) { in CstInsn() 60 public Constant getConstant() { in getConstant()
|
D | PlainInsn.java | 19 import com.android.dexgen.rop.cst.Constant; 112 Constant cst = (Constant) lastType; in withLastSourceLiteral() 119 getResult(), newSources, (Constant)lastType); in withLastSourceLiteral()
|
/dalvik/dx/src/com/android/dx/rop/annotation/ |
D | NameValuePair.java | 19 import com.android.dx.rop.cst.Constant; 30 private final Constant value; 38 public NameValuePair(CstString name, Constant value) { in NameValuePair() 103 public Constant getValue() { in getValue()
|
/dalvik/dx/src/com/android/dx/dex/code/ |
D | ArrayData.java | 22 import com.android.dx.rop.cst.Constant; 41 private final ArrayList<Constant> values; 44 private final Constant arrayType; 62 ArrayList<Constant> values, in ArrayData() 63 Constant arrayType) { in ArrayData() 124 Constant cst = values.get(i); in writeTo() 131 Constant cst = values.get(i); in writeTo() 138 Constant cst = values.get(i); in writeTo() 145 Constant cst = values.get(i); in writeTo()
|
D | CstInsn.java | 21 import com.android.dx.rop.cst.Constant; 29 private final Constant constant; 55 RegisterSpecList registers, Constant constant) { in CstInsn() 106 public Constant getConstant() { in getConstant()
|
/dalvik/dexgen/src/com/android/dexgen/rop/annotation/ |
D | NameValuePair.java | 19 import com.android.dexgen.rop.cst.Constant; 31 private final Constant value; 39 public NameValuePair(CstUtf8 name, Constant value) { in NameValuePair() 109 public Constant getValue() { in getValue()
|
/dalvik/dexgen/src/com/android/dexgen/dex/code/ |
D | ArrayData.java | 39 private final ArrayList<Constant> values; 42 private final Constant arrayType; 60 ArrayList<Constant> values, in ArrayData() 61 Constant arrayType) { in ArrayData() 122 Constant cst = values.get(i); in writeTo() 129 Constant cst = values.get(i); in writeTo() 136 Constant cst = values.get(i); in writeTo() 143 Constant cst = values.get(i); in writeTo()
|
D | CstInsn.java | 21 import com.android.dexgen.rop.cst.Constant; 29 private final Constant constant; 55 RegisterSpecList registers, Constant constant) { in CstInsn() 106 public Constant getConstant() { in getConstant()
|
/dalvik/dx/src/com/android/dx/cf/code/ |
D | Machine.java | 20 import com.android.dx.rop.cst.Constant; 166 public void auxCstArg(Constant cst); in auxCstArg() 195 public void auxInitValues(ArrayList<Constant> initValues); in auxInitValues()
|
/dalvik/dx/src/com/android/dx/dex/file/ |
D | HeaderSection.java | 19 import com.android.dx.rop.cst.Constant; 47 public IndexedItem get(Constant cst) { in get()
|
/dalvik/dexgen/src/com/android/dexgen/dex/file/ |
D | HeaderSection.java | 19 import com.android.dexgen.rop.cst.Constant; 48 public IndexedItem get(Constant cst) { in get()
|