Home
last modified time | relevance | path

Searched refs:commonPath (Results 1 – 25 of 68) sorted by relevance

123

/dports/www/bolt/bolt-2.2.24/vendor/composer/composer/src/Composer/Util/
H A DFilesystem.php339 $commonPath = $to;
340 …while (strpos($from.'/', $commonPath.'/') !== 0 && '/' !== $commonPath && !preg_match('{^[a-z]:/?$…
341 $commonPath = strtr(dirname($commonPath), '\\', '/');
344 if (0 !== strpos($from, $commonPath) || '/' === $commonPath) {
348 $commonPath = rtrim($commonPath, '/') . '/';
378 $commonPath = $to;
379 …(strpos($from.'/', $commonPath.'/') !== 0 && '/' !== $commonPath && !preg_match('{^[a-z]:/?$}i', $
380 $commonPath = strtr(dirname($commonPath), '\\', '/');
383 if (0 !== strpos($from, $commonPath) || '/' === $commonPath || '.' === $commonPath) {
387 $commonPath = rtrim($commonPath, '/') . '/';
[all …]
/dports/math/scilab/scilab-6.1.1/scilab/modules/external_objects_java/src/java/org/scilab/modules/external_objects_java/
H A DScilabJarCreator.java54 String commonPath = null; in createJarArchive() local
57 commonPath = getCommonPath(normalizedFilePaths); in createJarArchive()
61 commonPath = new File(filesRootPath).getCanonicalPath(); in createJarArchive()
72 … manifestFilePath = commonPath + File.separator + "META-INF" + File.separator + "MANIFEST.MF"; in createJarArchive()
97 if ((commonPath != null) && (!commonPath.isEmpty())) { in createJarArchive()
98 pathInJar = getRelativePath(commonPath, filePath); in createJarArchive()
199 String commonPath = ""; in getCommonPath() local
216 return commonPath; in getCommonPath()
223 commonPath += folderToMatch + File.separator; in getCommonPath()
225 return commonPath; in getCommonPath()
[all …]
/dports/devel/gitlist/gitlist/vendor/phpunit/php-code-coverage/src/CodeCoverage/Report/
H A DFactory.php25 $commonPath = $this->reducePaths($files);
27 $commonPath,
177 $commonPath = '';
181 $commonPath = dirname($paths[0]) . '/';
186 return $commonPath;
218 $commonPath .= $paths[0][0];
221 $commonPath .= DIRECTORY_SEPARATOR;
240 return substr($commonPath, 0, -1);
/dports/devel/php-libawl/awl-827fbfed7dab0ca339998ca6cdcffb328246d83b/vendor/phpunit/php-code-coverage/PHP/CodeCoverage/Report/
H A DFactory.php65 $commonPath = $this->reducePaths($files);
67 $commonPath, NULL
216 $commonPath = '';
220 $commonPath = dirname($paths[0]) . '/';
225 return $commonPath;
256 $commonPath .= $paths[0][0];
259 $commonPath .= DIRECTORY_SEPARATOR;
278 return substr($commonPath, 0, -1);
/dports/devel/pear-PHP_CodeCoverage/php-code-coverage-5.2.2/src/Node/
H A DBuilder.php25 $commonPath = $this->reducePaths($files);
27 $commonPath,
179 $commonPath = '';
183 $commonPath = dirname($paths[0]) . '/';
188 return $commonPath;
220 $commonPath .= $paths[0][0];
223 $commonPath .= DIRECTORY_SEPARATOR;
242 return substr($commonPath, 0, -1);
/dports/java/openjdk15/jdk15u-jdk-15.0.6-1-1/test/jdk/tools/jpackage/linux/jdk/jpackage/tests/
H A DUsrTreeTest.java85 final Path commonPath = commonPath(launcherPath, launcherCfgPath); in test()
87 final boolean actualImageSplit = !commonPath.getFileName().equals( in test()
93 commonPath, launcherPath, launcherCfgPath)); in test()
112 private static Path commonPath(Path a, Path b) { in commonPath() method in UsrTreeTest
/dports/java/openjdk16/jdk16u-jdk-16.0.2-7-1/test/jdk/tools/jpackage/linux/jdk/jpackage/tests/
H A DUsrTreeTest.java85 final Path commonPath = commonPath(launcherPath, launcherCfgPath); in test()
87 final boolean actualImageSplit = !commonPath.getFileName().equals( in test()
93 commonPath, launcherPath, launcherCfgPath)); in test()
112 private static Path commonPath(Path a, Path b) { in commonPath() method in UsrTreeTest
/dports/java/openjdk17/jdk17u-jdk-17.0.1-12-1/test/jdk/tools/jpackage/linux/jdk/jpackage/tests/
H A DUsrTreeTest.java85 final Path commonPath = commonPath(launcherPath, launcherCfgPath); in test()
87 final boolean actualImageSplit = !commonPath.getFileName().equals( in test()
93 commonPath, launcherPath, launcherCfgPath)); in test()
112 private static Path commonPath(Path a, Path b) { in commonPath() method in UsrTreeTest
/dports/www/typo3-9/typo3_src-9.5.31/typo3/sysext/core/Classes/Utility/
H A DPathUtility.php112 $commonPath = null;
114 $commonPath = array_shift($paths);
130 $commonPath = $comparePath;
133 if ($commonPath !== null) {
134 $commonPath = self::sanitizeTrailingSeparator($commonPath, '/');
136 return $commonPath;
/dports/www/typo3-10/typo3_src-10.4.25/typo3/sysext/core/Classes/Utility/
H A DPathUtility.php113 $commonPath = null;
115 $commonPath = array_shift($paths);
131 $commonPath = $comparePath;
134 if ($commonPath !== null) {
135 $commonPath = self::sanitizeTrailingSeparator($commonPath, '/');
137 return $commonPath;
/dports/www/typo3-11/typo3_src-11.5.7/typo3/sysext/core/Classes/Utility/
H A DPathUtility.php174 $commonPath = null;
176 $commonPath = array_shift($paths);
192 $commonPath = $comparePath;
195 if ($commonPath !== null) {
196 $commonPath = self::sanitizeTrailingSeparator($commonPath, '/');
198 return $commonPath;
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.ui/bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/dialogs/
H A DLinkedResourceEditor.java760 IPath commonPath = null; in convertToRelative() local
765 if (commonPath == null) in convertToRelative()
766 commonPath = location; in convertToRelative()
770 commonPath = commonPath.removeLastSegments(commonPath in convertToRelative()
774 if (commonPath.segmentCount() == 0) in convertToRelative()
777 if (commonPath.segmentCount() > 1) { in convertToRelative()
781 URIUtil.toURI(commonPath)); in convertToRelative()
787 variableName, commonPath in convertToRelative()
837 URIUtil.toURI(commonPath)); in convertToRelative()
843 variableName, commonPath in convertToRelative()
[all …]
/dports/devel/gitlist/gitlist/vendor/phpunit/php-file-iterator/src/
H A DFacade.php26 * @param bool $commonPath
29 …FilesAsArray($paths, $suffixes = '', $prefixes = '', array $exclude = array(), $commonPath = FALSE) argument
59 if ($commonPath) {
/dports/devel/php-libawl/awl-827fbfed7dab0ca339998ca6cdcffb328246d83b/vendor/phpunit/php-file-iterator/File/Iterator/
H A DFacade.php64 * @param boolean $commonPath
67 …FilesAsArray($paths, $suffixes = '', $prefixes = '', array $exclude = array(), $commonPath = FALSE) argument
97 if ($commonPath) {
/dports/x11/eaglemode/eaglemode-0.95.0/src/emCore/
H A DemTmpFile.cpp174 emString commonPath; in TryDeleteDeadDirectories() local
180 commonPath=GetCommonPath(); in TryDeleteDeadDirectories()
182 list=emTryLoadDir(commonPath); in TryDeleteDeadDirectories()
204 emTryRemoveFileOrTree(emGetChildPath(commonPath,nm),true); in TryDeleteDeadDirectories()
/dports/www/chromium-legacy/chromium-88.0.4324.182/chrome/test/chromedriver/chrome/
H A Dchrome_finder.cc78 base::FilePath::StringType commonPath; in GetPathsFromEnvironment() local
87 commonPath = base::UTF8ToWide(path); in GetPathsFromEnvironment()
90 commonPath = path; in GetPathsFromEnvironment()
95 commonPath, delimiter, base::KEEP_WHITESPACE, base::SPLIT_WANT_ALL); in GetPathsFromEnvironment()
/dports/www/dolibarr/dolibarr-14.0.3/htdocs/includes/restler/framework/Luracast/Restler/
H A DUtil.php161 $commonPath = array();
164 $commonPath [] = array_shift($fromPath);
170 return array(implode($char, $commonPath), implode($char, $fromPath));
/dports/www/dolibarr13/dolibarr-13.0.5/htdocs/includes/restler/framework/Luracast/Restler/
H A DUtil.php161 $commonPath = array();
164 $commonPath [] = array_shift($fromPath);
170 return array(implode($char, $commonPath), implode($char, $fromPath));
/dports/graphics/aseprite/aseprite-1.2.9/src/app/
H A Dextensions.cpp542 info.commonPath = base::get_file_path(entryFn); in getCompressedExtensionInfo()
543 if (!info.commonPath.empty() && in getCompressedExtensionInfo()
544 entryFn.size() > info.commonPath.size()) { in getCompressedExtensionInfo()
545 info.commonPath.push_back(entryFn[info.commonPath.size()]); in getCompressedExtensionInfo()
580 if (!info.commonPath.empty()) { in installCompressedExtension()
582 if (fn.compare(0, info.commonPath.size(), info.commonPath) != 0) in installCompressedExtension()
585 fn.erase(0, info.commonPath.size()); in installCompressedExtension()
/dports/devel/pear-File_Iterator/php-file-iterator-3.0.5/src/
H A DFacade.php29 …Array($paths, $suffixes = '', $prefixes = '', array $exclude = [], bool $commonPath = false): array argument
56 if ($commonPath) {
/dports/net/drive/drive-0.4.0/src/
H A Dclashes.go245 for commonPath, group := range clashesMap {
246 ext := filepath.Ext(commonPath)
247 name := strings.TrimSuffix(commonPath, ext)
267 r := renameOp{newName: newName, change: group[i], originalPath: commonPath}
/dports/devel/php-libawl/awl-827fbfed7dab0ca339998ca6cdcffb328246d83b/vendor/phpunit/php-code-coverage/Tests/PHP/CodeCoverage/Report/
H A DFactoryTest.php206 public function testReducePaths($reducedPaths, $commonPath, $paths) argument
217 $this->assertEquals($commonPath, $_commonPath);
/dports/devel/pear-PHP_CodeCoverage/php-code-coverage-5.2.2/tests/tests/
H A DBuilderTest.php154 public function testReducePaths($reducedPaths, $commonPath, $paths) argument
166 $this->assertEquals($commonPath, $_commonPath);
/dports/dns/bind911/bind-9.11.37/bin/win32/BINDInstall/
H A DBINDInstallDlg.h91 void ProgramGroupCreate(TCHAR *commonPath);
92 void ProgramGroupRemove(TCHAR *commonPath);
/dports/dns/bind-tools/bind-9.16.27/bin/win32/BINDInstall/
H A DBINDInstallDlg.h120 ProgramGroupCreate(TCHAR *commonPath);
122 ProgramGroupRemove(TCHAR *commonPath);

123