Lines Matching refs:UnrollLoopsCheck
22 UnrollLoopsCheck::UnrollLoopsCheck(StringRef Name, ClangTidyContext *Context) in UnrollLoopsCheck() function in clang::tidy::altera::UnrollLoopsCheck
26 void UnrollLoopsCheck::registerMatchers(MatchFinder *Finder) { in registerMatchers()
37 void UnrollLoopsCheck::check(const MatchFinder::MatchResult &Result) { in check()
78 enum UnrollLoopsCheck::UnrollType
79 UnrollLoopsCheck::unrollType(const Stmt *Statement, ASTContext *Context) { in unrollType()
110 bool UnrollLoopsCheck::hasKnownBounds(const Stmt *Statement, in hasKnownBounds()
149 const Expr *UnrollLoopsCheck::getCondExpr(const Stmt *Statement) { in getCondExpr()
161 bool UnrollLoopsCheck::hasLargeNumIterations(const Stmt *Statement, in hasLargeNumIterations()
232 bool UnrollLoopsCheck::extractValue(int &Value, const BinaryOperator *Op, in extractValue()
250 bool UnrollLoopsCheck::exprHasLargeNumIterations(const Expr *Expression, in exprHasLargeNumIterations()
265 void UnrollLoopsCheck::storeOptions(ClangTidyOptions::OptionMap &Opts) { in storeOptions()