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

  /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 257 void VisitCaseStmt(clang::CaseStmt *CS);
306 void DestructorVisitor::VisitCaseStmt(clang::CaseStmt *CS) {
    [all...]
  /external/clang/lib/Sema/
SemaStmt.cpp 316 CaseStmt *CS = new (Context) CaseStmt(LHSVal, RHSVal, CaseLoc, DotDotDotLoc,
323 void Sema::ActOnCaseStmtBody(Stmt *caseStmt, Stmt *SubStmt) {
326 CaseStmt *CS = static_cast<CaseStmt*>(caseStmt);
447 bool operator()(const std::pair<llvm::APSInt, CaseStmt*> &LHS,
451 bool operator()(const std::pair<llvm::APSInt, CaseStmt*> &LHS,
452 const std::pair<llvm::APSInt, CaseStmt*> &RHS) {
456 const std::pair<llvm::APSInt, CaseStmt*> &RHS)
    [all...]
JumpDiagnostics.cpp 343 if (CaseStmt *CS = dyn_cast<CaseStmt>(SubStmt))
SemaCodeComplete.cpp     [all...]
TreeTransform.h     [all...]
  /external/clang/lib/CodeGen/
CGStmt.cpp 183 case Stmt::CaseStmtClass: EmitCaseStmt(cast<CaseStmt>(*S)); break;
825 void CodeGenFunction::EmitCaseStmtRange(const CaseStmt &S) {
826 assert(S.getRHS() && "Expected RHS value in CaseStmt");
880 void CodeGenFunction::EmitCaseStmt(const CaseStmt &S) {
    [all...]
CodeGenFunction.h     [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
CoreEngine.h 507 const CaseStmt *getCase() const {
508 return llvm::cast<CaseStmt>((*I)->getLabel());
  /external/clang/include/clang/AST/
Stmt.h 633 // SwitchCase is the base class for CaseStmt and DefaultStmt,
636 // A pointer to the following CaseStmt or DefaultStmt class,
663 class CaseStmt : public SwitchCase {
671 CaseStmt(Expr *lhs, Expr *rhs, SourceLocation caseLoc,
683 explicit CaseStmt(EmptyShell Empty) : SwitchCase(CaseStmtClass) { }
711 const CaseStmt *CS = this;
712 while (const CaseStmt *CS2 = dyn_cast<CaseStmt>(CS->getSubStmt()))
720 static bool classof(const CaseStmt *) { return true; }
    [all...]
RecursiveASTVisitor.h 154 return isa<BinaryOperator>(S) || isa<UnaryOperator>(S) || isa<CaseStmt>(S);
    [all...]
  /external/clang/lib/Analysis/
CFG.cpp 329 CFGBlock *VisitCaseStmt(CaseStmt *C);
    [all...]
  /external/clang/lib/AST/
Stmt.cpp 762 if (isa<CaseStmt>(this))
763 return cast<CaseStmt>(this)->getSubStmt();
StmtProfile.cpp 99 void StmtProfiler::VisitCaseStmt(const CaseStmt *S) {
StmtPrinter.cpp 150 void StmtPrinter::VisitCaseStmt(CaseStmt *Node) {
    [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 518 const CaseStmt *Case = cast<CaseStmt>(S);
    [all...]
  /external/clang/lib/Serialization/
ASTReaderStmt.cpp 136 void ASTStmtReader::VisitCaseStmt(CaseStmt *S) {
    [all...]
ASTWriterStmt.cpp 82 void ASTStmtWriter::VisitCaseStmt(CaseStmt *S) {
    [all...]
  /external/clang/include/clang/Sema/
Sema.h     [all...]

Completed in 568 milliseconds