HomeSort by relevance Sort by last modified time
    Searched refs:srcType (Results 1 - 9 of 9) sorted by null

  /dalvik/vm/native/
java_lang_System.cpp 155 char srcType = srcClass->descriptor[1];
162 bool srcPrim = (srcType != '[' && srcType != 'L');
165 if (srcPrim != dstPrim || srcType != dstType) {
171 srcType, dstArray->contents, dstPos,
174 switch (srcType) {
java_lang_reflect_Field.cpp 573 PrimitiveType srcType = dexGetPrimitiveTypeFromDescriptorChar(descriptor);
583 if (dvmConvertPrimitiveValue(srcType, fieldType->primitiveType,
  /dalvik/vm/reflect/
Reflect.cpp 896 int dvmConvertPrimitiveValue(PrimitiveType srcType,
905 assert((srcType != PRIM_VOID) && (srcType != PRIM_NOT));
912 conv = (srcType == dstType) ? OK4 : bad;
916 switch (srcType) {
924 switch (srcType) {
934 switch (srcType) {
945 switch (srcType) {
957 switch (srcType) {
988 dexGetPrimitiveTypeDescriptor(srcType),
    [all...]
Reflect.h 74 int dvmConvertPrimitiveValue(PrimitiveType srcType,
  /dalvik/vm/analysis/
CodeVerify.cpp 262 * Determine whether we can convert "srcType" to "checkType", where
267 static bool canConvertTo1nr(RegType srcType, RegType checkType)
294 LOG_VFY("Unexpected checkType %d (srcType=%d)", checkType, srcType);
300 //printf("convTab[%d][%d] = %d\n", srcType, checkType,
301 // convTab[srcType-kRegType1nrSTART][checkType-kRegType1nrSTART]);
302 if (srcType >= kRegType1nrSTART && srcType <= kRegType1nrEND)
303 return (bool) convTab[srcType-kRegType1nrSTART][checkType-kRegType1nrSTART];
311 static bool canConvertTo2(RegType srcType, RegType checkType
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/compiler/
ExpressionTranslator.java 356 private JavaExpression infix(Type destType, Type srcType, String infix, PExpression leftNode,
358 JavaExpression left = cast(srcType, leftNode);
359 JavaExpression right = cast(srcType, rightNode);
363 private JavaExpression prefix(Type destType, Type srcType, String prefix, PExpression node) {
364 return JavaExpression.prefix(destType, prefix, cast(srcType, node));