Home
last modified time | relevance | path

Searched refs:disk_path (Results 1 – 4 of 4) sorted by relevance

/external/protobuf/src/google/protobuf/compiler/
Dimporter.h235 void MapPath(const string& virtual_path, const string& disk_path);
281 string disk_path; member
283 inline Mapping(const string& virtual_path, const string& disk_path) in Mapping()
284 : virtual_path(virtual_path), disk_path(disk_path) {} in Mapping()
Dimporter.cc341 const string& disk_path) { in MapPath() argument
342 mappings_.push_back(Mapping(virtual_path, CanonicalizePath(disk_path))); in MapPath()
355 if (ApplyMapping(canonical_disk_file, mappings_[i].disk_path, in DiskFileToVirtualFile()
371 mappings_[i].disk_path, shadowing_disk_file)) { in DiskFileToVirtualFile()
416 mappings_[i].disk_path, &temp_disk_file)) { in OpenVirtualFile()
Dcommand_line_interface.cc873 string disk_path; in InterpretArgument() local
878 disk_path = parts[i]; in InterpretArgument()
881 disk_path = parts[i].substr(equals_pos + 1); in InterpretArgument()
884 if (disk_path.empty()) { in InterpretArgument()
891 if (access(disk_path.c_str(), F_OK) < 0) { in InterpretArgument()
892 cerr << disk_path << ": warning: directory does not exist." << endl; in InterpretArgument()
895 proto_path_.push_back(make_pair(virtual_path, disk_path)); in InterpretArgument()
/external/chromium/chrome/browser/ui/webui/chromeos/
Dimageburner_ui.cc313 FilePath disk_path = FilePath(iter->second->system_path()).DirName(); in HandleGetRoots() local
314 std::string title = "/dev/" + disk_path.BaseName().value(); in HandleGetRoots()