Home | History | Annotate | Download | only in Sema

Lines Matching defs:ResultTy

5334   QualType ResultTy = CompositeTy.withCVRQualifiers(MergedCVRQual);
5336 ResultTy = S.Context.getBlockPointerType(ResultTy);
5338 ResultTy = S.Context.getPointerType(ResultTy);
5340 LHS = S.ImpCastExprToType(LHS.take(), ResultTy, CK_BitCast);
5341 RHS = S.ImpCastExprToType(RHS.take(), ResultTy, CK_BitCast);
5342 return ResultTy;
7587 QualType ResultTy = Context.getLogicalOperationType();
7591 return ResultTy;
7598 return ResultTy;
7616 return ResultTy;
7632 return ResultTy;
7639 return ResultTy;
7667 return ResultTy;
7673 return ResultTy;
7685 return ResultTy;
7695 return ResultTy;
7704 return ResultTy;
7712 return ResultTy;
7728 return ResultTy;
7752 return ResultTy;
7782 return ResultTy;
7796 return ResultTy;
7832 return ResultTy;
7839 return ResultTy;
7844 return ResultTy;
8897 QualType ResultTy; // Result type of the binary operator.
8906 ResultTy = CheckAssignmentOperands(LHS.get(), RHS, OpLoc, QualType());
8912 if (!ResultTy.isNull())
8917 ResultTy = CheckPointerToMemberOperands(LHS, RHS, VK, OpLoc,
8922 ResultTy = CheckMultiplyDivideOperands(LHS, RHS, OpLoc, false,
8926 ResultTy = CheckRemainderOperands(LHS, RHS, OpLoc);
8929 ResultTy = CheckAdditionOperands(LHS, RHS, OpLoc, Opc);
8932 ResultTy = CheckSubtractionOperands(LHS, RHS, OpLoc);
8936 ResultTy = CheckShiftOperands(LHS, RHS, OpLoc, Opc);
8942 ResultTy = CheckCompareOperands(LHS, RHS, OpLoc, Opc, true);
8946 ResultTy = CheckCompareOperands(LHS, RHS, OpLoc, Opc, false);
8952 ResultTy = CheckBitwiseOperands(LHS, RHS, OpLoc);
8956 ResultTy = CheckLogicalOperands(LHS, RHS, OpLoc, Opc);
8964 ResultTy = CheckAssignmentOperands(LHS.get(), RHS, OpLoc, CompResultTy);
8970 ResultTy = CheckAssignmentOperands(LHS.get(), RHS, OpLoc, CompResultTy);
8975 ResultTy = CheckAssignmentOperands(LHS.get(), RHS, OpLoc, CompResultTy);
8980 ResultTy = CheckAssignmentOperands(LHS.get(), RHS, OpLoc, CompResultTy);
8987 ResultTy = CheckAssignmentOperands(LHS.get(), RHS, OpLoc, CompResultTy);
8995 ResultTy = CheckAssignmentOperands(LHS.get(), RHS, OpLoc, CompResultTy);
8998 ResultTy = CheckCommaOperands(*this, LHS, RHS, OpLoc);
9005 if (ResultTy.isNull() || LHS.isInvalid() || RHS.isInvalid())
9032 ResultTy, VK, OK, OpLoc,
9040 ResultTy, VK, OK, CompLHSTy,