Searched defs:SwitchStmt (Results 1 - 2 of 2) sorted by relevance

/external/clang/lib/AST/
H A DStmt.cpp942 SwitchStmt::SwitchStmt(const ASTContext &C, VarDecl *Var, Expr *cond) function in class:SwitchStmt
949 VarDecl *SwitchStmt::getConditionVariable() const {
957 void SwitchStmt::setConditionVariable(const ASTContext &C, VarDecl *V) {
/external/clang/include/clang/AST/
H A DStmt.h48 class SwitchStmt;
649 // used by SwitchStmt.
944 /// SwitchStmt - This represents a 'switch' stmt.
946 class SwitchStmt : public Stmt { class in namespace:clang
951 // SwitchStmt is a switch on an enum value, records whether all the enum
957 SwitchStmt(const ASTContext &C, VarDecl *Var, Expr *cond);
960 explicit SwitchStmt(EmptyShell Empty) : Stmt(SwitchStmtClass, Empty) { } function in class:clang::SwitchStmt
974 /// If this SwitchStmt has a condition variable, return the faux DeclStmt
1007 /// Set a flag in the SwitchStmt indicating that if the 'switch (X)' is a
1011 /// Returns true if the SwitchStmt i
[all...]

Completed in 107 milliseconds