Home | History | Annotate | Download | only in jni

Lines Matching defs:CI

6 #define CI(stmt) try { stmt; abort(); } catch (int) { }
22 CI((argc+1 ? throw 0 : has_destructor()));
23 CI((0 ? has_destructor() : throw 0));
24 CI((1 ? throw 0 : has_destructor()));
29 CI((argc+1 ? throw 0 : no_destructor()));
30 CI((0 ? no_destructor() : throw 0));
31 CI((1 ? throw 0 : no_destructor()));
36 CI(throw PI(i));
42 CI(0 ? 0 : throw PI(i));
45 CI(0 ? has_destructor() : throw PI(i));
51 CI(throw i++);
57 CI(0 ? 0 : throw i++);
60 CI(0 ? has_destructor() : throw i++);