Searched refs:commonExpr (Results 1 - 2 of 2) sorted by relevance

/freebsd-current/contrib/llvm-project/clang/lib/Sema/
H A DSemaExpr.cpp9729 Expr *commonExpr = nullptr; local
9731 commonExpr = CondExpr;
9735 if (commonExpr->hasPlaceholderType()) {
9736 ExprResult result = CheckPlaceholderExpr(commonExpr);
9738 commonExpr = result.get();
9743 && !commonExpr->isTypeDependent()
9744 && commonExpr->getValueKind() == RHSExpr->getValueKind()
9745 && commonExpr->isGLValue()
9746 && commonExpr->isOrdinaryOrBitFieldObject()
9748 && Context.hasSameType(commonExpr
[all...]
H A DTreeTransform.h11657 ExprResult commonExpr = getDerived().TransformExpr(e->getCommon());
11658 if (commonExpr.isInvalid())
11666 commonExpr.get() == e->getCommon() &&
11670 return getDerived().RebuildConditionalOperator(commonExpr.get(),

Completed in 230 milliseconds