|
bool | hasInitStorage () const |
| True if this SwitchStmt has storage for an init statement. More...
|
|
bool | hasVarStorage () const |
| True if this SwitchStmt has storage for a condition variable. More...
|
|
Expr * | getCond () |
|
const Expr * | getCond () const |
|
void | setCond (Expr *Cond) |
|
Stmt * | getBody () |
|
const Stmt * | getBody () const |
|
void | setBody (Stmt *Body) |
|
Stmt * | getInit () |
|
const Stmt * | getInit () const |
|
void | setInit (Stmt *Init) |
|
VarDecl * | getConditionVariable () |
| Retrieve the variable declared in this "switch" statement, if any. More...
|
|
const VarDecl * | getConditionVariable () const |
|
void | setConditionVariable (const ASTContext &Ctx, VarDecl *VD) |
| Set the condition variable in this switch statement. More...
|
|
DeclStmt * | getConditionVariableDeclStmt () |
| If this SwitchStmt has a condition variable, return the faux DeclStmt associated with the creation of that condition variable. More...
|
|
const DeclStmt * | getConditionVariableDeclStmt () const |
|
SwitchCase * | getSwitchCaseList () |
|
const SwitchCase * | getSwitchCaseList () const |
|
void | setSwitchCaseList (SwitchCase *SC) |
|
SourceLocation | getSwitchLoc () const |
|
void | setSwitchLoc (SourceLocation L) |
|
void | setBody (Stmt *S, SourceLocation SL) |
|
void | addSwitchCase (SwitchCase *SC) |
|
void | setAllEnumCasesCovered () |
| Set a flag in the SwitchStmt indicating that if the 'switch (X)' is a switch over an enum value then all cases have been explicitly covered. More...
|
|
bool | isAllEnumCasesCovered () const |
| Returns true if the SwitchStmt is a switch of an enum value and all cases have been explicitly covered. More...
|
|
SourceLocation | getBeginLoc () const |
|
SourceLocation | getEndLoc () const LLVM_READONLY |
|
child_range | children () |
|
const_child_range | children () const |
|
void * | operator new (size_t bytes, const ASTContext &C, unsigned alignment=8) |
|
void * | operator new (size_t bytes, const ASTContext *C, unsigned alignment=8) |
|
void * | operator new (size_t bytes, void *mem) noexcept |
|
void | operator delete (void *, const ASTContext &, unsigned) noexcept |
|
void | operator delete (void *, const ASTContext *, unsigned) noexcept |
|
void | operator delete (void *, size_t) noexcept |
|
void | operator delete (void *, void *) noexcept |
|
| Stmt ()=delete |
|
| Stmt (const Stmt &)=delete |
|
| Stmt (Stmt &&)=delete |
|
Stmt & | operator= (const Stmt &)=delete |
|
Stmt & | operator= (Stmt &&)=delete |
|
| Stmt (StmtClass SC) |
|
StmtClass | getStmtClass () const |
|
const char * | getStmtClassName () const |
|
bool | isOMPStructuredBlock () const |
|
void | setIsOMPStructuredBlock (bool IsOMPStructuredBlock) |
|
SourceRange | getSourceRange () const LLVM_READONLY |
| SourceLocation tokens are not useful in isolation - they are low level value objects created/interpreted by SourceManager. More...
|
|
SourceLocation | getBeginLoc () const LLVM_READONLY |
|
SourceLocation | getEndLoc () const LLVM_READONLY |
|
void | dump () const |
| Dumps the specified AST fragment and all subtrees to llvm::errs() . More...
|
|
void | dump (SourceManager &SM) const |
|
void | dump (raw_ostream &OS, SourceManager &SM) const |
|
void | dump (raw_ostream &OS) const |
|
int64_t | getID (const ASTContext &Context) const |
|
void | dumpColor () const |
| dumpColor - same as dump(), but forces color highlighting. More...
|
|
void | dumpPretty (const ASTContext &Context) const |
| dumpPretty/printPretty - These two methods do a "pretty print" of the AST back to its original source language syntax. More...
|
|
void | printPretty (raw_ostream &OS, PrinterHelper *Helper, const PrintingPolicy &Policy, unsigned Indentation=0, StringRef NewlineSymbol="\, const ASTContext *Context=nullptr) const |
|
void | printJson (raw_ostream &Out, PrinterHelper *Helper, const PrintingPolicy &Policy, bool AddQuotes) const |
| Pretty-prints in JSON format. More...
|
|
void | viewAST () const |
| viewAST - Visualize an AST rooted at this Stmt* using GraphViz. More...
|
|
Stmt * | IgnoreContainers (bool IgnoreCaptured=false) |
| Skip no-op (attributed, compound) container stmts and skip captured stmt at the top, if IgnoreCaptured is true. More...
|
|
const Stmt * | IgnoreContainers (bool IgnoreCaptured=false) const |
|
const Stmt * | stripLabelLikeStatements () const |
| Strip off all label-like statements. More...
|
|
Stmt * | stripLabelLikeStatements () |
|
child_range | children () |
|
const_child_range | children () const |
|
child_iterator | child_begin () |
|
child_iterator | child_end () |
|
const_child_iterator | child_begin () const |
|
const_child_iterator | child_end () const |
|
void | Profile (llvm::FoldingSetNodeID &ID, const ASTContext &Context, bool Canonical) const |
| Produce a unique representation of the given statement. More...
|
|
void | ProcessODRHash (llvm::FoldingSetNodeID &ID, ODRHash &Hash) const |
| Calculate a unique representation for a statement that is stable across compiler invocations. More...
|
|
SwitchStmt - This represents a 'switch' stmt.
Definition at line 2017 of file Stmt.h.