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.cc592 for (int i = 0; i < input_files_.size(); i++) { in Run()
594 const FileDescriptor* parsed_file = importer.Import(input_files_[i]); in Run()
691 input_files_.clear(); in Clear()
703 for (int i = 0; i < input_files_.size(); i++) { in MakeInputsBeProtoPathRelative()
706 input_files_[i], &virtual_file, &shadowing_disk_file)) { in MakeInputsBeProtoPathRelative()
708 input_files_[i] = virtual_file; in MakeInputsBeProtoPathRelative()
711 cerr << input_files_[i] << ": Input is shadowed in the --proto_path " in MakeInputsBeProtoPathRelative()
717 cerr << input_files_[i] << ": " << strerror(errno) << endl; in MakeInputsBeProtoPathRelative()
721 if (access(input_files_[i].c_str(), F_OK) < 0) { in MakeInputsBeProtoPathRelative()
723 cerr << input_files_[i] << ": " << strerror(ENOENT) << endl; in MakeInputsBeProtoPathRelative()
[all …]
Dcommand_line_interface.h280 vector<string> input_files_; // Names of the input proto files. variable