Home | History | Annotate | Download | only in Sema

Lines Matching refs:QuestionLoc

4446                                       SourceLocation QuestionLoc) {
4474 Diag(QuestionLoc, diag::err_typecheck_cond_incompatible_operands_null)
4709 SourceLocation QuestionLoc) {
4721 return CXXCheckConditionalOperands(Cond, LHS, RHS, VK, OK, QuestionLoc);
4746 return CheckVectorOperands(LHS, RHS, QuestionLoc, /*isCompAssign*/false);
4788 QuestionLoc);
4798 QuestionLoc);
4803 QuestionLoc);
4807 if (checkPointerIntegerMismatch(*this, LHS, RHS.get(), QuestionLoc,
4810 if (checkPointerIntegerMismatch(*this, RHS, LHS.get(), QuestionLoc,
4817 if (DiagnoseConditionalForNull(LHS.get(), RHS.get(), QuestionLoc))
4821 Diag(QuestionLoc, diag::err_typecheck_cond_incompatible_operands)
4830 SourceLocation QuestionLoc) {
4911 Diag(QuestionLoc, diag::ext_typecheck_cond_incompatible_operands)
4929 Diag(QuestionLoc, diag::err_cond_voidptr_arc) << LHSTy << RHSTy
4949 Diag(QuestionLoc
5087 ExprResult Sema::ActOnConditionalOp(SourceLocation QuestionLoc,
5125 VK, OK, QuestionLoc);
5130 DiagnoseConditionalPrecedence(*this, QuestionLoc, Cond.get(), LHS.get(),
5134 return Owned(new (Context) ConditionalOperator(Cond.take(), QuestionLoc,
5140 RHS.take(), QuestionLoc, ColonLoc, result, VK,