HomeSort by: relevance | last modified time | path
    Searched refs:SwitchStmtBits (Results 1 - 2 of 2) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/AST/
Stmt.cpp 1045 SwitchStmtBits.HasInit = HasInit;
1046 SwitchStmtBits.HasVar = HasVar;
1047 SwitchStmtBits.AllEnumCasesCovered = false;
1061 SwitchStmtBits.HasInit = HasInit;
1062 SwitchStmtBits.HasVar = HasVar;
1063 SwitchStmtBits.AllEnumCasesCovered = false;
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
Stmt.h 1010 SwitchStmtBitfields SwitchStmtBits;
2180 bool hasInitStorage() const { return SwitchStmtBits.HasInit; }
2183 bool hasVarStorage() const { return SwitchStmtBits.HasVar; }
2258 SourceLocation getSwitchLoc() const { return SwitchStmtBits.SwitchLoc; }
2259 void setSwitchLoc(SourceLocation L) { SwitchStmtBits.SwitchLoc = L; }
2279 void setAllEnumCasesCovered() { SwitchStmtBits.AllEnumCasesCovered = true; }
2284 return SwitchStmtBits.AllEnumCasesCovered;

Completed in 25 milliseconds