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 71 void VisitCaseStmt(clang::CaseStmt *CS);
slang_rs_ast_replace.cpp 86 void RSASTReplace::VisitCaseStmt(clang::CaseStmt *CS) {
slang_rs_object_ref_count.cpp 254 void VisitCaseStmt(clang::CaseStmt *CS);
303 void DestructorVisitor::VisitCaseStmt(clang::CaseStmt *CS) {
    [all...]
  /external/clang/lib/CodeGen/
CGStmt.cpp 188 case Stmt::CaseStmtClass: EmitCaseStmt(cast<CaseStmt>(*S)); break;
903 void CodeGenFunction::EmitCaseStmtRange(const CaseStmt &S) {
904 assert(S.getRHS() && "Expected RHS value in CaseStmt");
    [all...]
CodeGenFunction.h     [all...]
  /external/clang/include/clang/AST/
Stmt.h 621 // SwitchCase is the base class for CaseStmt and DefaultStmt,
624 // A pointer to the following CaseStmt or DefaultStmt class,
662 class CaseStmt : public SwitchCase {
668 CaseStmt(Expr *lhs, Expr *rhs, SourceLocation caseLoc,
678 explicit CaseStmt(EmptyShell Empty) : SwitchCase(CaseStmtClass, Empty) { }
706 const CaseStmt *CS = this;
707 while (const CaseStmt *CS2 = dyn_cast<CaseStmt>(CS->getSubStmt()))
754 if (const CaseStmt *CS = dyn_cast<CaseStmt>(this)
    [all...]
RecursiveASTVisitor.h 161 isa<CaseStmt>(S) || isa<CXXOperatorCallExpr>(S);
    [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
CoreEngine.h 516 const CaseStmt *getCase() const {
517 return cast<CaseStmt>((*I)->getLabel());
  /external/clang/lib/Sema/
SemaStmt.cpp 374 CaseStmt *CS = new (Context) CaseStmt(LHSVal, RHSVal, CaseLoc, DotDotDotLoc,
381 void Sema::ActOnCaseStmtBody(Stmt *caseStmt, Stmt *SubStmt) {
384 CaseStmt *CS = static_cast<CaseStmt*>(caseStmt);
512 bool operator()(const std::pair<llvm::APSInt, CaseStmt*> &LHS,
516 bool operator()(const std::pair<llvm::APSInt, CaseStmt*> &LHS,
517 const std::pair<llvm::APSInt, CaseStmt*> &RHS) {
521 const std::pair<llvm::APSInt, CaseStmt*> &RHS)
    [all...]
JumpDiagnostics.cpp 381 if (CaseStmt *CS = dyn_cast<CaseStmt>(SubStmt))
520 if (CaseStmt *CS = dyn_cast<CaseStmt>(SC))
AnalysisBasedWarnings.cpp 599 Range = cast<CaseStmt>(Term)->getLHS()->getSourceRange();
    [all...]
SemaCodeComplete.cpp     [all...]
  /external/clang/lib/Analysis/
CFG.cpp 355 CFGBlock *VisitCaseStmt(CaseStmt *C);
    [all...]
  /external/chromium_org/v8/tools/gcmole/
gcmole.cc 899 VISIT(CaseStmt);
1062 DECL_VISIT_STMT(CaseStmt) {
    [all...]
  /external/clang/lib/AST/
Stmt.cpp 912 if (isa<CaseStmt>(this))
913 return cast<CaseStmt>(this)->getSubStmt();
    [all...]
StmtPrinter.cpp 152 void StmtPrinter::VisitCaseStmt(CaseStmt *Node) {
    [all...]
StmtProfile.cpp 99 void StmtProfiler::VisitCaseStmt(const CaseStmt *S) {
    [all...]
  /external/v8/tools/gcmole/
gcmole.cc 901 VISIT(CaseStmt);
1064 DECL_VISIT_STMT(CaseStmt) {
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
ExprEngine.cpp     [all...]
BugReporter.cpp 638 const CaseStmt *Case = cast<CaseStmt>(S);
    [all...]
  /external/clang/include/clang/ASTMatchers/
ASTMatchers.h 971 /// caseStmt()
973 const internal::VariadicDynCastAllOfMatcher<Stmt, CaseStmt> caseStmt;
    [all...]
  /external/clang/tools/libclang/
RecursiveASTVisitor.h     [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 322 milliseconds

1 2