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

/freebsd-10.0-release/contrib/llvm/tools/clang/include/clang/AST/
H A DStmt.h637 SwitchCase *NextSwitchCase; member in class:clang::SwitchCase
642 : Stmt(SC), NextSwitchCase(0), KeywordLoc(KWLoc), ColonLoc(ColonLoc) {}
645 : Stmt(SC), NextSwitchCase(0) {}
648 const SwitchCase *getNextSwitchCase() const { return NextSwitchCase; }
650 SwitchCase *getNextSwitchCase() { return NextSwitchCase; }
652 void setNextSwitchCase(SwitchCase *SC) { NextSwitchCase = SC; }

Completed in 115 milliseconds