Home | History | Annotate | Download | only in cmd

Lines Matching defs:path_data

176       Maybe<ResourcePathData> path_data = ExtractResourcePathData(full_path, &err_str);
177 if (!path_data) {
182 out_path_data->push_back(std::move(path_data.value()));
189 const ResourcePathData& path_data, IArchiveWriter* writer,
193 FileInputStream fin(path_data.source.path);
195 context->GetDiagnostics()->Error(DiagMessage(path_data.source)
207 parser_options.translatable = path_data.name.find("donottranslate") == std::string::npos;
209 ResourceParser res_parser(context->GetDiagnostics(), &table, path_data.source, path_data.config,
379 const ResourcePathData& path_data, IArchiveWriter* writer,
382 context->GetDiagnostics()->Note(DiagMessage(path_data.source) << "compiling XML");
387 FileInputStream fin(path_data.source.path);
389 context->GetDiagnostics()->Error(DiagMessage(path_data.source)
394 xmlres = xml::Inflate(&fin, context->GetDiagnostics(), path_data.source);
401 xmlres->file.name = ResourceName({}, *ParseResourceType(path_data.resource_dir), path_data.name);
402 xmlres->file.config = path_data.config;
403 xmlres->file.source = path_data.source;
454 const ResourcePathData& path_data, IArchiveWriter* writer,
457 context->GetDiagnostics()->Note(DiagMessage(path_data.source) << "compiling PNG");
462 res_file.name = ResourceName({}, *ParseResourceType(path_data.resource_dir), path_data.name);
463 res_file.config = path_data.config;
464 res_file.source = path_data.source;
468 if (!android::base::ReadFileToString(path_data.source.path, &content,
470 context->GetDiagnostics()->Error(DiagMessage(path_data.source)
482 std::unique_ptr<Image> image = ReadPng(context, path_data.source, &png_chunk_filter);
488 if (path_data.extension == "9.png") {
509 context->GetDiagnostics()->Note(DiagMessage(path_data.source) << "9-patch: "
528 context->GetDiagnostics()->Note(DiagMessage(path_data.source)
546 if (!png.process(path_data.source, &legacy_stream, &legacy_buffer, {})) {
550 context->GetDiagnostics()->Note(DiagMessage(path_data.source)
564 const ResourcePathData& path_data, IArchiveWriter* writer,
567 context->GetDiagnostics()->Note(DiagMessage(path_data.source) << "compiling file");
572 res_file.name = ResourceName({}, *ParseResourceType(path_data.resource_dir), path_data.name);
573 res_file.config = path_data.config;
574 res_file.source = path_data.source;
577 Maybe<android::FileMap> f = file::MmapPath(path_data.source.path, &error_str);
579 context->GetDiagnostics()->Error(DiagMessage(path_data.source) << "failed to mmap file: "
691 if (Maybe<ResourcePathData> path_data = ExtractResourcePathData(arg, &error_str)) {
692 input_data.push_back(std::move(path_data.value()));
707 for (ResourcePathData& path_data : input_data) {
709 context.GetDiagnostics()->Note(DiagMessage(path_data.source) << "processing");
712 if (!IsValidFile(&context, path_data.source.path)) {
717 if (path_data.resource_dir == "values") {
719 path_data.extension = "arsc";
721 const std::string output_filename = BuildIntermediateFilename(path_data);
722 if (!CompileTable(&context, options, path_data, archive_writer.get(), output_filename)) {
727 const std::string output_filename = BuildIntermediateFilename(path_data);
728 if (const ResourceType* type = ParseResourceType(path_data.resource_dir)) {
730 if (path_data.extension == "xml") {
731 if (!CompileXml(&context, options, path_data, archive_writer.get(), output_filename)) {
735 (path_data.extension == "png" || path_data.extension == "9.png")) {
736 if (!CompilePng(&context, options, path_data, archive_writer.get(), output_filename)) {
740 if (!CompileFile(&context, options, path_data, archive_writer.get(), output_filename)) {
745 if (!CompileFile(&context, options, path_data, archive_writer.get(), output_filename)) {
750 context.GetDiagnostics()->Error(DiagMessage() << "invalid file path '" << path_data.source