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

1 2 3 4 5 6 7 8 91011>>

  /dalvik/dexgen/src/com/android/dexgen/rop/code/
CstInsn.java 19 import com.android.dexgen.rop.cst.Constant;
27 private final Constant cst; field in class:CstInsn
36 * @param cst {@code non-null;} constant
39 RegisterSpecList sources, Constant cst) {
42 if (cst == null) {
43 throw new NullPointerException("cst == null");
46 this.cst = cst;
52 return cst.toHuman();
61 return cst;
    [all...]
  /dalvik/dx/src/com/android/dx/rop/code/
CstInsn.java 19 import com.android.dx.rop.cst.Constant;
27 private final Constant cst; field in class:CstInsn
36 * @param cst {@code non-null;} constant
39 RegisterSpecList sources, Constant cst) {
42 if (cst == null) {
43 throw new NullPointerException("cst == null");
46 this.cst = cst;
52 return cst.toHuman();
61 return cst;
    [all...]
ThrowingCstInsn.java 19 import com.android.dx.rop.cst.Constant;
20 import com.android.dx.rop.cst.CstString;
40 * @param cst {@code non-null;} the constant
44 TypeList catches, Constant cst) {
45 super(opcode, position, null, sources, cst);
61 Constant cst = getConstant(); local
62 String constantString = cst.toHuman();
63 if (cst instanceof CstString) {
64 constantString = ((CstString) cst).toQuoted();
  /external/dexmaker/src/dx/java/com/android/dx/rop/code/
CstInsn.java 19 import com.android.dx.rop.cst.Constant;
27 private final Constant cst; field in class:CstInsn
36 * @param cst {@code non-null;} constant
39 RegisterSpecList sources, Constant cst) {
42 if (cst == null) {
43 throw new NullPointerException("cst == null");
46 this.cst = cst;
52 return cst.toHuman();
61 return cst;
    [all...]
ThrowingCstInsn.java 19 import com.android.dx.rop.cst.Constant;
20 import com.android.dx.rop.cst.CstString;
40 * @param cst {@code non-null;} the constant
44 TypeList catches, Constant cst) {
45 super(opcode, position, null, sources, cst);
61 Constant cst = getConstant(); local
62 String constantString = cst.toHuman();
63 if (cst instanceof CstString) {
64 constantString = ((CstString) cst).toQuoted();
  /dalvik/dx/src/com/android/dx/dex/file/
ValueEncoder.java 22 import com.android.dx.rop.cst.Constant;
23 import com.android.dx.rop.cst.CstAnnotation;
24 import com.android.dx.rop.cst.CstArray;
25 import com.android.dx.rop.cst.CstBoolean;
26 import com.android.dx.rop.cst.CstByte;
27 import com.android.dx.rop.cst.CstChar;
28 import com.android.dx.rop.cst.CstDouble;
29 import com.android.dx.rop.cst.CstEnumRef;
30 import com.android.dx.rop.cst.CstFieldRef;
31 import com.android.dx.rop.cst.CstFloat
282 Constant cst = list.get(i); local
    [all...]
MemberIdItem.java 20 import com.android.dx.rop.cst.CstMemberRef;
21 import com.android.dx.rop.cst.CstNat;
31 private final CstMemberRef cst; field in class:MemberIdItem
36 * @param cst {@code non-null;} the constant for the member
38 public MemberIdItem(CstMemberRef cst) {
39 super(cst.getDefiningClass());
41 this.cst = cst;
64 CstNat nat = cst.getNat();
70 out.annotate(0, indexString() + ' ' + cst.toHuman())
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/dex/file/
ValueEncoder.java 21 import com.android.dx.rop.cst.Constant;
22 import com.android.dx.rop.cst.CstAnnotation;
23 import com.android.dx.rop.cst.CstArray;
24 import com.android.dx.rop.cst.CstBoolean;
25 import com.android.dx.rop.cst.CstByte;
26 import com.android.dx.rop.cst.CstChar;
27 import com.android.dx.rop.cst.CstDouble;
28 import com.android.dx.rop.cst.CstEnumRef;
29 import com.android.dx.rop.cst.CstFieldRef;
30 import com.android.dx.rop.cst.CstFloat
281 Constant cst = list.get(i); local
    [all...]
MemberIdItem.java 19 import com.android.dx.rop.cst.CstMemberRef;
20 import com.android.dx.rop.cst.CstNat;
31 private final CstMemberRef cst; field in class:MemberIdItem
36 * @param cst {@code non-null;} the constant for the member
38 public MemberIdItem(CstMemberRef cst) {
39 super(cst.getDefiningClass());
41 this.cst = cst;
64 CstNat nat = cst.getNat();
70 out.annotate(0, indexString() + ' ' + cst.toHuman())
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/rop/
AttConstantValue.java 19 import com.android.dexgen.rop.cst.CstDouble;
20 import com.android.dexgen.rop.cst.CstFloat;
21 import com.android.dexgen.rop.cst.CstInteger;
22 import com.android.dexgen.rop.cst.CstLong;
23 import com.android.dexgen.rop.cst.CstString;
24 import com.android.dexgen.rop.cst.TypedConstant;
Member.java 19 import com.android.dexgen.rop.cst.CstNat;
20 import com.android.dexgen.rop.cst.CstType;
21 import com.android.dexgen.rop.cst.CstUtf8;
Field.java 19 import com.android.dexgen.rop.cst.TypedConstant;
  /dalvik/dx/src/com/android/dx/cf/attrib/
AttConstantValue.java 19 import com.android.dx.rop.cst.CstDouble;
20 import com.android.dx.rop.cst.CstFloat;
21 import com.android.dx.rop.cst.CstInteger;
22 import com.android.dx.rop.cst.CstLong;
23 import com.android.dx.rop.cst.CstString;
24 import com.android.dx.rop.cst.TypedConstant;
  /dalvik/dx/src/com/android/dx/cf/iface/
Member.java 19 import com.android.dx.rop.cst.CstNat;
20 import com.android.dx.rop.cst.CstString;
21 import com.android.dx.rop.cst.CstType;
ClassFile.java 19 import com.android.dx.rop.cst.ConstantPool;
20 import com.android.dx.rop.cst.CstString;
21 import com.android.dx.rop.cst.CstType;
Field.java 19 import com.android.dx.rop.cst.TypedConstant;
  /external/dexmaker/src/main/java/com/google/dexmaker/
Constants.java 19 import com.android.dx.rop.cst.CstBoolean;
20 import com.android.dx.rop.cst.CstByte;
21 import com.android.dx.rop.cst.CstChar;
22 import com.android.dx.rop.cst.CstDouble;
23 import com.android.dx.rop.cst.CstFloat;
24 import com.android.dx.rop.cst.CstInteger;
25 import com.android.dx.rop.cst.CstKnownNull;
26 import com.android.dx.rop.cst.CstLong;
27 import com.android.dx.rop.cst.CstShort;
28 import com.android.dx.rop.cst.CstString
    [all...]
  /dalvik/dx/src/com/android/dx/cf/cst/
ConstantPoolParser.java 17 package com.android.dx.cf.cst;
19 import static com.android.dx.cf.cst.ConstantTags.CONSTANT_Class;
20 import static com.android.dx.cf.cst.ConstantTags.CONSTANT_Double;
21 import static com.android.dx.cf.cst.ConstantTags.CONSTANT_Fieldref;
22 import static com.android.dx.cf.cst.ConstantTags.CONSTANT_Float;
23 import static com.android.dx.cf.cst.ConstantTags.CONSTANT_Integer;
24 import static com.android.dx.cf.cst.ConstantTags.CONSTANT_InterfaceMethodref;
25 import static com.android.dx.cf.cst.ConstantTags.CONSTANT_Long;
26 import static com.android.dx.cf.cst.ConstantTags.CONSTANT_Methodref;
27 import static com.android.dx.cf.cst.ConstantTags.CONSTANT_NameAndType
156 Constant cst = pool.getOrNull(i); local
251 Constant cst = pool.getOrNull(idx); local
    [all...]
ConstantTags.java 17 package com.android.dx.cf.cst;
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
ValueEncoder.java 21 import com.android.dexgen.rop.cst.Constant;
22 import com.android.dexgen.rop.cst.CstAnnotation;
23 import com.android.dexgen.rop.cst.CstArray;
24 import com.android.dexgen.rop.cst.CstBoolean;
25 import com.android.dexgen.rop.cst.CstByte;
26 import com.android.dexgen.rop.cst.CstChar;
27 import com.android.dexgen.rop.cst.CstDouble;
28 import com.android.dexgen.rop.cst.CstEnumRef;
29 import com.android.dexgen.rop.cst.CstFieldRef;
30 import com.android.dexgen.rop.cst.CstFloat
283 Constant cst = list.get(i); local
    [all...]
MemberIdItem.java 19 import com.android.dexgen.rop.cst.CstMemberRef;
20 import com.android.dexgen.rop.cst.CstNat;
33 private final CstMemberRef cst; field in class:MemberIdItem
38 * @param cst {@code non-null;} the constant for the member
40 public MemberIdItem(CstMemberRef cst) {
41 super(cst.getDefiningClass());
43 this.cst = cst;
66 CstNat nat = cst.getNat();
72 out.annotate(0, indexString() + ' ' + cst.toHuman())
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/rop/cst/
ConstantPool.java 17 package com.android.dexgen.rop.cst;
CstMethodRef.java 17 package com.android.dexgen.rop.cst;
  /dalvik/dx/src/com/android/dx/rop/cst/
ConstantPool.java 17 package com.android.dx.rop.cst;
CstMethodRef.java 17 package com.android.dx.rop.cst;

Completed in 366 milliseconds

1 2 3 4 5 6 7 8 91011>>