HomeSort by relevance Sort by last modified time
    Searched defs:cst (Results 76 - 100 of 219) sorted by null

1 2 34 5 6 7 8 9

  /dalvik/dexgen/src/com/android/dexgen/rop/cst/
CstBaseMethodRef.java 17 package com.android.dexgen.rop.cst;
CstKnownNull.java 17 package com.android.dexgen.rop.cst;
StdConstantPool.java 17 package com.android.dexgen.rop.cst;
94 * @param cst {@code null-ok;} the constant to store
96 public void set(int n, Constant cst) {
99 boolean cat2 = (cst != null) && cst.isCategory2();
109 "cst.isCategory2()");
114 if ((cst != null) && (entries[n] == null)) {
125 entries[n] = cst;
  /dalvik/dx/src/com/android/dx/cf/cst/
ConstantTags.java 17 package com.android.dx.cf.cst;
  /dalvik/dx/src/com/android/dx/dex/code/form/
Form22c.java 23 import com.android.dx.rop.cst.Constant;
24 import com.android.dx.rop.cst.CstFieldRef;
25 import com.android.dx.rop.cst.CstType;
87 Constant cst = ci.getConstant(); local
88 return (cst instanceof CstType) ||
89 (cst instanceof CstFieldRef);
Form31i.java 23 import com.android.dx.rop.cst.Constant;
24 import com.android.dx.rop.cst.CstLiteralBits;
77 Constant cst = ci.getConstant(); local
79 if (!(cst instanceof CstLiteralBits)) {
83 return ((CstLiteralBits) cst).fitsInInt();
Form51l.java 23 import com.android.dx.rop.cst.Constant;
24 import com.android.dx.rop.cst.CstLiteral64;
25 import com.android.dx.rop.cst.CstLiteralBits;
78 Constant cst = ci.getConstant(); local
80 return (cst instanceof CstLiteral64);
  /dalvik/dx/src/com/android/dx/rop/code/
DexTranslationAdvice.java 19 import com.android.dx.rop.cst.CstInteger;
68 CstInteger cst = (CstInteger) sourceA.getTypeBearer(); local
69 return cst.fitsIn16Bits();
75 CstInteger cst = (CstInteger) sourceB.getTypeBearer(); local
78 // These have 8 and 16 bit cst representations
86 return cst.fitsIn16Bits();
87 // These only have 8 bit cst reps
91 return cst.fitsIn8Bits();
94 CstInteger cst2 = CstInteger.make(-cst.getValue());
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/rop/cst/
CstAnnotation.java 17 package com.android.dx.rop.cst;
CstBaseMethodRef.java 17 package com.android.dx.rop.cst;
CstKnownNull.java 17 package com.android.dx.rop.cst;
StdConstantPool.java 17 package com.android.dx.rop.cst;
94 * @param cst {@code null-ok;} the constant to store
96 public void set(int n, Constant cst) {
99 boolean cat2 = (cst != null) && cst.isCategory2();
109 "cst.isCategory2()");
114 if ((cst != null) && (entries[n] == null)) {
125 entries[n] = cst;
  /external/dexmaker/src/dx/java/com/android/dx/dex/code/form/
Form22c.java 23 import com.android.dx.rop.cst.Constant;
24 import com.android.dx.rop.cst.CstFieldRef;
25 import com.android.dx.rop.cst.CstType;
88 Constant cst = ci.getConstant(); local
89 return (cst instanceof CstType) ||
90 (cst instanceof CstFieldRef);
Form31i.java 23 import com.android.dx.rop.cst.Constant;
24 import com.android.dx.rop.cst.CstLiteralBits;
78 Constant cst = ci.getConstant(); local
80 if (!(cst instanceof CstLiteralBits)) {
84 return ((CstLiteralBits) cst).fitsInInt();
Form51l.java 23 import com.android.dx.rop.cst.Constant;
24 import com.android.dx.rop.cst.CstLiteral64;
25 import com.android.dx.rop.cst.CstLiteralBits;
79 Constant cst = ci.getConstant(); local
81 return (cst instanceof CstLiteral64);
Form52c.java 23 import com.android.dx.rop.cst.Constant;
24 import com.android.dx.rop.cst.CstFieldRef;
25 import com.android.dx.rop.cst.CstType;
86 Constant cst = ci.getConstant(); local
88 return (cst instanceof CstType) ||
89 (cst instanceof CstFieldRef);
  /external/dexmaker/src/dx/java/com/android/dx/rop/code/
DexTranslationAdvice.java 19 import com.android.dx.rop.cst.CstInteger;
68 CstInteger cst = (CstInteger) sourceA.getTypeBearer(); local
69 return cst.fitsIn16Bits();
75 CstInteger cst = (CstInteger) sourceB.getTypeBearer(); local
78 // These have 8 and 16 bit cst representations
86 return cst.fitsIn16Bits();
87 // These only have 8 bit cst reps
91 return cst.fitsIn8Bits();
94 CstInteger cst2 = CstInteger.make(-cst.getValue());
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/cst/
CstAnnotation.java 17 package com.android.dx.rop.cst;
CstBaseMethodRef.java 17 package com.android.dx.rop.cst;
CstKnownNull.java 17 package com.android.dx.rop.cst;
StdConstantPool.java 17 package com.android.dx.rop.cst;
94 * @param cst {@code null-ok;} the constant to store
96 public void set(int n, Constant cst) {
99 boolean cat2 = (cst != null) && cst.isCategory2();
109 "cst.isCategory2()");
114 if ((cst != null) && (entries[n] == null)) {
125 entries[n] = cst;
  /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...]
  /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...]

Completed in 1220 milliseconds

1 2 34 5 6 7 8 9