HomeSort by relevance Sort by last modified time
    Searched defs:NumHandlers (Results 1 - 8 of 8) sorted by null

  /external/clang/include/clang/AST/
StmtCXX.h 67 unsigned NumHandlers;
71 CXXTryStmt(EmptyShell Empty, unsigned numHandlers)
72 : Stmt(CXXTryStmtClass), NumHandlers(numHandlers) { }
86 unsigned numHandlers);
93 return getStmts()[NumHandlers]->getLocEnd();
103 unsigned getNumHandlers() const { return NumHandlers; }
  /external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-c-test/
echo.cpp 693 unsigned NumHandlers = LLVMGetNumHandlers(Src);
694 Dst = LLVMBuildCatchSwitch(Builder, ParentPad, UnwindBB, NumHandlers, Name);
695 if (NumHandlers > 0) {
697 safe_malloc(NumHandlers * sizeof(LLVMBasicBlockRef)));
699 for (unsigned i = 0; i < NumHandlers; i++)
    [all...]
  /external/clang/lib/CodeGen/
CGException.cpp 543 unsigned NumHandlers = S.getNumHandlers();
544 EHCatchScope *CatchScope = EHStack.pushCatch(NumHandlers);
546 for (unsigned I = 0; I != NumHandlers; ++I) {
889 unsigned NumHandlers = CatchScope.getNumHandlers();
891 CGF.Builder.CreateCatchSwitch(ParentPad, UnwindBB, NumHandlers);
894 for (unsigned I = 0; I < NumHandlers; ++I) {
    [all...]
  /external/llvm/lib/Bitcode/Writer/
BitcodeWriter.cpp     [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Bitcode/Writer/
BitcodeWriter.cpp     [all...]
  /external/clang/lib/Sema/
SemaStmt.cpp     [all...]
  /external/llvm/lib/Bitcode/Reader/
BitcodeReader.cpp     [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Bitcode/Reader/
BitcodeReader.cpp     [all...]

Completed in 1113 milliseconds