Home
last modified time | relevance | path

Searched refs:SubExceptions (Results 1 – 2 of 2) sorted by relevance

/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/WebAssembly/
DWebAssemblyExceptionInfo.h47 std::vector<WebAssemblyException *> SubExceptions; variable
53 ~WebAssemblyException() { DeleteContainerPointers(SubExceptions); } in ~WebAssemblyException()
88 return SubExceptions; in getSubExceptions()
91 return SubExceptions; in getSubExceptions()
93 void addSubException(WebAssemblyException *E) { SubExceptions.push_back(E); } in addSubException()
95 iterator begin() const { return SubExceptions.begin(); } in begin()
96 iterator end() const { return SubExceptions.end(); } in end()
DWebAssemblyExceptionInfo.cpp181 for (auto &SubE : SubExceptions) in print()