Home | History | Annotate | Download | only in CodeGen

Lines Matching defs:Handler

138   //   Handler Handlers[0];
143 struct Handler {
148 /// The catch handler for this type.
157 Handler *getHandlers() {
158 return reinterpret_cast<Handler*>(this+1);
161 const Handler *getHandlers() const {
162 return reinterpret_cast<const Handler*>(this+1);
167 return sizeof(EHCatchScope) + N * sizeof(Handler);
190 const Handler &getHandler(unsigned I) const {
195 typedef const Handler *iterator;