HomeSort by relevance Sort by last modified time
    Searched refs:SwitchStmt (Results 1 - 25 of 36) sorted by null

1 2

  /frameworks/compile/slang/
slang_rs_ast_replace.h 77 void VisitSwitchStmt(clang::SwitchStmt *SS);
slang_rs_ast_replace.cpp 149 void RSASTReplace::VisitSwitchStmt(clang::SwitchStmt *SS) {
slang_rs_object_ref_count.cpp 190 // SwitchStmt-contained ContinueStmt's should have destructors for the
262 void VisitSwitchStmt(clang::SwitchStmt *SS);
352 void DestructorVisitor::VisitSwitchStmt(clang::SwitchStmt *SS) {
    [all...]
  /external/clang/include/clang/Sema/
ScopeInfo.h 37 class SwitchStmt;
112 SmallVector<SwitchStmt*, 8> SwitchStack;
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
CoreEngine.h 528 const SwitchStmt *getSwitch() const {
529 return cast<SwitchStmt>(Src->getTerminator());
  /external/clang/lib/ARCMigrate/
TransProtectedScope.cpp 63 bool VisitSwitchStmt(SwitchStmt *S) {
  /external/clang/lib/AST/
ParentMap.cpp 193 return DirectChild == cast<SwitchStmt>(P)->getCond();
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...]
StmtPrinter.cpp 231 void StmtPrinter::VisitSwitchStmt(SwitchStmt *Node) {
    [all...]
StmtProfile.cpp 122 void StmtProfiler::VisitSwitchStmt(const SwitchStmt *S) {
    [all...]
  /external/clang/lib/Sema/
JumpDiagnostics.cpp 327 if (VarDecl *Var = cast<SwitchStmt>(S)->getConditionVariable()) {
515 SwitchStmt *SS = cast<SwitchStmt>(Jump);
AnalysisBasedWarnings.cpp 750 if (Term && isa<SwitchStmt>(Term))
815 bool VisitSwitchStmt(SwitchStmt *S) {
    [all...]
SemaStmt.cpp 653 SwitchStmt *SS = new (Context) SwitchStmt(Context, ConditionVar, Cond);
669 SwitchStmt *SS = cast<SwitchStmt>(Switch);
    [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...]
RecursiveASTVisitor.h     [all...]
  /external/clang/lib/Analysis/
CFG.cpp 399 CFGBlock *VisitSwitchStmt(SwitchStmt *S);
    [all...]
UninitializedValues.cpp 577 if (isa<SwitchStmt>(Term)) {
  /external/clang/lib/CodeGen/
CGStmt.cpp 136 case Stmt::SwitchStmtClass: EmitSwitchStmt(cast<SwitchStmt>(*S)); break;
    [all...]
CodeGenFunction.cpp 763 if (isa<SwitchStmt>(S))
783 if (isa<SwitchStmt>(S) || isa<WhileStmt>(S) || isa<DoStmt>(S) ||
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
CoreEngine.cpp 433 SwitchNodeBuilder builder(Pred, B, cast<SwitchStmt>(Term)->getCond(),
ExprEngine.cpp     [all...]
  /external/chromium_org/v8/tools/gcmole/
gcmole.cc 901 VISIT(SwitchStmt);
1056 DECL_VISIT_STMT(SwitchStmt) {
    [all...]
  /external/v8/tools/gcmole/
gcmole.cc 903 VISIT(SwitchStmt);
1058 DECL_VISIT_STMT(SwitchStmt) {
    [all...]
  /external/clang/include/clang/ASTMatchers/
ASTMatchers.h 951 /// switchStmt()
953 const internal::VariadicDynCastAllOfMatcher<Stmt, SwitchStmt> switchStmt;
    [all...]
  /external/clang/tools/libclang/
RecursiveASTVisitor.h     [all...]

Completed in 343 milliseconds

1 2