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) {
  /external/clang/include/clang/AST/
Stmt.h 635 // SwitchCase is the base class for CaseStmt and DefaultStmt,
638 // A pointer to the following CaseStmt or DefaultStmt class,
677 class CaseStmt : public SwitchCase {
683 CaseStmt(Expr *lhs, Expr *rhs, SourceLocation caseLoc,
693 explicit CaseStmt(EmptyShell Empty) : SwitchCase(CaseStmtClass, Empty) { }
721 const CaseStmt *CS = this;
722 while (const CaseStmt *CS2 = dyn_cast<CaseStmt>(CS->getSubStmt()))
769 if (const CaseStmt *CS = dyn_cast<CaseStmt>(this)
    [all...]
RecursiveASTVisitor.h     [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
CoreEngine.h 513 const CaseStmt *getCase() const {
514 return cast<CaseStmt>((*I)->getLabel());
  /external/clang/lib/Sema/
SemaStmt.cpp 430 CaseStmt *CS = new (Context)
431 CaseStmt(LHS.get(), RHS.get(), CaseLoc, DotDotDotLoc, ColonLoc);
437 void Sema::ActOnCaseStmtBody(Stmt *caseStmt, Stmt *SubStmt) {
440 CaseStmt *CS = static_cast<CaseStmt*>(caseStmt);
525 bool operator()(const std::pair<llvm::APSInt, CaseStmt*> &LHS,
529 bool operator()(const std::pair<llvm::APSInt, CaseStmt*> &LHS,
530 const std::pair<llvm::APSInt, CaseStmt*> &RHS) {
534 const std::pair<llvm::APSInt, CaseStmt*> &RHS)
    [all...]
JumpDiagnostics.cpp 391 if (CaseStmt *CS = dyn_cast<CaseStmt>(SubStmt))
555 if (CaseStmt *CS = dyn_cast<CaseStmt>(SC))
    [all...]
AnalysisBasedWarnings.cpp 816 Range = cast<CaseStmt>(Term)->getLHS()->getSourceRange();
    [all...]
SemaCodeComplete.cpp     [all...]
  /external/clang/lib/CodeGen/
CGStmt.cpp 284 case Stmt::CaseStmtClass: EmitCaseStmt(cast<CaseStmt>(*S)); break;
    [all...]
CodeGenPGO.cpp 82 CaseStmt,
171 return PGOHash::CaseStmt;
CoverageMappingGen.cpp 788 if (const CaseStmt *CS = dyn_cast<CaseStmt>(S)) {
    [all...]
CodeGenFunction.h     [all...]
  /external/clang/lib/Analysis/
CFG.cpp 433 CFGBlock *VisitCaseStmt(CaseStmt *C);
    [all...]
  /external/clang/lib/AST/
Stmt.cpp 846 if (isa<CaseStmt>(this))
847 return cast<CaseStmt>(this)->getSubStmt();
    [all...]
StmtPrinter.cpp 149 void StmtPrinter::VisitCaseStmt(CaseStmt *Node) {
    [all...]
StmtProfile.cpp 99 void StmtProfiler::VisitCaseStmt(const CaseStmt *S) {
    [all...]
ASTImporter.cpp 180 Stmt *VisitCaseStmt(CaseStmt *S);
    [all...]
ExprConstant.cpp     [all...]
  /external/v8/tools/gcmole/
gcmole.cc 882 VISIT(CaseStmt);
1045 DECL_VISIT_STMT(CaseStmt) {
    [all...]
  /external/clang/include/clang/ASTMatchers/
ASTMatchers.h     [all...]
  /external/clang/lib/StaticAnalyzer/Core/
ExprEngine.cpp     [all...]
BugReporter.cpp 670 const CaseStmt *Case = cast<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...]

Completed in 496 milliseconds

1 2