Home | History | Annotate | Download | only in toolutil

Lines Matching refs:filePath

36 isFileModTimeLater(const char *filePath, const char *checkAgainst, UBool isDir) {
39 if (filePath == NULL || checkAgainst == NULL) {
60 isLatest = isFileModTimeLater(filePath, newpath, isDir);
65 int32_t latest = whichFileModTimeIsLater(filePath, newpath);
82 int32_t latest = whichFileModTimeIsLater(filePath, checkAgainst);
123 swapFileSepChar(char *filePath, const char oldFileSepChar, const char newFileSepChar) {
124 for (int32_t i = 0, length = uprv_strlen(filePath); i < length; i++) {
125 filePath[i] = (filePath[i] == oldFileSepChar ) ? newFileSepChar : filePath[i];