Lines Matching refs:Branches
94 llvm::SmallVector<const Stmt *, 4> Branches; in check() local
98 Branches.push_back(Cur->getThen()); in check()
109 Branches.push_back(Else); in check()
114 size_t N = Branches.size(); in check()
126 !areStatementsIdentical(Branches[i]->IgnoreContainers(), in check()
127 Branches[j]->IgnoreContainers(), Context)) in check()
135 diag(Branches[i]->getBeginLoc(), in check()
138 Lexer::getLocForEndOfToken(Branches[i]->getEndLoc(), 0, in check()
145 diag(Branches[j]->getBeginLoc(), "clone %0 starts here", in check()
177 llvm::SmallVector<SwitchBranch, 4> Branches; in check() local
181 Branches.emplace_back(); in check()
187 if (!Branches.empty()) in check()
188 Branches.back().push_back(S); in check()
191 auto End = Branches.end(); in check()
192 auto BeginCurrent = Branches.begin(); in check()