Lines Matching refs:Path
30 Unit FileToVector(const std::string &Path) { in FileToVector() argument
31 std::ifstream T(Path); in FileToVector()
36 std::string FileToString(const std::string &Path) { in FileToString() argument
37 std::ifstream T(Path); in FileToString()
42 void CopyFileToErr(const std::string &Path) { in CopyFileToErr() argument
43 std::ifstream T(Path); in CopyFileToErr()
48 void WriteToFile(const Unit &U, const std::string &Path) { in WriteToFile() argument
49 std::ofstream OF(Path); in WriteToFile()
53 void ReadDirToVectorOfUnits(const char *Path, std::vector<Unit> *V) { in ReadDirToVectorOfUnits() argument
54 for (auto &X : ListFilesInDir(Path)) in ReadDirToVectorOfUnits()
55 V->push_back(FileToVector(DirPlusFile(Path, X))); in ReadDirToVectorOfUnits()