• Home
  • Raw
  • Download

Lines Matching refs:output_path

150                          const std::string& output_path) {  in CompileTable()  argument
194 if (!writer->StartEntry(output_path, 0)) { in CompileTable()
195 context->GetDiagnostics()->Error(DiagMessage(output_path) << "failed to open"); in CompileTable()
208 context->GetDiagnostics()->Error(DiagMessage(output_path) << "failed to write"); in CompileTable()
214 context->GetDiagnostics()->Error(DiagMessage(output_path) << "failed to finish entry"); in CompileTable()
284 static bool WriteHeaderAndDataToWriter(const StringPiece& output_path, const ResourceFile& file, in WriteHeaderAndDataToWriter() argument
289 if (!writer->StartEntry(output_path, 0)) { in WriteHeaderAndDataToWriter()
290 diag->Error(DiagMessage(output_path) << "failed to open file"); in WriteHeaderAndDataToWriter()
304 diag->Error(DiagMessage(output_path) << "failed to write entry data"); in WriteHeaderAndDataToWriter()
310 diag->Error(DiagMessage(output_path) << "failed to finish writing data"); in WriteHeaderAndDataToWriter()
316 static bool FlattenXmlToOutStream(const StringPiece& output_path, const xml::XmlResource& xmlres, in FlattenXmlToOutStream() argument
328 diag->Error(DiagMessage(output_path) << "failed to write entry data"); in FlattenXmlToOutStream()
353 const std::string& output_path) { in CompileXml() argument
392 if (!writer->StartEntry(output_path, 0)) { in CompileXml()
393 context->GetDiagnostics()->Error(DiagMessage(output_path) << "failed to open file"); in CompileXml()
406 if (!FlattenXmlToOutStream(output_path, *xmlres, &container_writer, in CompileXml()
412 if (!FlattenXmlToOutStream(output_path, *inline_xml_doc, &container_writer, in CompileXml()
420 context->GetDiagnostics()->Error(DiagMessage(output_path) << "failed to finish writing data"); in CompileXml()
453 const std::string& output_path) { in CompilePng() argument
555 return WriteHeaderAndDataToWriter(output_path, res_file, &buffer_in, writer, in CompilePng()
561 const std::string& output_path) { in CompileFile() argument
579 return WriteHeaderAndDataToWriter(output_path, res_file, data.get(), writer, in CompileFile()
794 file::FileType output_file_type = file::GetFileType(options_.output_path); in Action()
796 archive_writer = CreateDirectoryArchiveWriter(context.GetDiagnostics(), options_.output_path); in Action()
798 archive_writer = CreateZipFileArchiveWriter(context.GetDiagnostics(), options_.output_path); in Action()