Searched refs:disk_path (Results 1 – 3 of 3) sorted by relevance
/external/protobuf/src/google/protobuf/compiler/ |
D | importer.cc | 361 const string& disk_path) { in MapPath() argument 362 mappings_.push_back(Mapping(virtual_path, CanonicalizePath(disk_path))); in MapPath() 375 if (ApplyMapping(canonical_disk_file, mappings_[i].disk_path, in DiskFileToVirtualFile() 391 mappings_[i].disk_path, shadowing_disk_file)) { in DiskFileToVirtualFile() 442 mappings_[i].disk_path, &temp_disk_file)) { in OpenVirtualFile()
|
D | importer.h | 245 void MapPath(const string& virtual_path, const string& disk_path); 293 string disk_path; member 297 : virtual_path(virtual_path_param), disk_path(disk_path_param) {} in Mapping()
|
D | command_line_interface.cc | 968 string disk_path; in InterpretArgument() local 973 disk_path = parts[i]; in InterpretArgument() 976 disk_path = parts[i].substr(equals_pos + 1); in InterpretArgument() 979 if (disk_path.empty()) { in InterpretArgument() 986 if (access(disk_path.c_str(), F_OK) < 0) { in InterpretArgument() 987 cerr << disk_path << ": warning: directory does not exist." << endl; in InterpretArgument() 993 proto_path_.push_back(pair<string, string>(virtual_path, disk_path)); in InterpretArgument()
|