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

1 2

  /frameworks/compile/slang/
slang_rs_ast_replace.h 70 void VisitCaseStmt(clang::CaseStmt *CS);
slang_rs_ast_replace.cpp 82 void RSASTReplace::VisitCaseStmt(clang::CaseStmt *CS) {
slang_rs_object_ref_count.cpp 254 void VisitCaseStmt(clang::CaseStmt *CS);
299 void DestructorVisitor::VisitCaseStmt(clang::CaseStmt *CS) {
    [all...]
  /external/clang/lib/Sema/
JumpDiagnostics.cpp 358 if (CaseStmt *CS = dyn_cast<CaseStmt>(SubStmt))
515 if (CaseStmt *CS = dyn_cast<CaseStmt>(SC))
SemaStmt.cpp 384 CaseStmt *CS = new (Context) CaseStmt(LHSVal, RHSVal, CaseLoc, DotDotDotLoc,
391 void Sema::ActOnCaseStmtBody(Stmt *caseStmt, Stmt *SubStmt) {
394 CaseStmt *CS = static_cast<CaseStmt*>(caseStmt);
521 bool operator()(const std::pair<llvm::APSInt, CaseStmt*> &LHS,
525 bool operator()(const std::pair<llvm::APSInt, CaseStmt*> &LHS,
526 const std::pair<llvm::APSInt, CaseStmt*> &RHS) {
530 const std::pair<llvm::APSInt, CaseStmt*> &RHS)
    [all...]
AnalysisBasedWarnings.cpp 809 Range = cast<CaseStmt>(Term)->getLHS()->getSourceRange();
    [all...]
SemaCodeComplete.cpp     [all...]
  /external/clang/include/clang/AST/
Stmt.h 639 // SwitchCase is the base class for CaseStmt and DefaultStmt,
642 // A pointer to the following CaseStmt or DefaultStmt class,
681 class CaseStmt : public SwitchCase {
687 CaseStmt(Expr *lhs, Expr *rhs, SourceLocation caseLoc,
697 explicit CaseStmt(EmptyShell Empty) : SwitchCase(CaseStmtClass, Empty) { }
725 const CaseStmt *CS = this;
726 while (const CaseStmt *CS2 = dyn_cast<CaseStmt>(CS->getSubStmt()))
773 if (const CaseStmt *CS = dyn_cast<CaseStmt>(this)
    [all...]
RecursiveASTVisitor.h 154 isa<CaseStmt>(S) || isa<CXXOperatorCallExpr>(S);
    [all...]
DataRecursiveASTVisitor.h     [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
CoreEngine.h 518 const CaseStmt *getCase() const {
519 return cast<CaseStmt>((*I)->getLabel());
  /external/clang/lib/CodeGen/
CGStmt.cpp 219 case Stmt::CaseStmtClass: EmitCaseStmt(cast<CaseStmt>(*S)); break;
    [all...]
CodeGenPGO.cpp 241 CaseStmt,
330 return PGOHash::CaseStmt;
629 void VisitCaseStmt(const CaseStmt *S) {
    [all...]
CodeGenFunction.h     [all...]
  /external/clang/lib/Analysis/
CFG.cpp 356 CFGBlock *VisitCaseStmt(CaseStmt *C);
    [all...]
  /external/chromium_org/v8/tools/gcmole/
gcmole.cc 882 VISIT(CaseStmt);
1045 DECL_VISIT_STMT(CaseStmt) {
    [all...]
  /external/clang/include/clang/ASTMatchers/
ASTMatchers.h 1065 /// caseStmt()
1067 const internal::VariadicDynCastAllOfMatcher<Stmt, CaseStmt> caseStmt;
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
ExprEngine.cpp     [all...]
BugReporter.cpp 674 const CaseStmt *Case = cast<CaseStmt>(S);
    [all...]
  /external/clang/lib/AST/
Stmt.cpp 910 if (isa<CaseStmt>(this))
911 return cast<CaseStmt>(this)->getSubStmt();
    [all...]
StmtPrinter.cpp 148 void StmtPrinter::VisitCaseStmt(CaseStmt *Node) {
    [all...]
StmtProfile.cpp 98 void StmtProfiler::VisitCaseStmt(const CaseStmt *S) {
    [all...]
  /external/clang/lib/Serialization/
ASTReaderStmt.cpp 149 void ASTStmtReader::VisitCaseStmt(CaseStmt *S) {
    [all...]
ASTWriterStmt.cpp 88 void ASTStmtWriter::VisitCaseStmt(CaseStmt *S) {
    [all...]
  /external/clang/unittests/ASTMatchers/
ASTMatchersTest.cpp     [all...]

Completed in 485 milliseconds

1 2