Lines Matching refs:retVal
110 int retVal = 0; in test_counted() local
128 retVal = 1; in test_counted()
143 retVal = 1; in test_counted()
146 return retVal; in test_counted()
151 int retVal = 0; in test_exception_in_constructor() local
178 retVal = 1; in test_exception_in_constructor()
200 retVal = 1; in test_exception_in_constructor()
203 return retVal; in test_exception_in_constructor()
208 int retVal = 0; in test_exception_in_destructor() local
237 retVal = 1; in test_exception_in_destructor()
251 retVal = 1; in test_exception_in_destructor()
254 return retVal; in test_exception_in_destructor()
258 int retVal = 0; in main() local
259 retVal += test_empty (); in main()
260 retVal += test_counted (); in main()
261 retVal += test_exception_in_constructor (); in main()
262 retVal += test_exception_in_destructor (); in main()
263 return retVal; in main()