Home
last modified time | relevance | path

Searched refs:toPath (Results 1 – 25 of 94) sorted by relevance

1234

/expo/android/
H A Dversioning_linking.gradle14 …def projectRoot = rootDir.toPath().relativize(gradleFile.toPath()).getParent().getParent().toStrin…
29 …def projectRoot = rootDir.toPath().relativize(gradleFile.toPath()).getParent().getParent().toStrin…
/expo/ios/versioned/sdk47/EXFileSystem/EXFileSystem/
H A DABI47_0_0EXFileSystemLocalFileHandler.m56 NSString *toPath = [to.path stringByStandardizingPath];
59 if ([[NSFileManager defaultManager] fileExistsAtPath:toPath]) {
60 if (![[NSFileManager defaultManager] removeItemAtPath:toPath error:&error]) {
69 if ([[NSFileManager defaultManager] copyItemAtPath:fromPath toPath:toPath error:&error]) {
H A DABI47_0_0EXFileSystemAssetLibraryHandler.m47 NSString *toPath = [to.path stringByStandardizingPath];
51 if ([[NSFileManager defaultManager] fileExistsAtPath:toPath]) {
52 if (![[NSFileManager defaultManager] removeItemAtPath:toPath error:&error]) {
83 …[ABI47_0_0EXFileSystemAssetLibraryHandler copyData:data toPath:toPath resolver:resolve rejecter:re…
87 …[ABI47_0_0EXFileSystemAssetLibraryHandler copyData:imageData toPath:toPath resolver:resolve reject…
128 toPath:(NSString *)path
/expo/ios/versioned/sdk48/EXFileSystem/EXFileSystem/
H A DABI48_0_0EXFileSystemLocalFileHandler.m56 NSString *toPath = [to.path stringByStandardizingPath];
59 if ([[NSFileManager defaultManager] fileExistsAtPath:toPath]) {
60 if (![[NSFileManager defaultManager] removeItemAtPath:toPath error:&error]) {
69 if ([[NSFileManager defaultManager] copyItemAtPath:fromPath toPath:toPath error:&error]) {
H A DABI48_0_0EXFileSystemAssetLibraryHandler.m47 NSString *toPath = [to.path stringByStandardizingPath];
51 if ([[NSFileManager defaultManager] fileExistsAtPath:toPath]) {
52 if (![[NSFileManager defaultManager] removeItemAtPath:toPath error:&error]) {
83 …[ABI48_0_0EXFileSystemAssetLibraryHandler copyData:data toPath:toPath resolver:resolve rejecter:re…
87 …[ABI48_0_0EXFileSystemAssetLibraryHandler copyData:imageData toPath:toPath resolver:resolve reject…
128 toPath:(NSString *)path
/expo/packages/expo-file-system/ios/
H A DEXFileSystemLocalFileHandler.m57 NSString *toPath = [to.path stringByStandardizingPath];
60 if ([[NSFileManager defaultManager] fileExistsAtPath:toPath]) {
61 if (![[NSFileManager defaultManager] removeItemAtPath:toPath error:&error]) {
70 if ([[NSFileManager defaultManager] copyItemAtPath:fromPath toPath:toPath error:&error]) {
H A DEXFileSystemAssetLibraryHandler.m48 NSString *toPath = [to.path stringByStandardizingPath];
52 if ([[NSFileManager defaultManager] fileExistsAtPath:toPath]) {
53 if (![[NSFileManager defaultManager] removeItemAtPath:toPath error:&error]) {
84 … [EXFileSystemAssetLibraryHandler copyData:data toPath:toPath resolver:resolve rejecter:reject];
88 …[EXFileSystemAssetLibraryHandler copyData:imageData toPath:toPath resolver:resolve rejecter:reject…
129 toPath:(NSString *)path
/expo/ios/versioned/sdk49/EXFileSystem/EXFileSystem/
H A DABI49_0_0EXFileSystemLocalFileHandler.m57 NSString *toPath = [to.path stringByStandardizingPath];
60 if ([[NSFileManager defaultManager] fileExistsAtPath:toPath]) {
61 if (![[NSFileManager defaultManager] removeItemAtPath:toPath error:&error]) {
70 if ([[NSFileManager defaultManager] copyItemAtPath:fromPath toPath:toPath error:&error]) {
H A DABI49_0_0EXFileSystemAssetLibraryHandler.m48 NSString *toPath = [to.path stringByStandardizingPath];
52 if ([[NSFileManager defaultManager] fileExistsAtPath:toPath]) {
53 if (![[NSFileManager defaultManager] removeItemAtPath:toPath error:&error]) {
84 …[ABI49_0_0EXFileSystemAssetLibraryHandler copyData:data toPath:toPath resolver:resolve rejecter:re…
88 …[ABI49_0_0EXFileSystemAssetLibraryHandler copyData:imageData toPath:toPath resolver:resolve reject…
129 toPath:(NSString *)path
/expo/packages/@expo/fingerprint/src/
H A DDedup.ts88 const toPath = path.join(projectRoot, to.filePath); constant
89 const result = path.relative(fromPath, toPath).match(/^[./\\/]*$/) != null;
93 `Unexpected case which a dir is a descendant of a file - from[${fromPath}] to[${toPath}]`
/expo/packages/@expo/fingerprint/build/
H A DDedup.js76 const toPath = path_1.default.join(projectRoot, to.filePath);
77 const result = path_1.default.relative(fromPath, toPath).match(/^[./\\/]*$/) != null;
79 …'dir'), `Unexpected case which a dir is a descendant of a file - from[${fromPath}] to[${toPath}]`);
/expo/ios/versioned-react-native/ABI49_0_0/Expo/ExpoKit/Core/Api/
H A DABI49_0_0EXImageUtils.h17 + (NSString *)writeImage:(NSData *)image toPath:(NSString *)path;
/expo/ios/Exponent/Versioned/Core/Api/
H A DEXImageUtils.h17 + (NSString *)writeImage:(NSData *)image toPath:(NSString *)path;
/expo/ios/versioned-react-native/ABI48_0_0/Expo/ExpoKit/Core/Api/
H A DABI48_0_0EXImageUtils.h17 + (NSString *)writeImage:(NSData *)image toPath:(NSString *)path;
/expo/ios/versioned-react-native/ABI47_0_0/Expo/ExpoKit/Core/Api/
H A DABI47_0_0EXImageUtils.h17 + (NSString *)writeImage:(NSData *)image toPath:(NSString *)path;
/expo/packages/create-expo-module/src/
H A DcreateExampleApp.ts93 async function moveFiles(fromPath: string, toPath: string): Promise<void> {
95 await fs.move(path.join(fromPath, file), path.join(toPath, file), {
/expo/packages/create-expo-module/build/
H A DcreateExampleApp.js73 async function moveFiles(fromPath, toPath) { argument
75 …t fs_extra_1.default.move(path_1.default.join(fromPath, file), path_1.default.join(toPath, file), {
/expo/ios/versioned/sdk47/EXCamera/EXCamera/Utilities/
H A DABI47_0_0EXCameraUtils.h29 + (nonnull NSString *)writeImage:(NSData *)image toPath:(NSString *)path;
/expo/ios/versioned/sdk48/EXCamera/EXCamera/Utilities/
H A DABI48_0_0EXCameraUtils.h29 + (nonnull NSString *)writeImage:(NSData *)image toPath:(NSString *)path;
/expo/packages/expo-updates/expo-updates-gradle-plugin/src/main/kotlin/expo/modules/updates/
H A DExpoUpdatesPlugin.kt34 val projectRoot = project.rootProject.projectDir.parentFile.toPath() in <lambda>()
35 val entryFile = projectRoot.relativize(reactExtension.entryFile.get().asFile.toPath()) in <lambda>()
/expo/ios/versioned/sdk49/EXCamera/EXCamera/Utilities/
H A DABI49_0_0EXCameraUtils.h31 + (nonnull NSString *)writeImage:(NSData *)image toPath:(NSString *)path;
/expo/packages/expo-camera/ios/EXCamera/Utilities/
H A DEXCameraUtils.h31 + (nonnull NSString *)writeImage:(NSData *)image toPath:(NSString *)path;
/expo/ios/versioned/sdk48/EXUpdates/EXUpdates/AppLoader/
H A DABI48_0_0EXUpdatesFileDownloader.h27 toPath:(NSString *)destinationPath
/expo/ios/versioned/sdk47/EXUpdates/EXUpdates/AppLoader/
H A DABI47_0_0EXUpdatesFileDownloader.h27 toPath:(NSString *)destinationPath
/expo/ios/Client/
H A DHomeAppLoader.swift106 toPath: urlOnDisk.path, in downloadAsset()

1234