Searched refs:LHSResult (Results 1 - 3 of 3) sorted by relevance

/external/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyldChecker.cpp41 EvalResult LHSResult; local
42 std::tie(LHSResult, RemainingExpr) =
44 if (LHSResult.hasError())
45 return handleError(Expr, LHSResult);
59 if (LHSResult.getValue() != RHSResult.getValue()) {
61 << format("0x%lx", LHSResult.getValue()) << " != "
158 EvalResult computeBinOpResult(BinOpToken Op, const EvalResult &LHSResult, argument
163 return EvalResult(LHSResult.getValue() + RHSResult.getValue());
165 return EvalResult(LHSResult.getValue() - RHSResult.getValue());
167 return EvalResult(LHSResult
523 EvalResult LHSResult; local
[all...]
/external/clang/lib/AST/
H A DExprConstant.cpp6307 EvalResult LHSResult; // meaningful only for binary operator expression.
6378 bool VisitBinOpLHSOnly(EvalResult &LHSResult, const BinaryOperator *E,
6381 bool VisitBinOp(const EvalResult &LHSResult, const EvalResult &RHSResult,
6403 VisitBinOpLHSOnly(EvalResult &LHSResult, const BinaryOperator *E,
6407 if (LHSResult.Failed)
6414 if (!LHSResult.Failed && HandleConversionToBool(LHSResult.Val, LHSAsBool)) {
6418 Success(LHSAsBool, E, LHSResult.Val);
6422 LHSResult.Failed = true;
6441 if (LHSResult
[all...]
/external/clang/lib/Sema/
H A DSemaExpr.cpp5696 ExprResult LHSResult = CheckPlaceholderExpr(LHS.get()); local
5697 if (!LHSResult.isUsable()) return QualType();
5698 LHS = LHSResult;
8338 ExprResult LHSResult = LHS, RHSResult = RHS; local
8339 QualType compType = UsualArithmeticConversions(LHSResult, RHSResult,
8341 if (LHSResult.isInvalid() || RHSResult.isInvalid())
8343 LHS = LHSResult.get();

Completed in 2168 milliseconds