Home | History | Annotate | Download | only in Sema

Lines Matching defs:ResTy

3009   QualType ResTy;
3012 ResTy = Context.DependentTy;
3021 ResTy = Context.WideCharTy.withConst();
3023 ConvertUTF8ToWideString(Context.getTypeSizeInChars(ResTy).getQuantity(),
3025 ResTy = Context.getConstantArrayType(ResTy, LengthI, ArrayType::Normal,
3028 /*Pascal*/ false, ResTy, Loc);
3030 ResTy = Context.CharTy.withConst();
3031 ResTy = Context.getConstantArrayType(ResTy, LengthI, ArrayType::Normal,
3034 /*Pascal*/ false, ResTy, Loc);
3038 return new (Context) PredefinedExpr(Loc, ResTy, IT, SL);
6126 QualType ResTy = OpenCLArithmeticConversions(S, LHS, RHS, QuestionLoc);
6127 if (ResTy.isNull()) return QualType();
6134 QualType VectorTy = S.Context.getExtVectorType(ResTy, NumElements);
6138 != S.Context.getTypeSize(ResTy)) {
6141 std::string EleTyName = ResTy.getUnqualifiedType().getAsString();
6279 QualType ResTy = UsualArithmeticConversions(LHS, RHS);
6289 LHS = ImpCastExprToType(LHS.get(), ResTy, PrepareScalarCast(LHS, ResTy));
6290 RHS = ImpCastExprToType(RHS.get(), ResTy, PrepareScalarCast(RHS, ResTy));
6292 return ResTy;