Home
last modified time | relevance | path

Searched refs:fout_text (Results 1 – 2 of 2) sorted by relevance

/frameworks/base/tools/aapt2/cmd/
DCompile.cpp219 io::FileOutputStream fout_text(options.generate_text_symbols_path.value()); in CompileTable() local
221 if (fout_text.HadError()) { in CompileTable()
225 << "': " << fout_text.GetError()); in CompileTable()
229 Printer r_txt_printer(&fout_text); in CompileTable()
425 io::FileOutputStream fout_text(options.generate_text_symbols_path.value()); in CompileXml() local
427 if (fout_text.HadError()) { in CompileXml()
431 << "': " << fout_text.GetError()); in CompileXml()
435 Printer r_txt_printer(&fout_text); in CompileXml()
DLink.cpp1123 std::unique_ptr<io::FileOutputStream> fout_text; local
1125 fout_text = util::make_unique<io::FileOutputStream>(out_text_symbols_path.value());
1126 if (fout_text->HadError()) {
1129 << "': " << fout_text->GetError());
1135 if (!generator.Generate(package_name_to_generate, out_package, fout.get(), fout_text.get())) {