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

/opengrok-jel/src/org/opensolaris/opengrok/history/
H A DJDBCHistoryCache.java430 * @param fullPath the full path of the file with unix file separators
433 private static String getBaseName(String fullPath) { argument
434 int idx = fullPath.lastIndexOf('/');
435 return (idx >= 0) ? fullPath.substring(idx + 1) : fullPath;
441 * @param fullPath the full path of the file with unix file separators
444 private static String getParentPath(String fullPath) { argument
445 int idx = fullPath.lastIndexOf('/');
446 return (idx >= 0) ? fullPath.substring(0, idx) : fullPath;
456 splitPath(String fullPath) argument
1078 addAllDirs(PreparedStatement ps, int reposId, String fullPath, Map<String, Integer> map) argument
[all...]

Completed in 204 milliseconds