Searched refs:out_file (Results 1 - 4 of 4) sorted by relevance

/art/test/utils/python/testgen/
H A Dmixins.py135 out_file = directory / self.get_file_name()
136 if out_file.exists():
137 out_file.unlink()
138 with out_file.open('w') as out:
/art/dexlayout/
H A Ddexlayout_main.cc163 FILE* out_file = stdout; local
165 out_file = fopen(options.output_file_name_, "w");
166 if (!out_file) {
188 DexLayout dex_layout(options, profile_info, out_file);
H A Ddexlayout.h73 FILE* out_file,
76 : options_(options), info_(info), out_file_(out_file), header_(header) { }
71 DexLayout(Options& options, ProfileCompilationInfo* info, FILE* out_file, dex_ir::Header* header = nullptr) argument
H A Ddexlayout.cc298 static void DumpEscapedString(const char* p, FILE* out_file) { argument
299 fputs("\"", out_file);
303 fputs("\\\\", out_file);
306 fputs("\\\"", out_file);
309 fputs("\\t", out_file);
312 fputs("\\n", out_file);
315 fputs("\\r", out_file);
318 putc(*p, out_file);
321 fputs("\"", out_file);
327 static void DumpXmlAttribute(const char* p, FILE* out_file) { argument
[all...]

Completed in 125 milliseconds