Lines Matching defs:WHERE

49         public final EnumSet<WHERE> where;
50 public Case(Throwable t,EnumSet<WHERE> where) {
58 public static Case caze(Throwable t, WHERE w) {
61 public static Case caze(Throwable t, EnumSet<WHERE> where) {
64 public static Case caze(Throwable t, WHERE w, WHERE... rest) {
72 caze(new RuntimeException(),WHERE.PREREGISTER),
73 caze(new RuntimeException(),WHERE.POSTREGISTER),
74 caze(new RuntimeException(),WHERE.POSTREGISTER, WHERE.PREDEREGISTER),
75 caze(new RuntimeException(),WHERE.POSTREGISTER, WHERE.POSTDEREGISTER),
76 caze(new Exception(),WHERE.PREREGISTER),
77 caze(new Exception(),WHERE.POSTREGISTER),
78 caze(new Exception(),WHERE.POSTREGISTER, WHERE.PREDEREGISTER),
79 caze(new Exception(),WHERE.POSTREGISTER, WHERE.POSTDEREGISTER),
80 caze(new Error(),WHERE.PREREGISTER),
81 caze(new Error(),WHERE.POSTREGISTER),
82 caze(new Error(),WHERE.POSTREGISTER, WHERE.PREDEREGISTER),
83 caze(new Error(),WHERE.POSTREGISTER, WHERE.POSTDEREGISTER),
84 caze(new RuntimeException(),EnumSet.allOf(WHERE.class)),
85 caze(new Exception(),EnumSet.allOf(WHERE.class)),
86 caze(new Error(),EnumSet.allOf(WHERE.class)),
123 Throwable t, EnumSet<WHERE> where)
174 if ((where.contains(WHERE.PREREGISTER)
175 || where.contains(WHERE.POSTREGISTER))&& reg==null) {
187 if ((where.contains(WHERE.PREDEREGISTER)
188 || where.contains(WHERE.POSTDEREGISTER))&& unreg==null
189 && !where.contains(WHERE.PREREGISTER)) {
198 if (where.contains(WHERE.PREREGISTER)) {
212 if (where.contains(WHERE.POSTREGISTER) &&
213 !where.contains(WHERE.PREREGISTER)) {
227 if (where.contains(WHERE.PREREGISTER)) {
228 WHERE.PREREGISTER.check(reg, t);
229 } else if (where.contains(WHERE.POSTREGISTER)) {
235 WHERE.POSTREGISTER.check(reg, t);
246 if (where.contains(WHERE.PREDEREGISTER)) {
260 if (where.contains(WHERE.POSTDEREGISTER) &&
261 !where.contains(WHERE.PREDEREGISTER)) {
275 if (where.contains(WHERE.PREDEREGISTER)) {
276 WHERE.PREDEREGISTER.check(unreg, t);
277 } else if (where.contains(WHERE.POSTDEREGISTER)) {
283 WHERE.POSTDEREGISTER.check(unreg, t);
291 public static enum WHERE {
363 public ObjectInstance create(Throwable t, EnumSet<WHERE> where,
374 public ObjectInstance create(Throwable t, EnumSet<WHERE> where,
386 public ObjectInstance create(Throwable t, EnumSet<WHERE> where,
399 public ObjectInstance create(Throwable t, EnumSet<WHERE> where,
412 public ObjectInstance create(Throwable t, EnumSet<WHERE> where,
422 public abstract ObjectInstance create(Throwable t, EnumSet<WHERE> where,
460 private final EnumSet<WHERE> where;
463 public ExceptionalWombat(Throwable t, EnumSet<WHERE> where) {
475 if (!end && where.contains(WHERE.PREREGISTER))
481 if (!end && where.contains(WHERE.POSTREGISTER))
486 if (!end && where.contains(WHERE.PREDEREGISTER))
491 if (!end && where.contains(WHERE.POSTREGISTER))
510 public static volatile EnumSet<WHERE> w;