Home | History | Annotate | Download | only in stl

Lines Matching refs:_STLP_NOTHROW

164   exception() _STLP_NOTHROW;
165 virtual ~exception() _STLP_NOTHROW;
166 virtual const char* what() const _STLP_NOTHROW;
168 exception() _STLP_NOTHROW {}
169 virtual ~exception() _STLP_NOTHROW {}
170 virtual const char* what() const _STLP_NOTHROW {return "class exception";}
178 bad_exception() _STLP_NOTHROW;
179 ~bad_exception() _STLP_NOTHROW;
180 const char* what() const _STLP_NOTHROW;
182 bad_exception() _STLP_NOTHROW {}
183 ~bad_exception() _STLP_NOTHROW {}
184 const char* what() const _STLP_NOTHROW {return "class bad_exception";}