OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:SwitchStmt
(Results
1 - 2
of
2
) sorted by null
/external/clang/lib/AST/
Stmt.cpp
884
SwitchStmt
::
SwitchStmt
(ASTContext &C, VarDecl *Var, Expr *cond)
892
VarDecl *
SwitchStmt
::getConditionVariable() const {
900
void
SwitchStmt
::setConditionVariable(ASTContext &C, VarDecl *V) {
[
all
...]
/external/clang/include/clang/AST/
Stmt.h
48
class
SwitchStmt
;
625
// used by
SwitchStmt
.
910
///
SwitchStmt
- This represents a 'switch' stmt.
912
class
SwitchStmt
: public Stmt {
919
/// If the
SwitchStmt
is a switch on an enum value, this records whether
925
SwitchStmt
(ASTContext &C, VarDecl *Var, Expr *cond);
928
explicit
SwitchStmt
(EmptyShell Empty) : Stmt(SwitchStmtClass, Empty) { }
942
/// If this
SwitchStmt
has a condition variable, return the faux DeclStmt
975
/// Set a flag in the
SwitchStmt
indicating that if the 'switch (X)' is a
[
all
...]
Completed in 1238 milliseconds