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

  /external/clang/include/clang/AST/
Stmt.h 913 SwitchCase *FirstCase;
947 const SwitchCase *getSwitchCaseList() const { return FirstCase; }
953 SwitchCase *getSwitchCaseList() { return FirstCase; }
959 void setSwitchCaseList(SwitchCase *SC) { FirstCase = SC; }
971 SC->setNextSwitchCase(FirstCase);
972 FirstCase = SC;
    [all...]
  /external/llvm/lib/Transforms/Utils/
Local.cpp 171 SwitchInst::CaseIt FirstCase = SI->case_begin();
173 FirstCase.getCaseValue(), "cond");
176 Builder.CreateCondBr(Cond, FirstCase.getCaseSuccessor(),
    [all...]
  /external/clang/lib/AST/
Stmt.cpp 735 : Stmt(SwitchStmtClass), FirstCase(0), AllEnumCasesCovered(0)

Completed in 62 milliseconds