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

  /src/external/apache2/llvm/dist/clang/include/clang/Sema/
SemaConcept.h 107 NormalizedConstraint(C, Other.getRHS())},
136 NormalizedConstraint &getRHS() const {
137 assert(!isAtomic() && "getRHS called on atomic constraint.");
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaConcept.cpp 42 RHS = BO->getRHS();
55 const Expr *getRHS() const { return RHS; }
70 CheckConstraintExpression(BO.getRHS(), NextToken,
154 S, BO.getRHS(), Satisfaction, std::forward<AtomicEvaluator>(Evaluator));
534 diagnoseWellFormedUnsatisfiedConstraintExpr(S, BO->getRHS(),
542 diagnoseWellFormedUnsatisfiedConstraintExpr(S, BO->getRHS(), First);
550 BO->getRHS()->EvaluateKnownConstInt(S.Context).getBoolValue();
552 diagnoseWellFormedUnsatisfiedConstraintExpr(S, BO->getRHS(),
563 BO->getRHS()->getType()->isIntegerType()) {
569 BO->getRHS()->EvaluateAsInt(SimplifiedRHS, S.Context
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
SymbolManager.h 379 RHSTYPE getRHS() const { return RHS; }
  /src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
ScalarEvolutionExpressions.h 316 const SCEV *getRHS() const { return Operands[1]; }
320 return i == 0 ? getLHS() : getRHS();
335 return getRHS()->getType();
659 push(UDiv->getRHS());
783 auto *RHS = ((SC *)this)->visit(Expr->getRHS());
784 bool Changed = LHS != Expr->getLHS() || RHS != Expr->getRHS();
ScalarEvolution.h 286 const SCEV *getRHS() const { return RHS; }
  /src/external/apache2/llvm/dist/llvm/include/llvm/IR/
IntrinsicInst.h 488 Value *getRHS() const { return const_cast<Value *>(getArgOperand(1)); }
536 Value *getRHS() const { return const_cast<Value *>(getArgOperand(1)); }
  /src/external/apache2/llvm/dist/clang/include/clang/ASTMatchers/
ASTMatchersInternal.h 2136 template <typename NodeType> inline const Expr *getRHS(const NodeType &Node) {
2137 return Node.getRHS();
2141 getRHS<CXXOperatorCallExpr>(const CXXOperatorCallExpr &Node) {
  /src/external/apache2/llvm/dist/llvm/include/llvm/TableGen/
Record.h 845 case 1: return getRHS();
851 Init *getRHS() const { return RHS; }
902 case 2: return getRHS();
909 Init *getRHS() const { return RHS; }
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
ExprCXX.h 334 const Expr *getRHS() const { return getDecomposedForm().RHS; }
4611 Expr *getRHS() const { return static_cast<Expr*>(SubExprs[SubExpr::RHS]); }
4622 Expr *getPattern() const { return isLeftFold() ? getRHS() : getLHS(); }
4625 Expr *getInit() const { return isLeftFold() ? getLHS() : getRHS(); }
4651 return getRHS()->getEndLoc();
Expr.h 2580 bool lhsIsBase() const { return getRHS()->getType()->isIntegerType(); }
2599 /// - getLHS() and getRHS() present the syntactic view. e.g. for
2609 Expr *getRHS() { return cast<Expr>(SubExprs[RHS]); }
2610 const Expr *getRHS() const { return cast<Expr>(SubExprs[RHS]); }
2613 Expr *getBase() { return lhsIsBase() ? getLHS() : getRHS(); }
2614 const Expr *getBase() const { return lhsIsBase() ? getLHS() : getRHS(); }
2616 Expr *getIdx() { return lhsIsBase() ? getRHS() : getLHS(); }
2617 const Expr *getIdx() const { return lhsIsBase() ? getRHS() : getLHS(); }
3780 Expr *getRHS() const { return cast<Expr>(SubExprs[RHS]); }
3787 return getRHS()->getEndLoc()
    [all...]
Stmt.h 1633 /// is a GNU extension. In this case the RHS can be obtained with getRHS()
1667 Expr *getRHS() {
1673 const Expr *getRHS() const {

Completed in 78 milliseconds