Searched refs:cst (Results 51 - 75 of 176) sorted by relevance

12345678

/external/dexmaker/src/dx/java/com/android/dx/dex/file/
H A DMethodIdItem.java19 import com.android.dx.rop.cst.CstBaseMethodRef;
H A DAnnotationUtils.java21 import com.android.dx.rop.cst.Constant;
22 import com.android.dx.rop.cst.CstAnnotation;
23 import com.android.dx.rop.cst.CstArray;
24 import com.android.dx.rop.cst.CstInteger;
25 import com.android.dx.rop.cst.CstKnownNull;
26 import com.android.dx.rop.cst.CstMethodRef;
27 import com.android.dx.rop.cst.CstString;
28 import com.android.dx.rop.cst.CstType;
H A DTypeIdItem.java20 import com.android.dx.rop.cst.CstType;
21 import com.android.dx.rop.cst.CstString;
H A DUniformItemSection.java19 import com.android.dx.rop.cst.Constant;
63 * @param cst {@code non-null;} constant to look for
66 public abstract IndexedItem get(Constant cst); argument
H A DClassDefsSection.java19 import com.android.dx.rop.cst.Constant;
20 import com.android.dx.rop.cst.CstType;
67 public IndexedItem get(Constant cst) { argument
68 if (cst == null) {
69 throw new NullPointerException("cst == null");
74 Type type = ((CstType) cst).getClassType();
/external/dexmaker/src/dx/java/com/android/dx/rop/cst/
H A DCstBoolean.java17 package com.android.dx.rop.cst;
H A DCstKnownNull.java17 package com.android.dx.rop.cst;
H A DCstLiteral32.java17 package com.android.dx.rop.cst;
H A DCstLiteral64.java17 package com.android.dx.rop.cst;
H A DCstLong.java17 package com.android.dx.rop.cst;
H A DCstAnnotation.java17 package com.android.dx.rop.cst;
H A DCstByte.java17 package com.android.dx.rop.cst;
H A DCstChar.java17 package com.android.dx.rop.cst;
H A DCstDouble.java17 package com.android.dx.rop.cst;
H A DCstFieldRef.java17 package com.android.dx.rop.cst;
H A DCstFloat.java17 package com.android.dx.rop.cst;
H A DCstShort.java17 package com.android.dx.rop.cst;
H A DZeroes.java17 package com.android.dx.rop.cst;
/external/dexmaker/src/dx/java/com/android/dx/rop/annotation/
H A DNameValuePair.java19 import com.android.dx.rop.cst.Constant;
20 import com.android.dx.rop.cst.CstString;
/external/mockito/cglib-and-asm/src/org/mockito/asm/tree/analysis/
H A DBasicInterpreter.java105 Object cst = ((LdcInsnNode) insn).cst;
106 if (cst instanceof Integer) {
108 } else if (cst instanceof Float) {
110 } else if (cst instanceof Long) {
112 } else if (cst instanceof Double) {
114 } else if (cst instanceof Type) {
117 return newValue(Type.getType(cst.getClass()));
H A DSourceInterpreter.java64 Object cst = ((LdcInsnNode) insn).cst;
65 size = cst instanceof Long || cst instanceof Double ? 2 : 1;
/external/dexmaker/src/dx/java/com/android/dx/dex/code/
H A DDalvInsnList.java20 import com.android.dx.rop.cst.Constant;
21 import com.android.dx.rop.cst.CstBaseMethodRef;
198 Constant cst = ((CstInsn) insn).getConstant();
200 if (!(cst instanceof CstBaseMethodRef)) {
207 ((CstBaseMethodRef) cst).getParameterWordCount(isStatic);
H A DInsnFormat.java21 import com.android.dx.rop.cst.Constant;
22 import com.android.dx.rop.cst.CstInteger;
23 import com.android.dx.rop.cst.CstKnownNull;
24 import com.android.dx.rop.cst.CstLiteral64;
25 import com.android.dx.rop.cst.CstLiteralBits;
26 import com.android.dx.rop.cst.CstString;
338 Constant cst = ci.getConstant();
340 return cst instanceof CstString ? ((CstString) cst).toQuoted() : cst
[all...]
/external/mesa3d/src/gallium/winsys/radeon/drm/
H A Dradeon_drm_cs.c188 cs->cst = &cs->csc2;
429 radeon_drm_cs_emit_ioctl_oneshot(cs->cst);
458 cs->csc = cs->cst;
459 cs->cst = tmp;
463 unsigned i, crelocs = cs->cst->crelocs;
465 cs->cst->chunks[0].length_dw = cs->base.cdw;
469 p_atomic_inc(&cs->cst->relocs_bo[i]->num_active_ioctls);
472 cs->cst->flags[0] = 0;
473 cs->cst->flags[1] = RADEON_CS_RING_GFX;
474 cs->cst
[all...]
/external/dexmaker/src/main/java/com/google/dexmaker/
H A DMethodId.java19 import com.android.dx.rop.cst.CstMethodRef;
20 import com.android.dx.rop.cst.CstNat;
21 import com.android.dx.rop.cst.CstString;

Completed in 3901 milliseconds

12345678