Lines Matching defs:RegularException
39 struct RegularException {
40 RegularException() {}
43 RegularException(int) {}
79 RegularException();
83 RegularException(5);
88 throw RegularException();
91 throw RegularException(5);
104 f(5, RegularException());
106 templ<RegularException>(4);
111 RegularException exc = RegularException();
112 RegularException *excptr = new RegularException();
115 RegularException exc = RegularException();
116 RegularException *excptr = new RegularException();
120 RegularException exc;
121 RegularException exc2{};
123 CtorInitializerListTest() : exc(RegularException()) {}
125 CtorInitializerListTest(int) try : exc(RegularException()) {
129 RegularException();
135 CtorInitializerListTest::CtorInitializerListTest(float) try : exc(RegularException()) {
139 RegularException();
147 RegularException exc{};
151 RegularException funcReturningExceptionTest(int i) {
152 return RegularException();
160 ClassBracedInitListTest(RegularException exc) {}
163 void foo(RegularException, ClassBracedInitListTest) {}
166 RegularException exc{};
167 ClassBracedInitListTest test = {RegularException()};
168 foo({}, {RegularException()});
195 alignas(RegularException) unsigned char expr[sizeof(RegularException)];
196 new (expr) RegularException{};