Home | History | Annotate | Download | only in Sema

Lines Matching defs:ResultTy

4025   QualType ResultTy;
4027 ResultTy = OriginalTy->getPointeeType();
4029 ResultTy = OriginalTy->getAsArrayTypeUnsafe()->getElementType();
4069 if (ResultTy->isFunctionType()) {
4071 << ResultTy << Base->getSourceRange();
4075 if (RequireCompleteType(Base->getExprLoc(), ResultTy,
5962 QualType ResultTy = CompositeTy.withCVRQualifiers(MergedCVRQual);
5964 ResultTy = S.Context.getBlockPointerType(ResultTy);
5966 ResultTy = S.Context.getPointerType(ResultTy);
5968 LHS = S.ImpCastExprToType(LHS.get(), ResultTy, CK_BitCast);
5969 RHS = S.ImpCastExprToType(RHS.get(), ResultTy, CK_BitCast);
5970 return ResultTy;
8711 QualType ResultTy = Context.getLogicalOperationType();
8715 return ResultTy;
8722 return ResultTy;
8752 return ResultTy;
8768 return ResultTy;
8775 return ResultTy;
8817 return ResultTy;
8823 return ResultTy;
8835 return ResultTy;
8845 return ResultTy;
8854 return ResultTy;
8862 return ResultTy;
8878 return ResultTy;
8902 return ResultTy;
8933 return ResultTy;
8947 return ResultTy;
8983 return ResultTy;
8990 return ResultTy;
8995 return ResultTy;
10278 QualType ResultTy; // Result type of the binary operator.
10310 ResultTy = InvalidOperands(OpLoc, LHS, RHS);
10317 ResultTy = CheckAssignmentOperands(LHS.get(), RHS, OpLoc, QualType());
10323 if (!ResultTy.isNull()) {
10331 ResultTy = CheckPointerToMemberOperands(LHS, RHS, VK, OpLoc,
10336 ResultTy = CheckMultiplyDivideOperands(LHS, RHS, OpLoc, false,
10340 ResultTy = CheckRemainderOperands(LHS, RHS, OpLoc);
10343 ResultTy = CheckAdditionOperands(LHS, RHS, OpLoc, Opc);
10346 ResultTy = CheckSubtractionOperands(LHS, RHS, OpLoc);
10350 ResultTy = CheckShiftOperands(LHS, RHS, OpLoc, Opc);
10356 ResultTy = CheckCompareOperands(LHS, RHS, OpLoc, Opc, true);
10360 ResultTy = CheckCompareOperands(LHS, RHS, OpLoc, Opc, false);
10366 ResultTy = CheckBitwiseOperands(LHS, RHS, OpLoc);
10370 ResultTy = CheckLogicalOperands(LHS, RHS, OpLoc, Opc);
10378 ResultTy = CheckAssignmentOperands(LHS.get(), RHS, OpLoc, CompResultTy);
10384 ResultTy = CheckAssignmentOperands(LHS.get(), RHS, OpLoc, CompResultTy);
10389 ResultTy = CheckAssignmentOperands(LHS.get(), RHS, OpLoc, CompResultTy);
10394 ResultTy = CheckAssignmentOperands(LHS.get(), RHS, OpLoc, CompResultTy);
10401 ResultTy = CheckAssignmentOperands(LHS.get(), RHS, OpLoc, CompResultTy);
10410 ResultTy = CheckAssignmentOperands(LHS.get(), RHS, OpLoc, CompResultTy);
10413 ResultTy = CheckCommaOperands(*this, LHS, RHS, OpLoc);
10420 if (ResultTy.isNull() || LHS.isInvalid() || RHS.isInvalid())
10446 return new (Context) BinaryOperator(LHS.get(), RHS.get(), Opc, ResultTy, VK,
10454 LHS.get(), RHS.get(), Opc, ResultTy, VK, OK, CompLHSTy, CompResultTy,