Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/
H A DStmt.cpp1045 SwitchStmtBits.HasInit = HasInit; in SwitchStmt()
1046 SwitchStmtBits.HasVar = HasVar; in SwitchStmt()
1047 SwitchStmtBits.AllEnumCasesCovered = false; in SwitchStmt()
1061 SwitchStmtBits.HasInit = HasInit; in SwitchStmt()
1062 SwitchStmtBits.HasVar = HasVar; in SwitchStmt()
1063 SwitchStmtBits.AllEnumCasesCovered = false; in SwitchStmt()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/
H A DStmt.h1010 SwitchStmtBitfields SwitchStmtBits; member
2180 bool hasInitStorage() const { return SwitchStmtBits.HasInit; } in hasInitStorage()
2183 bool hasVarStorage() const { return SwitchStmtBits.HasVar; } in hasVarStorage()
2258 SourceLocation getSwitchLoc() const { return SwitchStmtBits.SwitchLoc; } in getSwitchLoc()
2259 void setSwitchLoc(SourceLocation L) { SwitchStmtBits.SwitchLoc = L; } in setSwitchLoc()
2279 void setAllEnumCasesCovered() { SwitchStmtBits.AllEnumCasesCovered = true; } in setAllEnumCasesCovered()
2284 return SwitchStmtBits.AllEnumCasesCovered; in isAllEnumCasesCovered()