HomeSort by relevance Sort by last modified time
    Searched refs:cst (Results 26 - 50 of 734) sorted by null

12 3 4 5 6 7 8 91011>>

  /dalvik/dx/src/com/android/dx/rop/code/
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();
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());
  /dalvik/dx/src/com/android/dx/dex/file/
DexFile.java 22 import com.android.dx.rop.cst.Constant;
23 import com.android.dx.rop.cst.CstBaseMethodRef;
24 import com.android.dx.rop.cst.CstCallSite;
25 import com.android.dx.rop.cst.CstCallSiteRef;
26 import com.android.dx.rop.cst.CstEnumRef;
27 import com.android.dx.rop.cst.CstFieldRef;
28 import com.android.dx.rop.cst.CstMethodHandle;
29 import com.android.dx.rop.cst.CstProtoRef;
30 import com.android.dx.rop.cst.CstString;
31 import com.android.dx.rop.cst.CstType
    [all...]
CallSiteIdsSection.java 18 import com.android.dx.rop.cst.Constant;
19 import com.android.dx.rop.cst.CstCallSite;
20 import com.android.dx.rop.cst.CstCallSiteRef;
46 public IndexedItem get(Constant cst) {
47 if (cst == null) {
48 throw new NullPointerException("cst == null");
52 IndexedItem result = callSiteIds.get((CstCallSiteRef) cst);
MethodHandlesSection.java 18 import com.android.dx.rop.cst.Constant;
19 import com.android.dx.rop.cst.CstMethodHandle;
32 public IndexedItem get(Constant cst) {
33 if (cst == null) {
34 throw new NullPointerException("cst == null");
38 IndexedItem result = methodHandles.get((CstMethodHandle) cst);
ProtoIdsSection.java 19 import com.android.dx.rop.cst.Constant;
20 import com.android.dx.rop.cst.CstProtoRef;
56 public IndexedItem get(Constant cst) {
57 if (cst == null) {
58 throw new NullPointerException("cst == null");
61 if (!(cst instanceof CstProtoRef)) {
62 throw new IllegalArgumentException("cst not instance of CstProtoRef");
66 CstProtoRef protoRef = (CstProtoRef) cst;
HeaderSection.java 19 import com.android.dx.rop.cst.Constant;
47 public IndexedItem get(Constant cst) {
  /dalvik/dexgen/src/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;
CstInterfaceMethodRef.java 17 package com.android.dexgen.rop.cst;
  /dalvik/dx/src/com/android/dx/rop/cst/
StdConstantPool.java 17 package com.android.dx.rop.cst;
103 * @param cst {@code null-ok;} the constant to store
105 public void set(int n, Constant cst) {
108 boolean cat2 = (cst != null) && cst.isCategory2();
118 "cst.isCategory2()");
123 if ((cst != null) && (entries[n] == null)) {
134 entries[n] = cst;
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
DexFile.java 20 import com.android.dexgen.rop.cst.Constant;
21 import com.android.dexgen.rop.cst.CstBaseMethodRef;
22 import com.android.dexgen.rop.cst.CstEnumRef;
23 import com.android.dexgen.rop.cst.CstFieldRef;
24 import com.android.dexgen.rop.cst.CstString;
25 import com.android.dexgen.rop.cst.CstType;
26 import com.android.dexgen.rop.cst.CstUtf8;
420 * @param cst {@code non-null;} constant to possibly intern
422 /*package*/ void internIfAppropriate(Constant cst) {
423 if (cst instanceof CstString)
    [all...]
StringIdsSection.java 19 import com.android.dexgen.rop.cst.Constant;
20 import com.android.dexgen.rop.cst.CstNat;
21 import com.android.dexgen.rop.cst.CstString;
22 import com.android.dexgen.rop.cst.CstUtf8;
59 public IndexedItem get(Constant cst) {
60 if (cst == null) {
61 throw new NullPointerException("cst == null");
66 if (cst instanceof CstString) {
67 cst = ((CstString) cst).getString()
    [all...]
HeaderSection.java 19 import com.android.dexgen.rop.cst.Constant;
48 public IndexedItem get(Constant cst) {
  /toolchain/binutils/binutils-2.25/opcodes/
h8300-dis.c 80 int *cst,
88 *cst = thisnib & 3;
104 *cst *= 2;
107 *cst *= 4;
118 *cst *= 2;
121 *cst *= 4;
129 *cst = data[0];
134 *cst = (data[0] << 8) + data [1];
137 *cst = (short) *cst; /* Sign extend. *
322 int cst[3] = { 0, 0, 0 }; local
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/dex/code/form/
Form22c.java 23 import com.android.dexgen.rop.cst.Constant;
24 import com.android.dexgen.rop.cst.CstFieldRef;
25 import com.android.dexgen.rop.cst.CstString;
26 import com.android.dexgen.rop.cst.CstType;
87 Constant cst = ci.getConstant(); local
88 return (cst instanceof CstType) ||
89 (cst instanceof CstFieldRef);
Form21c.java 24 import com.android.dexgen.rop.cst.Constant;
25 import com.android.dexgen.rop.cst.CstFieldRef;
26 import com.android.dexgen.rop.cst.CstString;
27 import com.android.dexgen.rop.cst.CstType;
111 Constant cst = ci.getConstant(); local
112 return (cst instanceof CstType) ||
113 (cst instanceof CstFieldRef) ||
114 (cst instanceof CstString);
  /dalvik/dx/src/com/android/dx/cf/iface/
ClassFile.java 20 import com.android.dx.rop.cst.ConstantPool;
21 import com.android.dx.rop.cst.CstString;
22 import com.android.dx.rop.cst.CstType;
StdField.java 20 import com.android.dx.rop.cst.CstNat;
21 import com.android.dx.rop.cst.CstType;
22 import com.android.dx.rop.cst.TypedConstant;
  /dalvik/dx/src/com/android/dx/dex/code/
ArrayData.java 22 import com.android.dx.rop.cst.Constant;
23 import com.android.dx.rop.cst.CstLiteral32;
24 import com.android.dx.rop.cst.CstLiteral64;
25 import com.android.dx.rop.cst.CstType;
124 Constant cst = values.get(i); local
125 out.writeByte((byte) ((CstLiteral32) cst).getIntBits());
131 Constant cst = values.get(i); local
132 out.writeShort((short) ((CstLiteral32) cst).getIntBits());
138 Constant cst = values.get(i); local
139 out.writeInt(((CstLiteral32) cst).getIntBits())
145 Constant cst = values.get(i); local
    [all...]
  /dalvik/dx/src/com/android/dx/cf/attrib/
AttEnclosingMethod.java 19 import com.android.dx.rop.cst.CstNat;
20 import com.android.dx.rop.cst.CstType;
  /dalvik/dx/src/com/android/dx/dex/code/form/
Form21c.java 24 import com.android.dx.rop.cst.Constant;
25 import com.android.dx.rop.cst.CstFieldRef;
26 import com.android.dx.rop.cst.CstString;
27 import com.android.dx.rop.cst.CstType;
107 Constant cst = ci.getConstant(); local
113 return (cst instanceof CstType) ||
114 (cst instanceof CstFieldRef) ||
115 (cst instanceof CstString);
Form31c.java 24 import com.android.dx.rop.cst.Constant;
25 import com.android.dx.rop.cst.CstFieldRef;
26 import com.android.dx.rop.cst.CstString;
27 import com.android.dx.rop.cst.CstType;
106 Constant cst = ci.getConstant(); local
108 return (cst instanceof CstType) ||
109 (cst instanceof CstFieldRef) ||
110 (cst instanceof CstString);
  /dalvik/dx/src/com/android/dx/ssa/
ConstCollector.java 29 import com.android.dx.rop.cst.Constant;
30 import com.android.dx.rop.cst.CstString;
31 import com.android.dx.rop.cst.TypedConstant;
105 TypedConstant cst = constantList.get(i); local
107 = RegisterSpec.make(ssaMeth.makeNewSsaReg(), cst);
109 Rop constRop = Rops.opConst(cst);
113 new PlainCstInsn(Rops.opConst(cst),
115 RegisterSpecList.EMPTY, cst));
129 StdTypeList.EMPTY, cst));
144 newRegs.put(cst, result)
181 TypedConstant cst = (TypedConstant) typeBearer; local
347 TypedConstant cst = (TypedConstant) typeBearer; local
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/rop/
StdField.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;
22 import com.android.dexgen.rop.cst.TypedConstant;
  /dalvik/dexgen/src/com/android/dexgen/rop/code/
DexTranslationAdvice.java 19 import com.android.dexgen.rop.cst.CstInteger;
67 CstInteger cst = (CstInteger) sourceB.getTypeBearer(); local
71 // These have 8 and 16 bit cst representations
79 return cst.fitsIn16Bits();
80 // These only have 8 bit cst reps
84 return cst.fitsIn8Bits();

Completed in 486 milliseconds

12 3 4 5 6 7 8 91011>>