Home | History | Annotate | Download | only in test

Lines Matching refs:out_

136   FILE* out_;
143 out_(NULL) {
172 out_ = file_util::OpenFile(path, "w");
173 if (!out_) {
181 if (!out_)
183 fprintf(out_, "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n");
184 fprintf(out_, "<testsuites name=\"AllTests\" tests=\"\" failures=\"\""
187 fprintf(out_, " <testsuite name=\"%s\" tests=\"%" PRIuS "\" failures=\"\""
192 fprintf(out_, " <testcase name=\"%s\" status=\"run\" time=\"%.3f\""
198 fprintf(out_, " <failure message=\"\" type=\"\"></failure>\n");
199 fprintf(out_, " </testcase>\n");
201 fprintf(out_, " </testsuite>\n");
203 fprintf(out_, "</testsuites>\n");
204 fclose(out_);