Home
last modified time | relevance | path

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

/external/clang/include/clang/AST/
DStmt.h652 SwitchCase *NextSwitchCase;
657 : Stmt(SC), NextSwitchCase(nullptr), KeywordLoc(KWLoc), ColonLoc(ColonLoc) { in SwitchCase()
661 : Stmt(SC), NextSwitchCase(nullptr) {} in SwitchCase()
664 const SwitchCase *getNextSwitchCase() const { return NextSwitchCase; } in getNextSwitchCase()
666 SwitchCase *getNextSwitchCase() { return NextSwitchCase; } in getNextSwitchCase()
668 void setNextSwitchCase(SwitchCase *SC) { NextSwitchCase = SC; } in setNextSwitchCase()
/external/llvm-project/clang/include/clang/AST/
DStmt.h1531 SwitchCase *NextSwitchCase = nullptr; variable
1541 const SwitchCase *getNextSwitchCase() const { return NextSwitchCase; } in getNextSwitchCase()
1542 SwitchCase *getNextSwitchCase() { return NextSwitchCase; } in getNextSwitchCase()
1543 void setNextSwitchCase(SwitchCase *SC) { NextSwitchCase = SC; } in setNextSwitchCase()