HomeSort by: relevance | last modified time | path
    Searched defs:LHSResult (Results 1 - 3 of 3) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyldChecker.cpp 46 EvalResult LHSResult;
47 std::tie(LHSResult, RemainingExpr) =
49 if (LHSResult.hasError())
50 return handleError(Expr, LHSResult);
64 if (LHSResult.getValue() != RHSResult.getValue()) {
66 << format("0x%" PRIx64, LHSResult.getValue())
186 EvalResult computeBinOpResult(BinOpToken Op, const EvalResult &LHSResult,
192 return EvalResult(LHSResult.getValue() + RHSResult.getValue());
194 return EvalResult(LHSResult.getValue() - RHSResult.getValue());
196 return EvalResult(LHSResult.getValue() & RHSResult.getValue())
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Analysis/
CFG.cpp 1203 Expr::EvalResult LHSResult;
1204 if (Bop->getLHS()->EvaluateAsInt(LHSResult, *Context)) {
1205 llvm::APSInt IntVal = LHSResult.Val.getInt();
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaExpr.cpp 8220 ExprResult LHSResult = CheckPlaceholderExpr(LHS.get());
8221 if (!LHSResult.isUsable()) return QualType();
8222 LHS = LHSResult;
8720 ExprResult LHSResult = CorrectDelayedTyposInExpr(LHSExpr);
8727 if (!LHSResult.isUsable())
8735 LHSExpr = LHSResult.get();
10877 Expr::EvalResult LHSResult;
10880 !LHS.get()->EvaluateAsInt(LHSResult, S.Context))
10882 llvm::APSInt Left = LHSResult.Val.getInt();
12447 ExprResult LHSResult = LHS, RHSResult = RHS
    [all...]

Completed in 42 milliseconds