Home | History | Annotate | Download | only in Sema

Lines Matching refs:castExprType

2935   QualType castExprType = castExpr->getType();
2942 srcKind = (castExprType->isPointerType() ? 1 : 0);
2945 srcKind = (castExprType->isBlockPointerType() ? 2 : 3);
2962 << castExprType
2984 S.Diag(noteLoc, diag::note_arc_cstyle_bridge_transfer) << castExprType :
2987 << castExprType << br;
3002 << unsigned(castExprType->isBlockPointerType()) // of ObjC|block type
3003 << castExprType
3038 << srcKind << castExprType << castType
3045 QualType castExprType = castExpr->getType();
3053 ARCConversionTypeClass exprACTC = classifyTypeForARCConversion(castExprType);
3060 (castType != castExprType)) {