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

1 2

  /external/chromium_org/third_party/WebKit/Source/core/scripts/
make_token_matcher_unittest.py 33 from make_token_matcher import BadInput, CaseLineProcessor, MainLineProcessor, Optimizer, process_file, SwitchCase, SwitchLineProcessor
42 [SwitchCase('-', None), SwitchCase('x', None)],
make_token_matcher.py 40 class SwitchCase(object):
211 self.parent.add_case(SwitchCase(self.identifier, self.block))
  /external/clang/lib/ARCMigrate/
TransProtectedScope.cpp 42 SwitchCase *SC;
51 CaseInfo(SwitchCase *S, SourceRange Range)
64 SwitchCase *Curr = S->getSwitchCaseList();
87 Stmt *getCaseParent(SwitchCase *S) {
89 while (Parent && (isa<SwitchCase>(Parent) || isa<LabelStmt>(Parent)))
  /frameworks/compile/slang/
slang_rs_ast_replace.h 76 void VisitSwitchCase(clang::SwitchCase *SC);
slang_rs_ast_replace.cpp 143 void RSASTReplace::VisitSwitchCase(clang::SwitchCase *SC) {
slang_rs_object_ref_count.cpp 261 void VisitSwitchCase(clang::SwitchCase *SC);
346 void DestructorVisitor::VisitSwitchCase(clang::SwitchCase *SC) {
    [all...]
  /external/clang/lib/Sema/
SemaStmtAttr.cpp 32 if (isa<SwitchCase>(St)) {
AnalysisBasedWarnings.cpp 719 if (L && isa<SwitchCase>(L) && ReachableBlocks.insert(B))
753 const SwitchCase *SW = dyn_cast_or_null<SwitchCase>(P->getLabel());
846 if (const SwitchCase *SW = dyn_cast_or_null<SwitchCase>(B.getLabel()))
847 if (!isa<SwitchCase>(SW->getSubStmt()))
894 if (!Label || !isa<SwitchCase>(Label))
    [all...]
JumpDiagnostics.cpp 516 for (SwitchCase *SC = SS->getSwitchCaseList(); SC;
SemaStmt.cpp 731 for (SwitchCase *SC = SS->getSwitchCaseList(); SC && !HasDependentValue;
    [all...]
SemaCodeComplete.cpp     [all...]
  /external/clang/include/clang/AST/
Stmt.h 621 // SwitchCase is the base class for CaseStmt and DefaultStmt,
622 class SwitchCase : public Stmt {
626 SwitchCase *NextSwitchCase;
630 SwitchCase(StmtClass SC, SourceLocation KWLoc, SourceLocation ColonLoc)
633 SwitchCase(StmtClass SC, EmptyShell)
637 const SwitchCase *getNextSwitchCase() const { return NextSwitchCase; }
639 SwitchCase *getNextSwitchCase() { return NextSwitchCase; }
641 void setNextSwitchCase(SwitchCase *SC) { NextSwitchCase = SC; }
650 return const_cast<SwitchCase*>(this)->getSubStmt();
662 class CaseStmt : public SwitchCase {
    [all...]
  /external/clang/include/clang/Serialization/
ASTWriter.h 64 class SwitchCase;
364 /// \brief Mapping from SwitchCase statements to IDs.
365 llvm::DenseMap<SwitchCase *, unsigned> SwitchCaseIDs;
691 unsigned RecordSwitchCaseID(SwitchCase *S);
694 unsigned getSwitchCaseID(SwitchCase *S);