Searched defs:commonExpr (Results 1 - 2 of 2) sorted by last modified time

/external/clang/lib/Sema/
H A DSemaExpr.cpp6074 Expr *commonExpr = nullptr; local
6076 commonExpr = CondExpr;
6080 if (commonExpr->hasPlaceholderType()) {
6081 ExprResult result = CheckPlaceholderExpr(commonExpr);
6083 commonExpr = result.get();
6088 && !commonExpr->isTypeDependent()
6089 && commonExpr->getValueKind() == RHSExpr->getValueKind()
6090 && commonExpr->isGLValue()
6091 && commonExpr->isOrdinaryOrBitFieldObject()
6093 && Context.hasSameType(commonExpr
[all...]
H A DTreeTransform.h7237 ExprResult commonExpr = getDerived().TransformExpr(e->getCommon()); local
7238 if (commonExpr.isInvalid())
7246 commonExpr.get() == e->getCommon() &&
7250 return getDerived().RebuildConditionalOperator(commonExpr.get(),

Completed in 117 milliseconds