HomeSort by relevance Sort by last modified time
    Searched refs:cst (Results 1 - 25 of 734) 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...]
PlainInsn.java 19 import com.android.dx.rop.cst.Constant;
20 import com.android.dx.rop.cst.CstInteger;
113 Constant cst = (Constant) firstType; local
116 newSources, cst);
118 newSources, cst);
123 Constant cst = (Constant) lastType; local
131 if (opcode == RegOps.SUB && cst instanceof CstInteger) {
133 cst = CstInteger.make(-((CstInteger)cst).getValue());
135 newRop = Rops.ropFor(opcode, getResult(), newSources, cst);
    [all...]
  /dalvik/dx/src/com/android/dx/cf/code/
BootstrapMethodArgumentsList.java 18 import com.android.dx.rop.cst.Constant;
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.CstMethodHandle;
24 import com.android.dx.rop.cst.CstProtoRef;
25 import com.android.dx.rop.cst.CstString;
26 import com.android.dx.rop.cst.CstType;
57 * @param cst {@code Constant} instanc
    [all...]
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/arm/
group-reloc-ldc-encoding-bad.s 7 .macro ldctest load store cst
9 \load 0, c0, [r0, #:pc_g0:(f + \cst)]
10 \load 0, c0, [r0, #:pc_g1:(f + \cst)]
11 \load 0, c0, [r0, #:pc_g2:(f + \cst)]
13 \load 0, c0, [r0, #:sb_g0:(f + \cst)]
14 \load 0, c0, [r0, #:sb_g1:(f + \cst)]
15 \load 0, c0, [r0, #:sb_g2:(f + \cst)]
17 \store 0, c0, [r0, #:pc_g0:(f + \cst)]
18 \store 0, c0, [r0, #:pc_g1:(f + \cst)]
19 \store 0, c0, [r0, #:pc_g2:(f + \cst)]
    [all...]
  /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.CstCallSite;
28 import com.android.dx.rop.cst.CstChar;
29 import com.android.dx.rop.cst.CstDouble;
30 import com.android.dx.rop.cst.CstEnumRef;
31 import com.android.dx.rop.cst.CstFieldRef
305 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...]
  /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;
Field.java 19 import com.android.dx.rop.cst.TypedConstant;
  /external/dexmaker/dexmaker/src/main/java/com/android/dx/
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/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/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
159 Constant cst = pool.getOrNull(i); local
260 Constant cst = pool.getOrNull(idx); local
    [all...]
ConstantTags.java 17 package com.android.dx.cf.cst;
MethodHandleKind.java 17 package com.android.dx.cf.cst;
  /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;
  /dalvik/dexgen/src/com/android/dexgen/dex/code/form/
Form31c.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;
105 Constant cst = ci.getConstant(); local
107 return ((cst instanceof CstType) ||
108 (cst instanceof CstFieldRef) ||
109 (cst instanceof CstString));
  /dalvik/dx/src/com/android/dx/dex/code/form/
Form3rc.java 23 import com.android.dx.rop.cst.Constant;
24 import com.android.dx.rop.cst.CstCallSiteRef;
25 import com.android.dx.rop.cst.CstMethodRef;
26 import com.android.dx.rop.cst.CstType;
77 Constant cst = ci.getConstant(); local
83 if (!((cst instanceof CstMethodRef) ||
84 (cst instanceof CstType) ||
85 (cst instanceof CstCallSiteRef))) {

Completed in 596 milliseconds

1 2 3 4 5 6 7 8 91011>>