Searched refs:NextSwitchCase (Results 1 - 1 of 1) sorted by relevance

/external/clang/include/clang/AST/
H A DStmt.h644 SwitchCase *NextSwitchCase; member in class:clang::SwitchCase
649 : Stmt(SC), NextSwitchCase(nullptr), KeywordLoc(KWLoc), ColonLoc(ColonLoc) {
653 : Stmt(SC), NextSwitchCase(nullptr) {}
656 const SwitchCase *getNextSwitchCase() const { return NextSwitchCase; }
658 SwitchCase *getNextSwitchCase() { return NextSwitchCase; }
660 void setNextSwitchCase(SwitchCase *SC) { NextSwitchCase = SC; }

Completed in 33 milliseconds