Lines Matching refs:Seq
99 static bool containsAnyInGroup(StmtSequence &Seq, in containsAnyInGroup() argument
102 if (Seq.contains(GroupSeq)) in containsAnyInGroup()
420 const StmtSequence &Seq, std::size_t Limit, in calculateStmtComplexity() argument
422 if (Seq.empty()) in calculateStmtComplexity()
427 ASTContext &Context = Seq.getASTContext(); in calculateStmtComplexity()
431 data_collection::getMacroStack(Seq.getBeginLoc(), Context); in calculateStmtComplexity()
447 if (Seq.holdsSequence()) { in calculateStmtComplexity()
448 for (const Stmt *S : Seq) { in calculateStmtComplexity()
450 StmtSequence(S, Seq.getContainingDecl()), Limit, MacroStack); in calculateStmtComplexity()
455 for (const Stmt *S : Seq.front()->children()) { in calculateStmtComplexity()
457 StmtSequence(S, Seq.getContainingDecl()), Limit, MacroStack); in calculateStmtComplexity()