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

  /src/external/apache2/llvm/dist/clang/include/clang/Sema/
SemaConcept.h 106 NormalizedConstraint(C, Other.getLHS()),
131 NormalizedConstraint &getLHS() const {
132 assert(!isAtomic() && "getLHS called on atomic constraint.");
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaConcept.cpp 41 LHS = BO->getLHS();
54 const Expr *getLHS() const { return LHS; }
68 return CheckConstraintExpression(BO.getLHS(), NextToken,
129 if (calculateConstraintSatisfaction(S, BO.getLHS(), Satisfaction,
533 diagnoseWellFormedUnsatisfiedConstraintExpr(S, BO->getLHS(), First);
539 BO->getLHS()->EvaluateKnownConstInt(S.Context).getBoolValue();
546 diagnoseWellFormedUnsatisfiedConstraintExpr(S, BO->getLHS(), First);
562 if (BO->getLHS()->getType()->isIntegerType() &&
566 BO->getLHS()->EvaluateAsInt(SimplifiedLHS, S.Context,
684 if (substituteParameterMappings(S, N.getLHS(), Concept, TemplateArgs
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
SymbolManager.h 378 LHSTYPE getLHS() const { return LHS; }
  /src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
ScalarEvolutionExpressions.h 315 const SCEV *getLHS() const { return Operands[0]; }
320 return i == 0 ? getLHS() : getRHS();
658 push(UDiv->getLHS());
782 auto *LHS = ((SC *)this)->visit(Expr->getLHS());
784 bool Changed = LHS != Expr->getLHS() || RHS != Expr->getRHS();
ScalarEvolution.h 283 const SCEV *getLHS() const { return LHS; }
  /src/external/apache2/llvm/dist/llvm/include/llvm/IR/
IntrinsicInst.h 487 Value *getLHS() const { return const_cast<Value *>(getArgOperand(0)); }
535 Value *getLHS() const { return const_cast<Value *>(getArgOperand(0)); }
  /src/external/apache2/llvm/dist/clang/include/clang/ASTMatchers/
ASTMatchersInternal.h 2126 template <typename NodeType> inline const Expr *getLHS(const NodeType &Node) {
2127 return Node.getLHS();
2131 getLHS<CXXOperatorCallExpr>(const CXXOperatorCallExpr &Node) {
  /src/external/apache2/llvm/dist/llvm/include/llvm/TableGen/
Record.h 844 case 0: return getLHS();
850 Init *getLHS() const { return LHS; }
900 case 0: return getLHS();
907 Init *getLHS() const { return LHS; }
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
ExprCXX.h 333 const Expr *getLHS() const { return getDecomposedForm().LHS; }
4610 Expr *getLHS() const { return static_cast<Expr*>(SubExprs[SubExpr::LHS]); }
4615 return getLHS() && getLHS()->containsUnexpandedParameterPack();
4622 Expr *getPattern() const { return isLeftFold() ? getRHS() : getLHS(); }
4625 Expr *getInit() const { return isLeftFold() ? getLHS() : getRHS(); }
4643 return getLHS()->getBeginLoc();
Expr.h 2599 /// - getLHS() and getRHS() present the syntactic view. e.g. for
2600 /// 4[A] getLHS() returns "4".
2605 Expr *getLHS() { return cast<Expr>(SubExprs[LHS]); }
2606 const Expr *getLHS() const { return cast<Expr>(SubExprs[LHS]); }
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(); }
2620 return getLHS()->getBeginLoc();
3778 Expr *getLHS() const { return cast<Expr>(SubExprs[LHS]);
    [all...]
Stmt.h 1655 Expr *getLHS() {
1659 const Expr *getLHS() const {

Completed in 33 milliseconds