• Home
  • Raw
  • Download

Lines Matching refs:io_delegate

212                     const vector<string>& imports, const IoDelegate& io_delegate,  in write_dep_file()  argument
223 CodeWriterPtr writer = io_delegate.GetCodeWriter(dep_file_name); in write_dep_file()
406 bool parse_preprocessed_file(const IoDelegate& io_delegate, const string& filename, in parse_preprocessed_file() argument
409 unique_ptr<LineReader> line_reader = io_delegate.GetLineReader(filename); in parse_preprocessed_file()
472 const IoDelegate& io_delegate, TypeNamespace* types, in load_and_validate_aidl() argument
483 Parser::Parse(input_file_name, io_delegate, types->typenames_); in load_and_validate_aidl()
493 if (!parse_preprocessed_file(io_delegate, s, types, types->typenames_)) { in load_and_validate_aidl()
503 ImportResolver import_resolver{io_delegate, input_file_name, options.ImportDirs(), in load_and_validate_aidl()
546 Parser::Parse(import_path, io_delegate, types->typenames_); in load_and_validate_aidl()
564 Parser::Parse(imported_file, io_delegate, types->typenames_); in load_and_validate_aidl()
714 int compile_aidl(const Options& options, const IoDelegate& io_delegate) { in compile_aidl() argument
739 AidlError aidl_err = internals::load_and_validate_aidl(input_file, options, io_delegate, types, in compile_aidl()
758 if (!write_dep_file(options, *defined_type, imported_files, io_delegate, input_file, in compile_aidl()
766 cpp::GenerateCpp(output_file_name, options, cpp_types, *defined_type, io_delegate); in compile_aidl()
769 io_delegate); in compile_aidl()
773 java::generate_java(output_file_name, defined_type, &java_types, io_delegate, options); in compile_aidl()
786 bool dump_mappings(const Options& options, const IoDelegate& io_delegate) { in dump_mappings() argument
795 input_file, options, io_delegate, &java_types, &defined_types, &imported_files); in dump_mappings()
809 auto code_writer = io_delegate.GetCodeWriter(options.OutputFile()); in dump_mappings()
814 bool preprocess_aidl(const Options& options, const IoDelegate& io_delegate) { in preprocess_aidl() argument
815 unique_ptr<CodeWriter> writer = io_delegate.GetCodeWriter(options.OutputFile()); in preprocess_aidl()
819 std::unique_ptr<Parser> p = Parser::Parse(file, io_delegate, typenames); in preprocess_aidl()
840 bool dump_api(const Options& options, const IoDelegate& io_delegate) { in dump_api() argument
845 if (internals::load_and_validate_aidl(file, options, io_delegate, &ns, &defined_types, in dump_api()
849 io_delegate.GetCodeWriter(GetApiDumpPathFor(*type, options)); in dump_api()