Lines Matching refs:retVal
121 int retVal = 0; in test_counted() local
139 retVal = 1; in test_counted()
154 retVal = 1; in test_counted()
157 return retVal; in test_counted()
163 int retVal = 0; in test_exception_in_constructor() local
190 retVal = 1; in test_exception_in_constructor()
212 retVal = 1; in test_exception_in_constructor()
215 return retVal; in test_exception_in_constructor()
222 int retVal = 0; in test_exception_in_destructor() local
251 retVal = 1; in test_exception_in_destructor()
265 retVal = 1; in test_exception_in_destructor()
268 return retVal; in test_exception_in_destructor()
273 int retVal = 0; in main() local
274 retVal += test_empty (); in main()
275 retVal += test_counted (); in main()
277 retVal += test_exception_in_constructor (); in main()
278 retVal += test_exception_in_destructor (); in main()
280 return retVal; in main()