Home | History | Annotate | Download | only in file

Lines Matching defs:catches

48     /** {@code null-ok;} the catches, if needed; set in {@link #addContents} */
49 private CatchStructs catches;
96 this.catches = null;
121 catches = new CatchStructs(code);
169 if (catches != null) {
171 out.println("catches");
172 catches.debugPrint(out, prefix2);
189 * In order to get the catches and insns, all the code's
203 if (catches != null) {
204 catches.encode(file);
205 catchesSize = catches.writeSize();
213 * space the catches need.
233 int triesSz = (catches == null) ? 0 : catches.triesSize();
261 if (catches != null) {
269 catches.writeTo(file, out);