Lines Matching refs:Seq
99 static bool containsAnyInGroup(StmtSequence &Seq, in containsAnyInGroup() argument
102 if (Seq.contains(GroupSeq)) in containsAnyInGroup()
419 const StmtSequence &Seq, std::size_t Limit, in calculateStmtComplexity() argument
421 if (Seq.empty()) in calculateStmtComplexity()
426 ASTContext &Context = Seq.getASTContext(); in calculateStmtComplexity()
430 data_collection::getMacroStack(Seq.getBeginLoc(), Context); in calculateStmtComplexity()
446 if (Seq.holdsSequence()) { in calculateStmtComplexity()
447 for (const Stmt *S : Seq) { in calculateStmtComplexity()
449 StmtSequence(S, Seq.getContainingDecl()), Limit, MacroStack); in calculateStmtComplexity()
454 for (const Stmt *S : Seq.front()->children()) { in calculateStmtComplexity()
456 StmtSequence(S, Seq.getContainingDecl()), Limit, MacroStack); in calculateStmtComplexity()