Home
last modified time | relevance | path

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

/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/WebAssembly/
DWebAssemblyExceptionInfo.h46 std::vector<WebAssemblyException *> SubExceptions; variable
52 ~WebAssemblyException() { DeleteContainerPointers(SubExceptions); } in ~WebAssemblyException()
87 return SubExceptions; in getSubExceptions()
90 return SubExceptions; in getSubExceptions()
92 void addSubException(WebAssemblyException *E) { SubExceptions.push_back(E); } in addSubException()
94 iterator begin() const { return SubExceptions.begin(); } in begin()
95 iterator end() const { return SubExceptions.end(); } in end()
DWebAssemblyExceptionInfo.cpp170 for (auto &SubE : SubExceptions) in print()