Lines Matching refs:result
68 virtual void OnTestPartResult(const TestPartResult& result) { in OnTestPartResult() argument
69 if (result.type() == TestPartResult::kSuccess) { in OnTestPartResult()
74 result.file_name(), result.line_number(), result.message()); in OnTestPartResult()
81 const char * result = test_info.result()->Passed() ? in OnTestEnd() local
85 result, test_info.test_case_name(), test_info.name(), in OnTestEnd()
86 test_info.result()->elapsed_time()); in OnTestEnd()
132 virtual void OnTestPartResult(const TestPartResult& result) { in OnTestPartResult() argument
133 if (result.type() == TestPartResult::kSuccess) { in OnTestPartResult()
137 LOGI("%s:%i: Failure\n%s\n", result.file_name(), result.line_number(), in OnTestPartResult()
138 result.message()); in OnTestPartResult()
142 const char * result = test_info.result()->Passed() ? in OnTestEnd() local
145 LOGI("%s%s.%s (%lli ms)\n", result, test_info.test_case_name(), in OnTestEnd()
146 test_info.name(), test_info.result()->elapsed_time()); in OnTestEnd()
176 if (!test_info.should_run() || test_info.result()->Passed()) { in PrintFailedTests()
227 int result = RUN_ALL_TESTS(); in runGTests() local
228 return result; in runGTests()
244 int result = runGTests(listener, filter_cstr); in runTests() local
251 return result; in runTests()
256 int result = runGTests(listener, NULL); in runTestsCTS() local
258 return result; in runTestsCTS()
294 int result = env->RegisterNatives(clazz, glTestActMethods, in registerNative() local
297 if (result) { in registerNative()
298 return result; in registerNative()