Searched refs:canonicalPath (Results 1 - 3 of 3) sorted by relevance

/opengrok-jel/src/org/opensolaris/opengrok/configuration/
H A DConfiguration.java534 String canonicalPath = file.getCanonicalPath();
535 if (canonicalPath.startsWith(sourceRoot)) {
536 return canonicalPath.substring(sourceRoot.length() + stripCount);
540 if (canonicalPath.startsWith(allowedTarget)) {
541 return canonicalPath.substring(allowedTarget.length() + stripCount);
544 throw new FileNotFoundException("Failed to resolve '" + canonicalPath
/opengrok-jel/src/org/opensolaris/opengrok/index/
H A DIndexDatabase.java663 String canonicalPath = file.getCanonicalPath();
664 if (!absolutePath.equals(canonicalPath)
665 && !acceptSymlink(absolutePath, canonicalPath))
668 new Object[]{ absolutePath, canonicalPath });
727 * @param canonicalPath the canonical path to the file
730 private boolean acceptSymlink(String absolutePath, String canonicalPath) argument
734 if (isLocal(canonicalPath)) {
741 if (canonicalPath.startsWith(allowedTarget)
743 .equals(canonicalPath.substring(allowedTarget.length())))
/opengrok-jel/src/org/opensolaris/opengrok/history/
H A DClearCaseRepository.java362 String canonicalPath = file.getCanonicalPath();
364 if (canonicalPath.equalsIgnoreCase(vob)) {

Completed in 15 milliseconds