Home | History | Annotate | Download | only in toolutil

Lines Matching full:filepath

43 isFileModTimeLater(const char *filePath, const char *checkAgainst, UBool isDir) {
46 if (filePath == NULL || checkAgainst == NULL) {
67 isLatest = isFileModTimeLater(filePath, newpath, isDir);
72 int32_t latest = whichFileModTimeIsLater(filePath, newpath);
89 int32_t latest = whichFileModTimeIsLater(filePath, checkAgainst);
130 swapFileSepChar(char *filePath, const char oldFileSepChar, const char newFileSepChar) {
131 for (int32_t i = 0, length = uprv_strlen(filePath); i < length; i++) {
132 filePath[i] = (filePath[i] == oldFileSepChar ) ? newFileSepChar : filePath[i];