Lines Matching refs:retVal
129 int retVal = 0; in test_counted() local
147 retVal = 1; in test_counted()
162 retVal = 1; in test_counted()
165 return retVal; in test_counted()
170 int retVal = 0; in test_exception_in_constructor() local
197 retVal = 1; in test_exception_in_constructor()
219 retVal = 1; in test_exception_in_constructor()
222 return retVal; in test_exception_in_constructor()
227 int retVal = 0; in test_exception_in_destructor() local
255 retVal = 1; in test_exception_in_destructor()
269 retVal = 1; in test_exception_in_destructor()
272 return retVal; in test_exception_in_destructor()
276 int retVal = 0; in main() local
277 retVal += test_empty (); in main()
278 retVal += test_counted (); in main()
279 retVal += test_exception_in_constructor (); in main()
280 retVal += test_exception_in_destructor (); in main()
281 return retVal; in main()