Searched defs:LHSResult (Results 1 - 2 of 2) 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/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 397 milliseconds