Home
last modified time | relevance | path

Searched refs:absolute_path (Results 1 – 25 of 1757) sorted by relevance

12345678910>>...71

/dports/www/ilias/ILIAS-5.4.25/src/Filesystem/Util/
H A DLegacyPathHelper.php45 case self::checkPossiblePath($temp, $absolute_path):
47 case self::checkPossiblePath($web, $absolute_path):
59 case self::checkPossiblePath($libs, $absolute_path):
96 case self::checkPossiblePath($web, $absolute_path):
126 case $possible_path === $absolute_path:
127 case $real_possible_path === $absolute_path:
129 case strpos($absolute_path, $possible_path) === 0:
141 * @param string $absolute_path
150 case $possible_path === $absolute_path:
152 case $real_possible_path === $absolute_path:
[all …]
/dports/www/ilias6/ILIAS-6.14/src/Filesystem/Util/
H A DLegacyPathHelper.php45 case self::checkPossiblePath($temp, $absolute_path):
47 case self::checkPossiblePath($web, $absolute_path):
59 case self::checkPossiblePath($libs, $absolute_path):
96 case self::checkPossiblePath($web, $absolute_path):
99 case self::checkPossiblePath($temp, $absolute_path):
126 case $possible_path === $absolute_path:
127 case $real_possible_path === $absolute_path:
129 case strpos($absolute_path, $possible_path) === 0:
141 * @param string $absolute_path
150 case $possible_path === $absolute_path:
[all …]
/dports/graphics/pear-Image_3D/Image_3D-0.4.2/Image/
H A D3D.php192 if (is_file($absolute_path) && is_readable($absolute_path)) {
193 include_once $absolute_path;
226 if (is_file($absolute_path) && is_readable($absolute_path)) {
227 include_once $absolute_path;
262 $absolute_path = dirname(__FILE__) . '/3D/Matrix/' . $name . '.php';
264 if (is_file($absolute_path) && is_readable($absolute_path)) {
265 include_once $absolute_path;
314 if (is_file($absolute_path) && is_readable($absolute_path)) {
315 include_once $absolute_path;
348 if (is_file($absolute_path) && is_readable($absolute_path)) {
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/tools/swarming_client/utils/
H A Dzip_package.py96 assert os.path.isabs(absolute_path), absolute_path
97 absolute_path = os.path.normpath(absolute_path)
102 if not os.path.exists(absolute_path):
104 if not os.path.isfile(absolute_path):
114 base, ext = os.path.splitext(absolute_path)
116 absolute_path = base + '.py'
119 self.add_file(absolute_path, archive_path)
136 assert os.path.isabs(absolute_path), absolute_path
137 absolute_path = os.path.normpath(absolute_path).rstrip(os.sep) + os.sep
142 if not os.path.exists(absolute_path):
[all …]
/dports/archivers/libarchive/libarchive-3.5.2/tar/test/
H A Dtest_option_C_mtree.c45 char *absolute_path = malloc(strlen(testworkdir) + strlen(mtree_file) + 1); in DEFINE_TEST() local
46 strcpy(absolute_path, testworkdir); in DEFINE_TEST()
47 strcat(absolute_path, mtree_file ); in DEFINE_TEST()
50 assertMakeFile(absolute_path, 0777, content); in DEFINE_TEST()
55 p = absolute_path; in DEFINE_TEST()
62 r = systemf("%s -cf %s -C bar @%s >step1.out 2>step1.err", testprog, filename, absolute_path); in DEFINE_TEST()
63 failure("Error invoking %s -cf %s -C bar @%s", testprog, filename, absolute_path); in DEFINE_TEST()
65 r = systemf("%s -cf %s -C bar \"@%s\" >step1.out 2>step1.err", testprog, filename, absolute_path); in DEFINE_TEST()
66 failure("Error invoking %s -cf %s -C bar \"@%s\"", testprog, filename, absolute_path); in DEFINE_TEST()
86 free(absolute_path); in DEFINE_TEST()
/dports/databases/sqlitestudio/sqlitestudio-3.3.3/SQLiteStudio3/
H A Dutils.pri2 #message("copying $$absolute_path($$1) to $$absolute_path($$2)");
12 #message("copying $$absolute_path($$1) to $$absolute_path($$2)");
25 # message("copying $$absolute_path($$1) to $$absolute_path($$2)");
27 # copy_target.commands = cp $$quote($$absolute_path($$1)) $$quote($$absolute_path($$2))
30 # copy_target.commands = copy $$quote($$absolute_path($$1)) $$quote($$absolute_path($$2)…
/dports/www/chromium-legacy/chromium-88.0.4324.182/tools/metrics/histograms/
H A Dexpand_owners_unittest.py87 with open(absolute_path, 'w') as owners_file:
91 src_relative_path = _GetSrcRelativePath(absolute_path)
140 src_relative_path = _GetSrcRelativePath(absolute_path)
142 with open(absolute_path, 'w') as owners_file:
197 src_relative_path = _GetSrcRelativePath(absolute_path)
199 with open(absolute_path, 'w') as owners_file:
237 with open(absolute_path, 'w') as owners_file:
322 with open(absolute_path, 'w') as owners_file:
475 with open(absolute_path, 'w') as owners_file:
503 with open(absolute_path, 'w') as owners_file:
[all …]
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/catapult/common/py_vulcanize/py_vulcanize/
H A Dresource_loader.py56 if absolute_path.startswith(source_path):
68 absolute_path = None
70 absolute_path = os.path.join(script_path, relative_path)
71 if os.path.exists(absolute_path):
94 return _read_file(resource.absolute_path)
138 if resource.absolute_path.endswith('.js'):
162 if resource.absolute_path in self.loaded_raw_scripts:
213 def _read_file(absolute_path): argument
223 if not os.path.exists(absolute_path):
224 raise Exception('%s not found.' % absolute_path)
[all …]
H A Dresource.py14 def __init__(self, toplevel_dir, absolute_path, binary=False): argument
16 self.absolute_path = absolute_path
23 return os.path.relpath(self.absolute_path, self.toplevel_dir)
49 if not os.path.exists(self.absolute_path):
50 raise Exception('%s not found.' % self.absolute_path)
52 f = open(self.absolute_path, mode='rb')
54 f = codecs.open(self.absolute_path, mode='r', encoding='utf-8')
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/catapult/common/py_vulcanize/py_vulcanize/
H A Dresource_loader.py56 if absolute_path.startswith(source_path):
68 absolute_path = None
70 absolute_path = os.path.join(script_path, relative_path)
71 if os.path.exists(absolute_path):
94 return _read_file(resource.absolute_path)
138 if resource.absolute_path.endswith('.js'):
162 if resource.absolute_path in self.loaded_raw_scripts:
213 def _read_file(absolute_path): argument
223 if not os.path.exists(absolute_path):
224 raise Exception('%s not found.' % absolute_path)
[all …]
H A Dresource.py14 def __init__(self, toplevel_dir, absolute_path, binary=False): argument
16 self.absolute_path = absolute_path
23 return os.path.relpath(self.absolute_path, self.toplevel_dir)
49 if not os.path.exists(self.absolute_path):
50 raise Exception('%s not found.' % self.absolute_path)
52 f = open(self.absolute_path, mode='rb')
54 f = codecs.open(self.absolute_path, mode='r', encoding='utf-8')
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/tools/metrics/histograms/
H A Dexpand_owners_unittest.py68 src_relative_path = _GetSrcRelativePath(absolute_path)
70 with open(absolute_path, 'w') as owners_file:
122 src_relative_path = _GetSrcRelativePath(absolute_path)
124 with open(absolute_path, 'w') as owners_file:
207 src_relative_path = _GetSrcRelativePath(absolute_path)
209 with open(absolute_path, 'w') as owners_file:
314 src_relative_path = _GetSrcRelativePath(absolute_path)
316 with open(absolute_path, 'w') as owners_file:
344 src_relative_path = _GetSrcRelativePath(absolute_path)
346 with open(absolute_path, 'w') as owners_file:
[all …]
/dports/www/py-graphite-web/graphite-web-1.1.8/webapp/graphite/finders/
H A Dstandard.py71 absolute_path = join(root_dir, relative_path)
86 if isdir(absolute_path):
89 elif absolute_path.endswith('.wsp') and WhisperReader.supported:
90 reader = WhisperReader(absolute_path, real_metric_path)
94 reader = GzippedWhisperReader(absolute_path, real_metric_path)
97 elif absolute_path.endswith('.rrd') and RRDReader.supported:
104 reader = RRDReader(absolute_path, datasource_name)
161 absolute_path = join(current_dir, subdir)
162 for match in self._find_paths(absolute_path, patterns):
196 absolute_path = join(settings.RRD_DIR, root, base_name)
[all …]
/dports/devel/gitinspector/gitinspector-0.4.4/gitinspector/
H A Dbasedir.py43 absolute_path = None
46absolute_path = subprocess.Popen(["git", "rev-parse", "--git-dir"], bufsize=1, stdout=subprocess.P…
48 absolute_path = subprocess.Popen(["git", "rev-parse", "--show-toplevel"], bufsize=1,
51 absolute_path = absolute_path.readlines()
52 if len(absolute_path) == 0:
55 __git_basedir__ = absolute_path[0].decode("utf-8", "replace").strip()
/dports/www/drupal8/drupal-8.9.20/core/tests/Drupal/Tests/Core/Asset/
H A DCssOptimizerUnitTest.php38 $absolute_path = dirname(__FILE__) . '/css_test_files/';
55 file_get_contents($absolute_path . 'css_input_without_import.css.optimized.css'),
75 …file_create_url($path . 'images/icon.png')) . ')', file_get_contents($absolute_path . 'css_input_w…
90 file_get_contents($absolute_path . 'comment_hacks.css.optimized.css'),
107 …file_create_url($path . 'images/icon.png')) . ')', file_get_contents($absolute_path . 'css_subfold…
123 file_get_contents($absolute_path . 'charset.css.optimized.css'),
136 file_get_contents($absolute_path . 'charset.css.optimized.css'),
201 file_get_contents($absolute_path . 'quotes.css.optimized.css'),
/dports/www/drupal9/drupal-9.2.10/core/tests/Drupal/Tests/Core/Asset/
H A DCssOptimizerUnitTest.php38 $absolute_path = dirname(__FILE__) . '/css_test_files/';
55 file_get_contents($absolute_path . 'css_input_without_import.css.optimized.css'),
77 …file_create_url($path . 'images/icon.png')) . ')', file_get_contents($absolute_path . 'css_input_w…
92 file_get_contents($absolute_path . 'comment_hacks.css.optimized.css'),
109 …file_create_url($path . 'images/icon.png')) . ')', file_get_contents($absolute_path . 'css_subfold…
125 file_get_contents($absolute_path . 'charset.css.optimized.css'),
138 file_get_contents($absolute_path . 'charset.css.optimized.css'),
203 file_get_contents($absolute_path . 'quotes.css.optimized.css'),
/dports/devel/cquery/cquery-20180718/src/
H A Dinclude_complete.cc15 std::string absolute_path; member
140 auto it = absolute_path_to_completion_item.find(absolute_path); in InsertCompletionItem()
143 absolute_path_to_completion_item[absolute_path] = in InsertCompletionItem()
155 void IncludeComplete::AddFile(const std::string& absolute_path) { in AddFile() argument
158 if (match_ && !match_->IsMatch(absolute_path)) in AddFile()
161 std::string trimmed_path = absolute_path; in AddFile()
170 InsertCompletionItem(absolute_path, std::move(item)); in AddFile()
197 candidate.absolute_path = directory->path + path; in InsertIncludesFromDirectory()
205 InsertCompletionItem(result.absolute_path, in InsertIncludesFromDirectory()
218 const std::string& absolute_path) { in FindCompletionItemForAbsolutePath() argument
[all …]
/dports/graphics/aseprite/aseprite-1.2.9/third_party/libarchive/tar/test/
H A Dtest_option_C_mtree.c42 char *absolute_path = malloc(strlen(testworkdir) + strlen(mtree_file) + 1); in DEFINE_TEST() local
43 strcpy(absolute_path, testworkdir); in DEFINE_TEST()
44 strcat(absolute_path, mtree_file ); in DEFINE_TEST()
47 assertMakeFile(absolute_path, 0777, content); in DEFINE_TEST()
51 r = systemf("%s -cf %s -C bar \"@%s\" >step1.out 2>step1.err", testprog, filename, absolute_path); in DEFINE_TEST()
53 failure("Error invoking %s -cf %s -C bar @%s", testprog, filename, absolute_path); in DEFINE_TEST()
/dports/www/py-graphite-api/graphite-api-1.1.3/graphite_api/finders/
H A Dwhisper.py37 for absolute_path in self._find_paths(root_dir, pattern_parts):
38 if os.path.basename(absolute_path).startswith('.'):
41 relative_path = absolute_path[len(root_dir):].lstrip(os.sep)
43 real_metric_path = get_real_metric_path(absolute_path,
53 if os.path.isdir(absolute_path):
56 elif os.path.isfile(absolute_path):
57 if absolute_path.endswith('.wsp'):
62 elif absolute_path.endswith('.wsp.gz'):
63 reader = GzippedWhisperReader(absolute_path,
83 absolute_path = os.path.join(current_dir, subdir)
[all …]
/dports/graphics/pecl-imagick/imagick-3.5.1/
H A Dimagick_file.c119 file->absolute_path = estrdup(""); in php_imagick_file_init()
125 file->absolute_path = estrdup(""); in php_imagick_file_init()
142 file->absolute_path = expand_filepath(buffer, NULL TSRMLS_CC); in php_imagick_file_init()
145 if (!file->absolute_path) { in php_imagick_file_init()
146 file->absolute_path = estrdup(""); in php_imagick_file_init()
153 if (file->absolute_path) { in php_imagick_file_deinit()
154 efree(file->absolute_path); in php_imagick_file_deinit()
155 file->absolute_path = NULL; in php_imagick_file_deinit()
195 MagickSetImageFilename(intern->magick_wand, file->absolute_path); in php_imagick_read_image_using_imagemagick()
244 MagickSetImageFilename(intern->magick_wand, file->absolute_path); in php_imagick_read_image_using_php_streams()
[all …]
/dports/graphics/pecl-imagick-im7/imagick-3.5.1/
H A Dimagick_file.c119 file->absolute_path = estrdup(""); in php_imagick_file_init()
125 file->absolute_path = estrdup(""); in php_imagick_file_init()
142 file->absolute_path = expand_filepath(buffer, NULL TSRMLS_CC); in php_imagick_file_init()
145 if (!file->absolute_path) { in php_imagick_file_init()
146 file->absolute_path = estrdup(""); in php_imagick_file_init()
153 if (file->absolute_path) { in php_imagick_file_deinit()
154 efree(file->absolute_path); in php_imagick_file_deinit()
155 file->absolute_path = NULL; in php_imagick_file_deinit()
195 MagickSetImageFilename(intern->magick_wand, file->absolute_path); in php_imagick_read_image_using_imagemagick()
244 MagickSetImageFilename(intern->magick_wand, file->absolute_path); in php_imagick_read_image_using_php_streams()
[all …]
/dports/devel/py-pyface/pyface-7.2.0/pyface/ui/wx/
H A Dimage_resource.py42 absolute_path = Property(Str) variable in ImageResource
59 icon = wx.Icon(self.absolute_path, wx.BITMAP_TYPE_ANY)
97 absolute_path = os.path.abspath(self._ref.filename)
100 absolute_path = self._get_image_not_found().absolute_path
102 return absolute_path
/dports/devel/hpx/hpx-1.2.1/cmake/
H A DHPX_AddLibraryHeaders.cmake21 get_filename_component(absolute_path ${header} ABSOLUTE)
26 if(${absolute_path} MATCHES ${HEADERS_EXCLUDE})
33 "Adding ${absolute_path} to header list for lib${name}")
34 set(${name}_HEADERS ${${name}_HEADERS} ${absolute_path}
59 get_filename_component(absolute_path ${header} ABSOLUTE)
64 if(${absolute_path} MATCHES ${HEADERS_EXCLUDE})
71 "Adding ${absolute_path} to header list for lib${name}")
72 set(${name}_HEADERS ${${name}_HEADERS} ${absolute_path}
H A DHPX_AddLibrarySources.cmake20 get_filename_component(absolute_path ${source} ABSOLUTE)
25 if(${absolute_path} MATCHES ${SOURCES_EXCLUDE})
32 "Adding ${absolute_path} to source list for lib${name}")
33 set(${name}_SOURCES ${${name}_SOURCES} ${absolute_path}
56 get_filename_component(absolute_path ${source} ABSOLUTE)
61 if(${absolute_path} MATCHES ${SOURCES_EXCLUDE})
68 "Adding ${absolute_path} to source list for lib${name}")
69 set(${name}_SOURCES ${${name}_SOURCES} ${absolute_path}
/dports/www/ilias6/ILIAS-6.14/Modules/File/classes/Sanitation/
H A DFilePathSanitizer.php35 private $absolute_path; variable in ILIAS\\File\\Sanitation\\FilePathSanitizer
51 …$this->absolute_path = $this->file_object->getDirectory($this->version) . "/" . $this->file_object…
52 $this->relative_path = LegacyPathHelper::createRelativePath($this->absolute_path);
53 $this->fs = LegacyPathHelper::deriveFilesystemFrom($this->absolute_path);
65 $native_absolute_path_exists = file_exists($this->absolute_path);
66 …ve_valid_absolute_path_existing = file_exists(ilFileUtils::getValidFilename($this->absolute_path));
128 $scandir = scandir(dirname($this->absolute_path));
141 … throw new Exception("no File found in " . dirname($this->absolute_path));
147 … foreach (new DirectoryIterator(dirname($this->absolute_path)) as $item) {

12345678910>>...71