Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/WebAssembly/
H A DWebAssemblyExceptionInfo.h46 std::vector<std::unique_ptr<WebAssemblyException>> SubExceptions; variable
91 return SubExceptions; in getSubExceptions()
94 return SubExceptions; in getSubExceptions()
97 SubExceptions.push_back(std::move(E)); in addSubException()
99 using iterator = typename decltype(SubExceptions)::const_iterator;
100 iterator begin() const { return SubExceptions.begin(); } in begin()
101 iterator end() const { return SubExceptions.end(); } in end()
H A DWebAssemblyExceptionInfo.cpp353 for (auto &SubE : SubExceptions) in print()