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

1 2 34 5 6 7 8 91011>>

  /dalvik/dexgen/src/com/android/dexgen/dex/code/form/
Form22b.java 23 import com.android.dexgen.rop.cst.Constant;
24 import com.android.dexgen.rop.cst.CstLiteralBits;
78 Constant cst = ci.getConstant(); local
80 if (!(cst instanceof CstLiteralBits)) {
84 CstLiteralBits cb = (CstLiteralBits) cst;
Form22s.java 23 import com.android.dexgen.rop.cst.Constant;
24 import com.android.dexgen.rop.cst.CstLiteralBits;
78 Constant cst = ci.getConstant(); local
80 if (!(cst instanceof CstLiteralBits)) {
84 CstLiteralBits cb = (CstLiteralBits) cst;
Form31i.java 23 import com.android.dexgen.rop.cst.Constant;
24 import com.android.dexgen.rop.cst.CstLiteralBits;
76 Constant cst = ci.getConstant(); local
78 if (!(cst instanceof CstLiteralBits)) {
82 return ((CstLiteralBits) cst).fitsInInt();
Form51l.java 23 import com.android.dexgen.rop.cst.Constant;
24 import com.android.dexgen.rop.cst.CstLiteral64;
25 import com.android.dexgen.rop.cst.CstLiteralBits;
77 Constant cst = ci.getConstant(); local
79 return (cst instanceof CstLiteral64);
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
FieldIdsSection.java 19 import com.android.dexgen.rop.cst.Constant;
20 import com.android.dexgen.rop.cst.CstFieldRef;
56 public IndexedItem get(Constant cst) {
57 if (cst == null) {
58 throw new NullPointerException("cst == null");
63 IndexedItem result = fieldIds.get((CstFieldRef) cst);
MethodIdsSection.java 19 import com.android.dexgen.rop.cst.Constant;
20 import com.android.dexgen.rop.cst.CstBaseMethodRef;
56 public IndexedItem get(Constant cst) {
57 if (cst == null) {
58 throw new NullPointerException("cst == null");
63 IndexedItem result = methodIds.get((CstBaseMethodRef) cst);
TypeIdsSection.java 19 import com.android.dexgen.rop.cst.Constant;
20 import com.android.dexgen.rop.cst.CstType;
56 public IndexedItem get(Constant cst) {
57 if (cst == null) {
58 throw new NullPointerException("cst == null");
63 Type type = ((CstType) cst).getClassType();
67 throw new IllegalArgumentException("not found: " + cst);
  /dalvik/dx/src/com/android/dx/dex/code/form/
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);
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);
  /dalvik/dx/src/com/android/dx/dex/file/
FieldIdsSection.java 19 import com.android.dx.rop.cst.Constant;
20 import com.android.dx.rop.cst.CstFieldRef;
55 public IndexedItem get(Constant cst) {
56 if (cst == null) {
57 throw new NullPointerException("cst == null");
62 IndexedItem result = fieldIds.get((CstFieldRef) cst);
MethodIdsSection.java 19 import com.android.dx.rop.cst.Constant;
20 import com.android.dx.rop.cst.CstBaseMethodRef;
55 public IndexedItem get(Constant cst) {
56 if (cst == null) {
57 throw new NullPointerException("cst == null");
62 IndexedItem result = methodIds.get((CstBaseMethodRef) cst);
StringIdsSection.java 19 import com.android.dx.rop.cst.Constant;
20 import com.android.dx.rop.cst.CstNat;
21 import com.android.dx.rop.cst.CstString;
57 public IndexedItem get(Constant cst) {
58 if (cst == null) {
59 throw new NullPointerException("cst == null");
64 IndexedItem result = strings.get((CstString) cst);
TypeIdsSection.java 22 import com.android.dx.rop.cst.Constant;
23 import com.android.dx.rop.cst.CstType;
59 public IndexedItem get(Constant cst) {
60 if (cst == null) {
61 throw new NullPointerException("cst == null");
66 Type type = ((CstType) cst).getClassType();
70 throw new IllegalArgumentException("not found: " + cst);
  /external/dexmaker/src/dx/java/com/android/dx/dex/code/form/
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);
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);
Form41c.java 24 import com.android.dx.rop.cst.Constant;
25 import com.android.dx.rop.cst.CstFieldRef;
26 import com.android.dx.rop.cst.CstType;
110 Constant cst = ci.getConstant(); local
112 return (cst instanceof CstType) ||
113 (cst instanceof CstFieldRef);
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/dex/file/
FieldIdsSection.java 19 import com.android.dx.rop.cst.Constant;
20 import com.android.dx.rop.cst.CstFieldRef;
56 public IndexedItem get(Constant cst) {
57 if (cst == null) {
58 throw new NullPointerException("cst == null");
63 IndexedItem result = fieldIds.get((CstFieldRef) cst);
MethodIdsSection.java 19 import com.android.dx.rop.cst.Constant;
20 import com.android.dx.rop.cst.CstBaseMethodRef;
56 public IndexedItem get(Constant cst) {
57 if (cst == null) {
58 throw new NullPointerException("cst == null");
63 IndexedItem result = methodIds.get((CstBaseMethodRef) cst);
  /dalvik/dx/src/com/android/dx/cf/direct/
CodeObserver.java 23 import com.android.dx.rop.cst.Constant;
24 import com.android.dx.rop.cst.CstDouble;
25 import com.android.dx.rop.cst.CstFloat;
26 import com.android.dx.rop.cst.CstInteger;
27 import com.android.dx.rop.cst.CstKnownNull;
28 import com.android.dx.rop.cst.CstLong;
29 import com.android.dx.rop.cst.CstType;
98 Constant cst, int value) {
99 if (cst instanceof CstKnownNull) {
105 if (cst instanceof CstInteger)
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
ArrayData.java 21 import com.android.dexgen.rop.cst.*;
122 Constant cst = values.get(i); local
123 out.writeByte((byte) ((CstLiteral32) cst).getIntBits());
129 Constant cst = values.get(i); local
130 out.writeShort((short) ((CstLiteral32) cst).getIntBits());
136 Constant cst = values.get(i); local
137 out.writeInt(((CstLiteral32) cst).getIntBits());
143 Constant cst = values.get(i); local
144 out.writeLong(((CstLiteral64) cst).getLongBits());
  /dalvik/dexgen/src/com/android/dexgen/rop/annotation/
Annotation.java 19 import com.android.dexgen.rop.cst.Constant;
20 import com.android.dexgen.rop.cst.CstAnnotation;
21 import com.android.dexgen.rop.cst.CstFieldRef;
22 import com.android.dexgen.rop.cst.CstLiteralBits;
23 import com.android.dexgen.rop.cst.CstMethodRef;
24 import com.android.dexgen.rop.cst.CstNat;
25 import com.android.dexgen.rop.cst.CstType;
26 import com.android.dexgen.rop.cst.CstUtf8;
27 import com.android.dexgen.rop.cst.TypedConstant;
  /external/dexmaker/src/dx/java/com/android/dx/dex/code/
ArrayData.java 22 import com.android.dx.rop.cst.*;
122 Constant cst = values.get(i); local
123 out.writeByte((byte) ((CstLiteral32) cst).getIntBits());
129 Constant cst = values.get(i); local
130 out.writeShort((short) ((CstLiteral32) cst).getIntBits());
136 Constant cst = values.get(i); local
137 out.writeInt(((CstLiteral32) cst).getIntBits());
143 Constant cst = values.get(i); local
144 out.writeLong(((CstLiteral64) cst).getLongBits());

Completed in 1354 milliseconds

1 2 34 5 6 7 8 91011>>