Home
last modified time | relevance | path

Searched refs:REPLACE_EXISTING (Results 1 – 6 of 6) sorted by relevance

/external/jimfs/jimfs/src/test/java/com/google/common/jimfs/
DJimfsWindowsLikeFileSystemTest.java20 import static java.nio.file.StandardCopyOption.REPLACE_EXISTING;
447 Files.copy(path("foo"), path("E:\\"), REPLACE_EXISTING); in testCopyFile_toExistingRootPath_fails()
453 Files.copy(path("bar"), path("E:\\"), REPLACE_EXISTING); in testCopyFile_toExistingRootPath_fails()
465 Files.move(path("foo"), path("E:\\"), REPLACE_EXISTING); in testMoveFile_toExistingRootPath_fails()
471 Files.move(path("bar"), path("E:\\"), REPLACE_EXISTING); in testMoveFile_toExistingRootPath_fails()
DJimfsUnixLikeFileSystemTest.java28 import static java.nio.file.StandardCopyOption.REPLACE_EXISTING;
1527 Files.copy(new ByteArrayInputStream(bytes), path("/test"), REPLACE_EXISTING); in testCopy_inputStreamToFile()
1530 Files.copy(new ByteArrayInputStream(bytes), path("/foo"), REPLACE_EXISTING); in testCopy_inputStreamToFile()
1556 Files.copy(path("/baz"), path("/bar"), REPLACE_EXISTING); in testCopy_fileToPath()
1673 Files.copy(path("/test"), path("/bar"), REPLACE_EXISTING); in testCopy_withReplaceExisting()
1681 Files.copy(path("/baz"), path("/bar"), REPLACE_EXISTING); in testCopy_withReplaceExisting()
1695 Files.copy(path("/test"), path("/foo"), REPLACE_EXISTING); in testCopy_withReplaceExisting_cantReplaceNonEmptyDirectory()
1705 Files.copy(path("/test"), path("/foo"), REPLACE_EXISTING); in testCopy_withReplaceExisting_cantReplaceNonEmptyDirectory()
1714 Files.copy(path("/test"), path("/foo"), REPLACE_EXISTING); in testCopy_withReplaceExisting_cantReplaceNonEmptyDirectory()
/external/cldr/tools/java/org/unicode/cldr/tool/
DGenerateMaximalLocales.java1068 …age, language + "_" + script + "_" + region, toMaximized, "L->SR", LocaleOverride.REPLACE_EXISTING, in tryDifferentAlgorithm()
1073 …language, language + "_" + script, toMaximized, "L->S", LocaleOverride.REPLACE_EXISTING, SHOW_ADD); in tryDifferentAlgorithm()
1077 …language, language + "_" + region, toMaximized, "L->R", LocaleOverride.REPLACE_EXISTING, SHOW_ADD); in tryDifferentAlgorithm()
1085 LocaleOverride.REPLACE_EXISTING, SHOW_ADD); in tryDifferentAlgorithm()
1089 …+ script, language + "_" + script, toMaximized, "S->L", LocaleOverride.REPLACE_EXISTING, SHOW_ADD); in tryDifferentAlgorithm()
1093 …d_" + script, "und_" + script + "_" + region, toMaximized, "S->R", LocaleOverride.REPLACE_EXISTING, in tryDifferentAlgorithm()
1102 LocaleOverride.REPLACE_EXISTING, SHOW_ADD); in tryDifferentAlgorithm()
1106 …+ region, language + "_" + region, toMaximized, "R->L", LocaleOverride.REPLACE_EXISTING, SHOW_ADD); in tryDifferentAlgorithm()
1110 …d_" + region, "und_" + script + "_" + region, toMaximized, "R->S", LocaleOverride.REPLACE_EXISTING, in tryDifferentAlgorithm()
1135 LocaleOverride.REPLACE_EXISTING, SHOW_ADD); in tryDifferentAlgorithm()
[all …]
/external/dokka/runners/gradle-integration-tests/src/test/kotlin/org/jetbrains/dokka/gradle/
DUtils.kt48 …s.copy(file, targetPath.resolve(sourcePath?.relativize(file)), StandardCopyOption.REPLACE_EXISTING) in visitFile()
/external/dokka/runners/maven-plugin/
Dbuild.gradle57 Files.move(filePath, targetFilePath, StandardCopyOption.REPLACE_EXISTING)
/external/jimfs/jimfs/src/main/java/com/google/common/jimfs/
DFileSystemView.java21 import static java.nio.file.StandardCopyOption.REPLACE_EXISTING;
538 } else if (options.contains(REPLACE_EXISTING)) { in copy()