Searched defs:LHSResult (Results 1 - 2 of 2) sorted by relevance

/external/clang/lib/AST/
H A DExprConstant.cpp4464 EvalResult LHSResult; // meaningful only for binary operator expression. member in struct:__anon3638::DataRecursiveIntBinOpEvaluator::Job
4535 bool VisitBinOpLHSOnly(EvalResult &LHSResult, const BinaryOperator *E,
4538 bool VisitBinOp(const EvalResult &LHSResult, const EvalResult &RHSResult,
4560 VisitBinOpLHSOnly(EvalResult &LHSResult, const BinaryOperator *E, argument
4564 if (LHSResult.Failed)
4571 if (HandleConversionToBool(LHSResult.Val, lhsResult)) {
4575 Success(lhsResult, E, LHSResult.Val);
4595 if (LHSResult.Failed && !Info.keepEvaluatingAfterFailure())
4602 VisitBinOp(const EvalResult &LHSResult, const EvalResult &RHSResult, argument
4613 bool LHSIsOK = HandleConversionToBool(LHSResult
6692 ICEDiag LHSResult = CheckICE(Exp->getLHS(), Ctx); local
6724 ICEDiag LHSResult = CheckICE(Exp->getLHS(), Ctx); local
[all...]
/external/clang/lib/Sema/
H A DSemaExpr.cpp5036 ExprResult LHSResult = CheckPlaceholderExpr(LHS.get()); local
5037 if (!LHSResult.isUsable()) return QualType();
5038 LHS = LHSResult;
7496 ExprResult LHSResult = Owned(LHS), RHSResult = Owned(RHS); local
7497 QualType compType = UsualArithmeticConversions(LHSResult, RHSResult,
7499 if (LHSResult.isInvalid() || RHSResult.isInvalid())
7501 LHS = LHSResult.take();

Completed in 1603 milliseconds