Home | History | Annotate | Download | only in Sema

Lines Matching refs:ResultTy

5563   QualType ResultTy = CompositeTy.withCVRQualifiers(MergedCVRQual);
5565 ResultTy = S.Context.getBlockPointerType(ResultTy);
5567 ResultTy = S.Context.getPointerType(ResultTy);
5569 LHS = S.ImpCastExprToType(LHS.get(), ResultTy, CK_BitCast);
5570 RHS = S.ImpCastExprToType(RHS.get(), ResultTy, CK_BitCast);
5571 return ResultTy;
7964 QualType ResultTy = Context.getLogicalOperationType();
7968 return ResultTy;
7975 return ResultTy;
8005 return ResultTy;
8021 return ResultTy;
8028 return ResultTy;
8060 return ResultTy;
8066 return ResultTy;
8078 return ResultTy;
8088 return ResultTy;
8097 return ResultTy;
8105 return ResultTy;
8121 return ResultTy;
8145 return ResultTy;
8176 return ResultTy;
8190 return ResultTy;
8226 return ResultTy;
8233 return ResultTy;
8238 return ResultTy;
9330 QualType ResultTy; // Result type of the binary operator.
9339 ResultTy = CheckAssignmentOperands(LHS.get(), RHS, OpLoc, QualType());
9345 if (!ResultTy.isNull())
9350 ResultTy = CheckPointerToMemberOperands(LHS, RHS, VK, OpLoc,
9355 ResultTy = CheckMultiplyDivideOperands(LHS, RHS, OpLoc, false,
9359 ResultTy = CheckRemainderOperands(LHS, RHS, OpLoc);
9362 ResultTy = CheckAdditionOperands(LHS, RHS, OpLoc, Opc);
9365 ResultTy = CheckSubtractionOperands(LHS, RHS, OpLoc);
9369 ResultTy = CheckShiftOperands(LHS, RHS, OpLoc, Opc);
9375 ResultTy = CheckCompareOperands(LHS, RHS, OpLoc, Opc, true);
9379 ResultTy = CheckCompareOperands(LHS, RHS, OpLoc, Opc, false);
9385 ResultTy = CheckBitwiseOperands(LHS, RHS, OpLoc);
9389 ResultTy = CheckLogicalOperands(LHS, RHS, OpLoc, Opc);
9397 ResultTy = CheckAssignmentOperands(LHS.get(), RHS, OpLoc, CompResultTy);
9403 ResultTy = CheckAssignmentOperands(LHS.get(), RHS, OpLoc, CompResultTy);
9408 ResultTy = CheckAssignmentOperands(LHS.get(), RHS, OpLoc, CompResultTy);
9413 ResultTy = CheckAssignmentOperands(LHS.get(), RHS, OpLoc, CompResultTy);
9420 ResultTy = CheckAssignmentOperands(LHS.get(), RHS, OpLoc, CompResultTy);
9429 ResultTy = CheckAssignmentOperands(LHS.get(), RHS, OpLoc, CompResultTy);
9432 ResultTy = CheckCommaOperands(*this, LHS, RHS, OpLoc);
9439 if (ResultTy.isNull() || LHS.isInvalid() || RHS.isInvalid())
9465 return new (Context) BinaryOperator(LHS.get(), RHS.get(), Opc, ResultTy, VK,
9473 LHS.get(), RHS.get(), Opc, ResultTy, VK, OK, CompLHSTy, CompResultTy,