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));
  /external/javassist/src/main/javassist/compiler/
CodeGen.java 897 private boolean invalidDim(int srcType, int srcDim, String srcClass,
902 if (srcType == NULL)
907 else if (isCast && srcDim == 0 && srcType == CLASS
    [all...]
  /external/clang/lib/Sema/
SemaCast.cpp 143 static bool CastsAwayConstness(Sema &Self, QualType SrcType, QualType DestType,
168 static TryCastResult TryStaticPointerDowncast(Sema &Self, QualType SrcType,
174 static TryCastResult TryStaticDowncast(Sema &Self, CanQualType SrcType,
182 QualType SrcType,
321 QualType srcType = src->getType();
322 if (!destType->isRecordType() && !srcType->isRecordType())
370 << CT << srcType << destType
450 /// CastsAwayConstness - Check if the pointer conversion from SrcType to
459 CastsAwayConstness(Sema &Self, QualType SrcType, QualType DestType,
471 assert((SrcType->isAnyPointerType() || SrcType->isMemberPointerType() |
    [all...]
  /external/sqlite/dist/
sqlite3.c     [all...]

Completed in 1465 milliseconds