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

1 2 3 4 5 6 7 8 91011>>

  /external/dexmaker/src/dx/java/com/android/dx/rop/cst/
CstChar.java 17 package com.android.dx.rop.cst;
CstDouble.java 17 package com.android.dx.rop.cst;
CstFieldRef.java 17 package com.android.dx.rop.cst;
CstFloat.java 17 package com.android.dx.rop.cst;
CstShort.java 17 package com.android.dx.rop.cst;
Zeroes.java 17 package com.android.dx.rop.cst;
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
DalvCode.java 19 import com.android.dexgen.rop.cst.Constant;
226 * @param cst {@code non-null;} the constant
230 public int getIndex(Constant cst);
OutputFinisher.java 24 import com.android.dexgen.rop.cst.Constant;
25 import com.android.dexgen.rop.cst.CstMemberRef;
26 import com.android.dexgen.rop.cst.CstType;
27 import com.android.dexgen.rop.cst.CstUtf8;
163 Constant cst = ((CstInsn) insn).getConstant(); local
164 result.add(cst);
306 Constant cst = insn.getConstant(); local
307 int index = callback.getIndex(cst);
313 if (cst instanceof CstMemberRef) {
314 CstMemberRef member = (CstMemberRef) cst;
    [all...]
InsnFormat.java 20 import com.android.dexgen.rop.cst.Constant;
21 import com.android.dexgen.rop.cst.CstInteger;
22 import com.android.dexgen.rop.cst.CstKnownNull;
23 import com.android.dexgen.rop.cst.CstLiteral64;
24 import com.android.dexgen.rop.cst.CstLiteralBits;
276 Constant cst = ci.getConstant(); local
278 return cst.toHuman();
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
ProtoIdsSection.java 19 import com.android.dexgen.rop.cst.Constant;
56 public IndexedItem get(Constant cst) {
CodeItem.java 26 import com.android.dexgen.rop.cst.Constant;
27 import com.android.dexgen.rop.cst.CstMemberRef;
28 import com.android.dexgen.rop.cst.CstMethodRef;
29 import com.android.dexgen.rop.cst.CstType;
201 public int getIndex(Constant cst) {
202 IndexedItem item = file.findItemOrNull(cst);
  /dalvik/dx/src/com/android/dx/cf/code/
BasicBlocker.java 19 import com.android.dx.rop.cst.Constant;
20 import com.android.dx.rop.cst.CstMemberRef;
21 import com.android.dx.rop.cst.CstString;
22 import com.android.dx.rop.cst.CstType;
199 Constant cst, int value) {
202 if ((cst instanceof CstMemberRef) || (cst instanceof CstType) ||
203 (cst instanceof CstString)) {
Simulator.java 20 import com.android.dx.rop.cst.Constant;
21 import com.android.dx.rop.cst.CstFieldRef;
22 import com.android.dx.rop.cst.CstInteger;
23 import com.android.dx.rop.cst.CstInterfaceMethodRef;
24 import com.android.dx.rop.cst.CstMethodRef;
25 import com.android.dx.rop.cst.CstType;
617 Constant cst, int value) {
624 Type fieldType = ((CstFieldRef) cst).getType();
635 Type fieldType = ((CstFieldRef) cst).getType();
644 cst = ((CstInterfaceMethodRef) cst).toMethodRef()
    [all...]
  /dalvik/dx/src/com/android/dx/cf/direct/
AttributeFactory.java 23 import com.android.dx.rop.cst.ConstantPool;
24 import com.android.dx.rop.cst.CstString;
  /dalvik/dx/src/com/android/dx/dex/code/
DalvCode.java 19 import com.android.dx.rop.cst.Constant;
225 * @param cst {@code non-null;} the constant
229 public int getIndex(Constant cst);
OutputFinisher.java 26 import com.android.dx.rop.cst.Constant;
27 import com.android.dx.rop.cst.CstMemberRef;
28 import com.android.dx.rop.cst.CstString;
29 import com.android.dx.rop.cst.CstType;
172 Constant cst = ((CstInsn) insn).getConstant(); local
173 result.add(cst);
316 Constant cst = insn.getConstant(); local
317 int index = callback.getIndex(cst);
323 if (cst instanceof CstMemberRef) {
324 CstMemberRef member = (CstMemberRef) cst;
    [all...]
  /dalvik/dx/src/com/android/dx/dex/file/
ProtoIdsSection.java 19 import com.android.dx.rop.cst.Constant;
55 public IndexedItem get(Constant cst) {
  /external/dexmaker/src/dx/java/com/android/dx/dex/code/
DalvCode.java 19 import com.android.dx.rop.cst.Constant;
226 * @param cst {@code non-null;} the constant
230 public int getIndex(Constant cst);
OutputFinisher.java 26 import com.android.dx.rop.cst.Constant;
27 import com.android.dx.rop.cst.CstMemberRef;
28 import com.android.dx.rop.cst.CstType;
29 import com.android.dx.rop.cst.CstString;
172 Constant cst = ((CstInsn) insn).getConstant(); local
173 result.add(cst);
316 Constant cst = insn.getConstant(); local
317 int index = callback.getIndex(cst);
323 if (cst instanceof CstMemberRef) {
324 CstMemberRef member = (CstMemberRef) cst;
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/dex/file/
ProtoIdsSection.java 19 import com.android.dx.rop.cst.Constant;
56 public IndexedItem get(Constant cst) {
CodeItem.java 26 import com.android.dx.rop.cst.Constant;
27 import com.android.dx.rop.cst.CstMemberRef;
28 import com.android.dx.rop.cst.CstMethodRef;
29 import com.android.dx.rop.cst.CstType;
201 public int getIndex(Constant cst) {
202 IndexedItem item = file.findItemOrNull(cst);
  /dalvik/dx/src/com/android/dx/ssa/
LiteralOpUpgrader.java 28 import com.android.dx.rop.cst.Constant;
29 import com.android.dx.rop.cst.CstLiteralBits;
183 * @param cst {@code null-ok;} constant for new instruction, if any
186 RegisterSpecList newSources, int newOpcode, Constant cst) {
189 Rop newRop = Rops.ropFor(newOpcode, insn.getResult(), newSources, cst);
191 if (cst == null) {
196 insn.getResult(), newSources, cst);
  /external/dexmaker/src/dx/java/com/android/dx/ssa/
LiteralOpUpgrader.java 28 import com.android.dx.rop.cst.Constant;
29 import com.android.dx.rop.cst.CstLiteralBits;
184 * @param cst {@code null-ok;} constant for new instruction, if any
187 RegisterSpecList newSources, int newOpcode, Constant cst) {
190 Rop newRop = Rops.ropFor(newOpcode, insn.getResult(), newSources, cst);
192 if (cst == null) {
197 insn.getResult(), newSources, cst);
  /external/chromium_org/third_party/openssl/openssl/crypto/ocsp/
ocsp_prn.c 189 OCSP_CERTSTATUS *cst = NULL; local
237 cst = single->certStatus;
239 OCSP_cert_status_str(cst->type)) <= 0)
241 if (cst->type == V_OCSP_CERTSTATUS_REVOKED)
243 rev = cst->value.revoked;
  /external/openssl/crypto/ocsp/
ocsp_prn.c 189 OCSP_CERTSTATUS *cst = NULL; local
237 cst = single->certStatus;
239 OCSP_cert_status_str(cst->type)) <= 0)
241 if (cst->type == V_OCSP_CERTSTATUS_REVOKED)
243 rev = cst->value.revoked;

Completed in 1681 milliseconds

1 2 3 4 5 6 7 8 91011>>