Home
last modified time | relevance | path

Searched refs:complete_path (Results 1 – 25 of 205) sorted by relevance

123456789

/dports/science/ALPSCore/ALPSCore-2.2.0/hdf5/include/alps/hdf5/
H A Dtuple.hpp84 ar, ar.complete_path(path) + "/0", value in save()
87 ar, ar.complete_path(path) + "/1", value in save()
90 ar, ar.complete_path(path) + "/2", value in save()
93 ar, ar.complete_path(path) + "/3", value in save()
96 ar, ar.complete_path(path) + "/4", value in save()
99 ar, ar.complete_path(path) + "/5", value in save()
102 ar, ar.complete_path(path) + "/6", value in save()
105 ar, ar.complete_path(path) + "/7", value in save()
108 ar, ar.complete_path(path) + "/8", value in save()
111 ar, ar.complete_path(path) + "/9", value in save()
[all …]
/dports/cad/gerbv/gerbv-2.7.0/src/
H A Dgerb_file.c283 char *complete_path = NULL; in gerb_find_file() local
341 if (complete_path == NULL) in gerb_find_file()
343 strcpy(complete_path, curr_path); in gerb_find_file()
345 complete_path[strlen(curr_path) + 1] = '\0'; in gerb_find_file()
354 complete_path); in gerb_find_file()
356 if (access(complete_path, R_OK) != -1) in gerb_find_file()
359 g_free(complete_path); in gerb_find_file()
360 complete_path = NULL; in gerb_find_file()
364 if (complete_path == NULL) in gerb_find_file()
368 complete_path == NULL ? "(null)" : complete_path); in gerb_find_file()
[all …]
/dports/devel/dconf-editor/dconf-editor-3.38.3/editor/
H A Dadaptative-pathbar.vala43 large_pathbar = new LargePathbar (complete_path, current_type, current_path);
119 private string complete_path = "";
126 if (complete_path == ""
128 || !complete_path.has_prefix (path))
129 complete_path = path;
189 _complete_path = complete_path;
227 string complete_path;
228 get_complete_path (out complete_path);
229 return _get_selected_child (current_path, complete_path);
233 if (!complete_path.has_prefix (current_path) || complete_path == current_path)
[all …]
H A Dshort-pathbar.vala25 private string complete_path = "";
28 _complete_path = complete_path;
35 _fallback_path = complete_path;
37 _complete_path = complete_path;
45 complete_path = complete_path_or_empty;
105 if (complete_path == ""
107 || !complete_path.has_prefix (path))
109 complete_path = path;
130 _update_menu (complete_path, non_ghost_path, out menu);
147 if (complete_path != "/")
[all …]
H A Dlarge-pathbar.vala26 private string complete_path = "";
29 _complete_path = complete_path;
37 _fallback_path = complete_path;
39 _complete_path = complete_path;
52 complete_path = complete_path_or_empty;
95 complete_path = "";
108 complete_path += "/";
116 complete_path += item.text_string;
123 complete_path += split [0];
147 complete_path += item + "/";
[all …]
/dports/emulators/vice/vice-3.5/src/
H A Dsysfile.c225 char *complete_path = NULL; in sysfile_load() local
245 fp = sysfile_open(name, &complete_path, MODE_READ); in sysfile_load()
255 fp = sysfile_open((const char *)local_name, &complete_path, MODE_READ); in sysfile_load()
264 log_message(LOG_DEFAULT, "Loading system file `%s'.", complete_path); in sysfile_load()
275 log_error(LOG_DEFAULT, "ROM %s: short file.", complete_path); in sysfile_load()
281 "start address.", complete_path); in sysfile_load()
291 complete_path); in sysfile_load()
299 lib_free(complete_path); in sysfile_load()
303 lib_free(complete_path); in sysfile_load()
H A Dpalette.c221 char *complete_path; in palette_load() local
229 f = sysfile_open(file_name, &complete_path, MODE_READ_TEXT); in palette_load()
236 f = sysfile_open(tmp, &complete_path, MODE_READ_TEXT); in palette_load()
245 log_message(palette_log, "Loading palette `%s'.", complete_path); in palette_load()
246 lib_free(complete_path); in palette_load()
/dports/emulators/libretro-vice/vice-libretro-5725415/vice/src/
H A Dsysfile.c225 char *complete_path = NULL; in sysfile_load() local
245 fp = sysfile_open(name, &complete_path, MODE_READ); in sysfile_load()
255 fp = sysfile_open((const char *)local_name, &complete_path, MODE_READ); in sysfile_load()
264 log_message(LOG_DEFAULT, "Loading system file `%s'.", complete_path); in sysfile_load()
275 log_error(LOG_DEFAULT, "ROM %s: short file.", complete_path); in sysfile_load()
281 "start address.", complete_path); in sysfile_load()
291 complete_path); in sysfile_load()
299 lib_free(complete_path); in sysfile_load()
303 lib_free(complete_path); in sysfile_load()
H A Dpalette.c221 char *complete_path; in palette_load() local
229 f = sysfile_open(file_name, &complete_path, MODE_READ_TEXT); in palette_load()
236 f = sysfile_open(tmp, &complete_path, MODE_READ_TEXT); in palette_load()
247 log_message(palette_log, "Loading palette `%s'.", complete_path); in palette_load()
248 lib_free(complete_path); in palette_load()
/dports/games/volleyball/volleyball-0.8.6/src/
H A Dplayer.c62 char complete_path [1024]; in player_init() local
65 sprintf (complete_path, "%s/%s", path, file); in player_init()
77 if (player_init_examine_files (complete_path)) in player_init()
83 if (player_init_load_images (data, complete_path)) in player_init()
90 if (player_init_load_attributes (data, complete_path)) in player_init()
131 int player_init_examine_files (char * complete_path) in player_init_examine_files() argument
133 if (! util_directory_exist (complete_path)) in player_init_examine_files()
140 if (! util_file_exist (complete_path, "preview.png")) in player_init_examine_files()
147 if (! util_file_exist (complete_path, "sprites.png")) in player_init_examine_files()
154 if (! util_file_exist (complete_path, "info.txt")) in player_init_examine_files()
[all …]
/dports/graphics/darktable38/darktable-3.8.0/src/common/
H A Dfile_location.c134 gchar complete_path[PATH_MAX] = { 0 }; in dt_loc_init_generic() local
153 …g_snprintf(complete_path, sizeof(complete_path), "%s/../Resources%s", application_directory, defau… in dt_loc_init_generic()
158 … g_snprintf(complete_path, sizeof(complete_path), "%s/%s", application_directory, default_value); in dt_loc_init_generic()
161 … g_snprintf(complete_path, sizeof(complete_path), "%s/%s", application_directory, default_value); in dt_loc_init_generic()
163 path = g_strdup(complete_path); in dt_loc_init_generic()
/dports/graphics/darktable/darktable-3.6.1/src/common/
H A Dfile_location.c134 gchar complete_path[PATH_MAX] = { 0 }; in dt_loc_init_generic() local
153 …g_snprintf(complete_path, sizeof(complete_path), "%s/../Resources%s", application_directory, defau… in dt_loc_init_generic()
158 … g_snprintf(complete_path, sizeof(complete_path), "%s/%s", application_directory, default_value); in dt_loc_init_generic()
161 … g_snprintf(complete_path, sizeof(complete_path), "%s/%s", application_directory, default_value); in dt_loc_init_generic()
163 path = g_strdup(complete_path); in dt_loc_init_generic()
/dports/science/ALPSCore/ALPSCore-2.2.0/hdf5/src/
H A Darchive.cpp150 current_ = complete_path(context); in set_context()
153 std::string archive::complete_path(std::string path) const { in complete_path() function in alps::hdf5::archive
173 if ((path = complete_path(path)).find_last_of('@') != std::string::npos) in is_data()
183 if ((path = complete_path(path)).find_last_of('@') == std::string::npos) in is_attribute()
192 if ((path = complete_path(path)).find_last_of('@') != std::string::npos) in is_group()
246 if ((path = complete_path(path)).find_last_of('@') != std::string::npos) in is_complex()
262 if ((path = complete_path(path)).find_last_of('@') != std::string::npos) in list_children()
276 if ((path = complete_path(path)).find_last_of('@') != std::string::npos) in list_attributes()
294 if (is_null(path = complete_path(path))) in extent()
330 if ((path = complete_path(path)).find_last_of('@') != std::string::npos) in create_group()
[all …]
/dports/games/frogatto/frogatto-1.3.1/MacOSJet/boost/include/boost/wave/util/
H A Dfilesystem_compatibility.hpp74 inline boost::filesystem::path complete_path( in complete_path() function
84 inline boost::filesystem::path complete_path( in complete_path() function
149 inline boost::filesystem::path complete_path(
159 inline boost::filesystem::path complete_path(
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/skia/docs/examples/
H A DChromeMDRefreshTabs.cpp67 SkPath complete_path; in GetInteriorPath() local
68 Op(left_path, right_path, SkPathOp::kIntersect_SkPathOp, &complete_path); in GetInteriorPath()
69 return complete_path; in GetInteriorPath()
/dports/multimedia/gmerlin/gmerlin-1.2.0/lib/
H A Dsearchpath.c263 char * complete_path; in bg_display_html_help() local
269 complete_path = bg_sprintf("file://%s/%s", DOC_DIR, path); in bg_display_html_help()
270 command = bg_sprintf(url_launcher, complete_path); in bg_display_html_help()
275 free(complete_path); in bg_display_html_help()
/dports/databases/percona57-pam-for-mysql/boost_1_59_0/boost/wave/util/
H A Dfilesystem_compatibility.hpp74 inline boost::filesystem::path complete_path( in complete_path() function
88 inline boost::filesystem::path complete_path( in complete_path() function
165 inline boost::filesystem::path complete_path(
175 inline boost::filesystem::path complete_path(
/dports/math/stanmath/math-4.2.0/lib/boost_1.75.0/boost/wave/util/
H A Dfilesystem_compatibility.hpp74 inline boost::filesystem::path complete_path( in complete_path() function
88 inline boost::filesystem::path complete_path( in complete_path() function
165 inline boost::filesystem::path complete_path(
175 inline boost::filesystem::path complete_path(
/dports/science/py-scipy/scipy-1.7.1/scipy/_lib/boost/boost/wave/util/
H A Dfilesystem_compatibility.hpp74 inline boost::filesystem::path complete_path( in complete_path() function
88 inline boost::filesystem::path complete_path( in complete_path() function
165 inline boost::filesystem::path complete_path(
175 inline boost::filesystem::path complete_path(
/dports/databases/xtrabackup/boost_1_59_0/boost/wave/util/
H A Dfilesystem_compatibility.hpp74 inline boost::filesystem::path complete_path( in complete_path() function
88 inline boost::filesystem::path complete_path( in complete_path() function
165 inline boost::filesystem::path complete_path(
175 inline boost::filesystem::path complete_path(
/dports/databases/percona57-server/boost_1_59_0/boost/wave/util/
H A Dfilesystem_compatibility.hpp74 inline boost::filesystem::path complete_path( in complete_path() function
88 inline boost::filesystem::path complete_path( in complete_path() function
165 inline boost::filesystem::path complete_path(
175 inline boost::filesystem::path complete_path(
/dports/databases/percona57-client/boost_1_59_0/boost/wave/util/
H A Dfilesystem_compatibility.hpp74 inline boost::filesystem::path complete_path( in complete_path() function
88 inline boost::filesystem::path complete_path( in complete_path() function
165 inline boost::filesystem::path complete_path(
175 inline boost::filesystem::path complete_path(
/dports/security/keybase/client-v5.7.1/shared/ios/Pods/boost-for-react-native/boost/wave/util/
H A Dfilesystem_compatibility.hpp74 inline boost::filesystem::path complete_path( in complete_path() function
88 inline boost::filesystem::path complete_path( in complete_path() function
165 inline boost::filesystem::path complete_path(
175 inline boost::filesystem::path complete_path(
/dports/devel/boost-libs/boost_1_72_0/boost/wave/util/
H A Dfilesystem_compatibility.hpp74 inline boost::filesystem::path complete_path( in complete_path() function
88 inline boost::filesystem::path complete_path( in complete_path() function
165 inline boost::filesystem::path complete_path(
175 inline boost::filesystem::path complete_path(
/dports/devel/boost-docs/boost_1_72_0/boost/wave/util/
H A Dfilesystem_compatibility.hpp74 inline boost::filesystem::path complete_path( in complete_path() function
88 inline boost::filesystem::path complete_path( in complete_path() function
165 inline boost::filesystem::path complete_path(
175 inline boost::filesystem::path complete_path(

123456789