Searched defs:RHSResult (Results 1 - 3 of 3) sorted by relevance

/external/llvm/lib/TableGen/
H A DTGParser.cpp1528 Init *RHSResult = ParseValue(CurRec, ItemType, ParseNameMode); local
1529 RHS = dynamic_cast<TypedInit *>(RHSResult);
/external/clang/lib/AST/
H A DExprConstant.cpp4520 bool VisitBinOp(const EvalResult &LHSResult, const EvalResult &RHSResult,
4584 VisitBinOp(const EvalResult &LHSResult, const EvalResult &RHSResult, argument
4587 if (RHSResult.Failed)
4589 Result = RHSResult.Val;
4596 bool RHSIsOK = HandleConversionToBool(RHSResult.Val, rhsResult);
4620 if (LHSResult.Failed || RHSResult.Failed)
4624 const APValue &RHSVal = RHSResult.Val;
6637 ICEDiag RHSResult = CheckICE(Exp->getRHS(), Ctx); local
6642 if (LHSResult.Val == 0 && RHSResult.Val == 0) {
6657 if (LHSResult.Val == 0 && RHSResult
6671 ICEDiag RHSResult = CheckICE(Exp->getRHS(), Ctx); local
[all...]
/external/clang/lib/Sema/
H A DSemaExpr.cpp4902 ExprResult RHSResult = CheckPlaceholderExpr(RHS.get()); local
4903 if (!RHSResult.isUsable()) return QualType();
4904 RHS = RHSResult;
7351 ExprResult LHSResult = Owned(LHS), RHSResult = Owned(RHS); local
7352 QualType compType = UsualArithmeticConversions(LHSResult, RHSResult,
7354 if (LHSResult.isInvalid() || RHSResult.isInvalid())
7357 RHS = RHSResult.take();

Completed in 422 milliseconds