Home
last modified time | relevance | path

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

/external/protobuf/src/google/protobuf/compiler/
Dcommand_line_interface.cc651 for (int i = 0; i < input_files_.size(); i++) { in Run()
653 importer.AddUnusedImportTrackFile(input_files_[i]); in Run()
654 const FileDescriptor* parsed_file = importer.Import(input_files_[i]); in Run()
771 input_files_.clear(); in Clear()
785 for (int i = 0; i < input_files_.size(); i++) { in MakeInputsBeProtoPathRelative()
788 input_files_[i], &virtual_file, &shadowing_disk_file)) { in MakeInputsBeProtoPathRelative()
790 input_files_[i] = virtual_file; in MakeInputsBeProtoPathRelative()
793 cerr << input_files_[i] << ": Input is shadowed in the --proto_path " in MakeInputsBeProtoPathRelative()
799 cerr << input_files_[i] << ": " << strerror(errno) << endl; in MakeInputsBeProtoPathRelative()
803 if (access(input_files_[i].c_str(), F_OK) < 0) { in MakeInputsBeProtoPathRelative()
[all …]
Dcommand_line_interface.h336 vector<string> input_files_; // Names of the input proto files. variable