/frameworks/compile/slang/ |
slang_rs_ast_replace.h | 77 void VisitSwitchStmt(clang::SwitchStmt *SS);
|
slang_rs_ast_replace.cpp | 151 void RSASTReplace::VisitSwitchStmt(clang::SwitchStmt *SS) {
|
/prebuilts/go/darwin-x86/src/go/types/ |
return.go | 60 case *ast.SwitchStmt: 146 case *ast.SwitchStmt:
|
labels.go | 185 case *ast.SwitchStmt, *ast.TypeSwitchStmt, *ast.SelectStmt, *ast.ForStmt, *ast.RangeStmt: 243 case *ast.SwitchStmt:
|
/prebuilts/go/linux-x86/src/go/types/ |
return.go | 60 case *ast.SwitchStmt: 146 case *ast.SwitchStmt:
|
labels.go | 185 case *ast.SwitchStmt, *ast.TypeSwitchStmt, *ast.SelectStmt, *ast.ForStmt, *ast.RangeStmt: 243 case *ast.SwitchStmt:
|
/prebuilts/go/darwin-x86/src/cmd/vet/ |
deadcode.go | 129 case *ast.SwitchStmt: 264 case *ast.SwitchStmt:
|
/prebuilts/go/linux-x86/src/cmd/vet/ |
deadcode.go | 129 case *ast.SwitchStmt: 264 case *ast.SwitchStmt:
|
/external/clang/include/clang/Basic/ |
StmtNodes.td | 17 def SwitchStmt : Stmt;
|
/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 | 819 SwitchStmt::SwitchStmt(const ASTContext &C, VarDecl *Var, Expr *cond) 826 VarDecl *SwitchStmt::getConditionVariable() const { 834 void SwitchStmt::setConditionVariable(const ASTContext &C, VarDecl *V) { [all...] |
/external/clang/include/clang/AST/ |
Stmt.h | 49 class SwitchStmt; 639 // used by SwitchStmt. 936 /// SwitchStmt - This represents a 'switch' stmt. 938 class SwitchStmt : public Stmt { 943 // SwitchStmt is a switch on an enum value, records whether all the enum 949 SwitchStmt(const ASTContext &C, VarDecl *Var, Expr *cond); 952 explicit SwitchStmt(EmptyShell Empty) : Stmt(SwitchStmtClass, Empty) { } 966 /// If this SwitchStmt has a condition variable, return the faux DeclStmt [all...] |
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
CoreEngine.h | 525 const SwitchStmt *getSwitch() const { 526 return cast<SwitchStmt>(Src->getTerminator());
|
/external/clang/test/Index/ |
annotate-tokens.c | 146 // CHECK: Keyword: "switch" [24:3 - 24:9] SwitchStmt= 147 // CHECK: Punctuation: "(" [24:10 - 24:11] SwitchStmt= 149 // CHECK: Punctuation: ")" [24:12 - 24:13] SwitchStmt=
|
/prebuilts/go/darwin-x86/src/cmd/cover/ |
cover.go | 219 case *ast.SwitchStmt: 554 case *ast.SwitchStmt: 602 case *ast.SwitchStmt:
|
/prebuilts/go/linux-x86/src/cmd/cover/ |
cover.go | 219 case *ast.SwitchStmt: 554 case *ast.SwitchStmt: 602 case *ast.SwitchStmt:
|
/prebuilts/go/darwin-x86/src/go/ast/ |
ast.go | 661 // A SwitchStmt node represents an expression switch statement. 662 SwitchStmt struct { 728 func (s *SwitchStmt) Pos() token.Pos { return s.Switch } 777 func (s *SwitchStmt) End() token.Pos { return s.Body.End() } 807 func (*SwitchStmt) stmtNode() {}
|
walk.go | 240 case *SwitchStmt:
|
/prebuilts/go/linux-x86/src/go/ast/ |
ast.go | 661 // A SwitchStmt node represents an expression switch statement. 662 SwitchStmt struct { 728 func (s *SwitchStmt) Pos() token.Pos { return s.Switch } 777 func (s *SwitchStmt) End() token.Pos { return s.Body.End() } 807 func (*SwitchStmt) stmtNode() {}
|
walk.go | 240 case *SwitchStmt:
|
/external/clang/lib/CodeGen/ |
CodeGenPGO.cpp | 81 SwitchStmt, 169 return PGOHash::SwitchStmt; 453 void VisitSwitchStmt(const SwitchStmt *S) {
|
/external/clang/lib/Sema/ |
JumpDiagnostics.cpp | 308 if (VarDecl *Var = cast<SwitchStmt>(S)->getConditionVariable()) { 549 SwitchStmt *SS = cast<SwitchStmt>(Jump); [all...] |
/external/clang/unittests/ASTMatchers/ |
ASTMatchersTest.cpp | [all...] |
/external/clang/lib/ASTMatchers/Dynamic/ |
Registry.cpp | 353 REGISTER_MATCHER(switchStmt);
|