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

/external/clang/lib/AST/
H A DStmt.cpp904 SwitchStmt::SwitchStmt(ASTContext &C, VarDecl *Var, Expr *cond) function in class:SwitchStmt
912 VarDecl *SwitchStmt::getConditionVariable() const {
920 void SwitchStmt::setConditionVariable(ASTContext &C, VarDecl *V) {
/external/clang/include/clang/AST/
H A DStmt.h43 class SwitchStmt;
634 // used by SwitchStmt.
912 /// SwitchStmt - This represents a 'switch' stmt.
914 class SwitchStmt : public Stmt { class in namespace:clang
921 /// If the SwitchStmt is a switch on an enum value, this records whether
927 SwitchStmt(ASTContext &C, VarDecl *Var, Expr *cond);
930 explicit SwitchStmt(EmptyShell Empty) : Stmt(SwitchStmtClass, Empty) { } function in class:clang::SwitchStmt
944 /// If this SwitchStmt has a condition variable, return the faux DeclStmt
980 /// Set a flag in the SwitchStmt indicating that if the 'switch (X)' is a
986 /// Returns true if the SwitchStmt i
[all...]

Completed in 86 milliseconds