Lines Matching refs:path_text
33 std::string path_text = path.get_encoded(); in check_path() local
34 if (path_text.empty()) { in check_path()
39 return path_parameter(path_text, path_parameter::invalid); in check_path()
43 if (check_glob(path_text)) { in check_path()
44 return path_parameter(path_text, path_parameter::glob); in check_path()
48 glob_unescape(path_text), path_parameter::path); in check_path()
52 << "Invalid path (" << e.what() << "): " << path_text in check_path()
55 return path_parameter(path_text, path_parameter::invalid); in check_path()
65 std::string path_text = qbk_version_n >= 106u || path.is_encoded() in check_path() local
69 if (path_text.empty()) { in check_path()
73 return path_parameter(path_text, path_parameter::invalid); in check_path()
79 if (path_text.find('\\') != std::string::npos) { in check_path()
91 *err << "Path isn't portable: '" << path_text << "'" in check_path()
94 boost::replace(path_text, '\\', '/'); in check_path()
97 return path_parameter(path_text, path_parameter::path); in check_path()