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

/external/llvm/lib/TableGen/
H A DTGParser.cpp1528 Init *RHSResult = ParseValue(CurRec, ItemType, ParseNameMode); local
1529 RHS = dyn_cast<TypedInit>(RHSResult);
/external/clang/lib/Sema/
H A DSemaExpr.cpp5441 ExprResult RHSResult = CheckPlaceholderExpr(RHS.get()); local
5442 if (!RHSResult.isUsable()) return QualType();
5443 RHS = RHSResult;
7943 ExprResult LHSResult = Owned(LHS), RHSResult = Owned(RHS); local
7944 QualType compType = UsualArithmeticConversions(LHSResult, RHSResult,
7946 if (LHSResult.isInvalid() || RHSResult.isInvalid())
7949 RHS = RHSResult.take();

Completed in 147 milliseconds