Home
last modified time | relevance | path

Searched refs:pretty_path (Results 1 – 10 of 10) sorted by relevance

/dports/lang/rust/rustc-1.58.1-src/src/tools/linkchecker/
H A Dmain.rs196 let (pretty_path, entry) = self.load_file(file, report); in check()
203 parse_ids(&mut ids.borrow_mut(), &pretty_path, source, report); in check()
243 pretty_path, in check()
269 pretty_path, in check()
283 pretty_path, in check()
299 pretty_path, in check()
314 pretty_path, in check()
327 pretty_path, in check()
387 match self.cache.get_mut(&pretty_path).unwrap() { in check()
399 let pretty_path = in load_file() localVariable
[all …]
/dports/games/wesnoth/wesnoth-1.14.17/src/desktop/
H A Dpaths.cpp138 inline std::string pretty_path(const std::string& path) in pretty_path() function
192 static const std::string& game_bin_dir = pretty_path(filesystem::get_exe_dir()); in game_paths()
193 static const std::string& game_data_dir = pretty_path(game_config::path); in game_paths()
194 static const std::string& game_user_data_dir = pretty_path(filesystem::get_user_data_dir()); in game_paths()
195 static const std::string& game_user_pref_dir = pretty_path(filesystem::get_user_config_dir()); in game_paths()
/dports/devel/libgit2/libgit2-1.3.0/tests/repo/
H A Ddiscover.c64 git_buf pretty_path = GIT_BUF_INIT; in append_ceiling_dir() local
67 cl_git_pass(git_path_prettify_dir(&pretty_path, path, NULL)); in append_ceiling_dir()
72 git_buf_puts(ceiling_dirs, pretty_path.ptr); in append_ceiling_dir()
74 git_buf_dispose(&pretty_path); in append_ceiling_dir()
/dports/misc/vifm/vifm-0.11/src/
H A Dfops_common.c334 char pretty_path[PATH_MAX + 1]; in io_progress_fg() local
335 format_pretty_path(ops->base_dir, estim->item, pretty_path, in io_progress_fg()
336 sizeof(pretty_path)); in io_progress_fg()
341 pretty_path); in io_progress_fg()
411 char pretty_path[PATH_MAX + 1]; in io_progress_fg_sb() local
417 format_pretty_path(ops->base_dir, estim->item, pretty_path, in io_progress_fg_sb()
418 sizeof(pretty_path)); in io_progress_fg_sb()
424 (unsigned long long)estim->total_items, total_size_str, pretty_path); in io_progress_fg_sb()
436 pretty_path); in io_progress_fg_sb()
444 total_size_str, progress/IO_PRECISION, pretty_path); in io_progress_fg_sb()
/dports/games/flightgear/flightgear-2020.3.11/scripts/tools/
H A Dlsprop100 self.pretty_path = cook_path(path)
105 raise Error("file doesn't exist: " + self.pretty_path)
146 "f": self.pretty_path,
/dports/misc/mc-nox11/mc-4.8.27/lib/vfs/
H A Dpath.c1544 GString *pretty_path; in vfs_path_element_build_pretty_path_str() local
1546 pretty_path = g_string_new (element->class->prefix); in vfs_path_element_build_pretty_path_str()
1547 g_string_append (pretty_path, VFS_PATH_URL_DELIMITER); in vfs_path_element_build_pretty_path_str()
1550 g_string_append (pretty_path, url_params); in vfs_path_element_build_pretty_path_str()
1554 g_string_append_c (pretty_path, PATH_SEP); in vfs_path_element_build_pretty_path_str()
1556 g_string_append (pretty_path, element->path); in vfs_path_element_build_pretty_path_str()
1557 return g_string_free (pretty_path, FALSE); in vfs_path_element_build_pretty_path_str()
/dports/misc/mc/mc-4.8.27/lib/vfs/
H A Dpath.c1544 GString *pretty_path; in vfs_path_element_build_pretty_path_str() local
1546 pretty_path = g_string_new (element->class->prefix); in vfs_path_element_build_pretty_path_str()
1547 g_string_append (pretty_path, VFS_PATH_URL_DELIMITER); in vfs_path_element_build_pretty_path_str()
1550 g_string_append (pretty_path, url_params); in vfs_path_element_build_pretty_path_str()
1554 g_string_append_c (pretty_path, PATH_SEP); in vfs_path_element_build_pretty_path_str()
1556 g_string_append (pretty_path, element->path); in vfs_path_element_build_pretty_path_str()
1557 return g_string_free (pretty_path, FALSE); in vfs_path_element_build_pretty_path_str()
/dports/devel/cargo-generate/cargo-generate-0.9.0/src/
H A Dgit.rs136 style(pretty_path(&private_key)?).bold().yellow(),
155 let p = pretty_path(home().unwrap().as_path().join(".cargo").as_path()).unwrap();
163 fn pretty_path(a: &Path) -> Result<String> {
/dports/net/gnome-online-accounts/gnome-online-accounts-3.40.1/src/goabackend/
H A Dgoaowncloudprovider.c421 gchar *pretty_path; in normalize_uri() local
427 pretty_path = g_strdup (path); in normalize_uri()
428 pretty_path[strlen(pretty_path) - 1] = '\0'; in normalize_uri()
430 … = g_strconcat (soup_uri_get_host (uri), (port == std_port) ? "" : port_string, pretty_path, NULL); in normalize_uri()
433 g_free (pretty_path); in normalize_uri()
/dports/devel/py-prettyprinter/prettyprinter-0.18.0/prettyprinter/
H A Dpretty_stdlib.py353 def pretty_path(value, ctx): function