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

1 2

  /frameworks/compile/slang/
slang_rs_ast_replace.h 76 void VisitSwitchStmt(clang::SwitchStmt *SS);
slang_rs_ast_replace.cpp 139 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);
340 void DestructorVisitor::VisitSwitchStmt(clang::SwitchStmt *SS) {
    [all...]
  /external/clang/lib/Sema/
JumpDiagnostics.cpp 304 if (VarDecl *Var = cast<SwitchStmt>(S)->getConditionVariable()) {
509 SwitchStmt *SS = cast<SwitchStmt>(Jump);
AnalysisBasedWarnings.cpp     [all...]
SemaStmt.cpp 662 SwitchStmt *SS = new (Context) SwitchStmt(Context, ConditionVar, Cond);
701 SwitchStmt *SS = cast<SwitchStmt>(Switch);
    [all...]
  /external/clang/include/clang/Sema/
ScopeInfo.h 40 class SwitchStmt;
133 SmallVector<SwitchStmt*, 8> SwitchStack;
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
CoreEngine.h 530 const SwitchStmt *getSwitch() const {
531 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 882 SwitchStmt::SwitchStmt(const ASTContext &C, VarDecl *Var, Expr *cond)
890 VarDecl *SwitchStmt::getConditionVariable() const {
898 void SwitchStmt::setConditionVariable(const ASTContext &C, VarDecl *V) {
    [all...]
StmtPrinter.cpp 218 void StmtPrinter::VisitSwitchStmt(SwitchStmt *Node) {
    [all...]
StmtProfile.cpp 121 void StmtProfiler::VisitSwitchStmt(const SwitchStmt *S) {
    [all...]
  /external/clang/lib/CodeGen/
CodeGenPGO.cpp 240 SwitchStmt,
328 return PGOHash::SwitchStmt;
613 void VisitSwitchStmt(const SwitchStmt *S) {
    [all...]
CGStmt.cpp 137 case Stmt::SwitchStmtClass: EmitSwitchStmt(cast<SwitchStmt>(*S)); break;
    [all...]
CodeGenFunction.cpp     [all...]
  /external/clang/include/clang/AST/
Stmt.h 48 class SwitchStmt;
643 // used by SwitchStmt.
934 /// SwitchStmt - This represents a 'switch' stmt.
936 class SwitchStmt : public Stmt {
943 /// If the SwitchStmt is a switch on an enum value, this records whether
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...]
DataRecursiveASTVisitor.h     [all...]
  /external/clang/lib/Analysis/
CFG.cpp 402 CFGBlock *VisitSwitchStmt(SwitchStmt *S);
    [all...]
ReachableCode.cpp 255 if (isa<SwitchStmt>(Term))
UninitializedValues.cpp 593 if (isa<SwitchStmt>(Term)) {
  /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 884 VISIT(SwitchStmt);
1039 DECL_VISIT_STMT(SwitchStmt) {
    [all...]
  /external/clang/include/clang/ASTMatchers/
ASTMatchers.h 1045 /// switchStmt()
1047 const internal::VariadicDynCastAllOfMatcher<Stmt, SwitchStmt> switchStmt;
    [all...]

Completed in 664 milliseconds

1 2