Searched defs:constant (Results 1 - 3 of 3) sorted by relevance

/dalvik/dx/src/com/android/dx/dex/cf/
H A DCfTranslator.java182 * @param constant {@code non-null;} the constant in question
185 private static TypedConstant coerceConstant(TypedConstant constant, argument
187 Type constantType = constant.getType();
190 return constant;
195 return CstBoolean.make(((CstInteger) constant).getValue());
198 return CstByte.make(((CstInteger) constant).getValue());
201 return CstChar.make(((CstInteger) constant).getValue());
204 return CstShort.make(((CstInteger) constant).getValue());
208 constant
[all...]
/dalvik/dx/src/com/android/dx/dex/code/
H A DCstInsn.java24 * Instruction which has a single constant argument in addition
28 /** {@code non-null;} the constant argument for this instruction */
29 private final Constant constant; field in class:CstInsn
32 * {@code >= -1;} the constant pool index for {@link #constant}, or
38 * {@code >= -1;} the constant pool index for the class reference in
39 * {@link #constant} if any, or {@code -1} if not yet set
45 * initially unknown ({@code -1}) as is the constant pool index.
52 * @param constant {@code non-null;} constant argumen
54 CstInsn(Dop opcode, SourcePosition position, RegisterSpecList registers, Constant constant) argument
[all...]
/dalvik/libcore/xml/src/main/java/org/apache/xml/dtm/ref/
H A DDTMDefaultBaseIterators.java2063 * @param constant (Not sure what this is yet. -sb)
2065 public SingletonIterator(int node, boolean constant) argument
2068 _isConstant = constant;

Completed in 174 milliseconds