Home
last modified time | relevance | path

Searched refs:deleteAsync (Results 1 – 25 of 43) sorted by relevance

12

/expo/apps/test-suite/tests/
H A DFileSystem.js30 await throws(() => FS.deleteAsync(p));
74 await FS.deleteAsync(localUri);
111 await FS.deleteAsync(localUri);
165 await FS.deleteAsync(to, { idempotent: true });
185 await FS.deleteAsync(to, { idempotent: true });
209 await FS.deleteAsync(dir, { idempotent: true });
245 await FS.deleteAsync(dir, { idempotent: true });
287 await FS.deleteAsync(dir, { idempotent: true });
391 await FS.deleteAsync(localUri);
458 await FS.deleteAsync(localUri);
[all …]
H A DSMSCommon.js14 await FS.deleteAsync(fileInfo.localUri, { idempotent: true });
25 await FS.deleteAsync(fileInfo.localUri);
H A DSQLite.ts184 await FS.deleteAsync(`${FS.documentDirectory}SQLite/test.db`);
602 await db.deleteAsync();
/expo/packages/expo-file-system/build/
H A DFileSystem.js101 export async function deleteAsync(fileUri, options = {}) { function
102 if (!ExponentFileSystem.deleteAsync) {
105 return await ExponentFileSystem.deleteAsync(fileUri, options);
112 return await deleteAsync(legacyDocumentDirectory, { idempotent: true });
446 const baseDeleteAsync = deleteAsync;
606 StorageAccessFramework.deleteAsync = baseDeleteAsync;
H A DFileSystem.d.ts61 export declare function deleteAsync(fileUri: string, options?: DeletingOptions): Promise<void>;
351 const deleteAsync: typeof import("./FileSystem").deleteAsync;
H A Dtypes.d.ts11 readonly deleteAsync?: PlatformMethod; property
H A Dtypes.js.map1 …rmMethod;\n readonly writeAsStringAsync?: PlatformMethod;\n readonly deleteAsync?: PlatformMetho…
/expo/packages/expo-file-system/src/
H A DFileSystem.ts141 export async function deleteAsync(fileUri: string, options: DeletingOptions = {}): Promise<void> { function
142 if (!ExponentFileSystem.deleteAsync) {
145 return await ExponentFileSystem.deleteAsync(fileUri, options);
153 return await deleteAsync(legacyDocumentDirectory, { idempotent: true });
571 const baseDeleteAsync = deleteAsync;
747 export const deleteAsync = baseDeleteAsync; constant
H A Dtypes.ts12 readonly deleteAsync?: PlatformMethod; property
/expo/packages/expo-sqlite/build/
H A DSQLite.js82 deleteAsync() { method in SQLiteDatabase
86 return ExpoSQLite.deleteAsync(this._name);
175 db.deleteAsync = db._db.deleteAsync.bind(db._db);
H A DSQLite.d.ts38 deleteAsync(): Promise<void>;
H A DSQLite.types.d.ts98 deleteAsync(): Promise<void>; method
H A DSQLite.js.map1deleteAsync(): Promise<void> {\n if (!this._closed) {\n throw new Error(\n `Unable …
/expo/packages/expo-sqlite/src/
H A DSQLite.ts118 deleteAsync(): Promise<void> { method in SQLiteDatabase
125 return ExpoSQLite.deleteAsync(this._name);
252 db.deleteAsync = db._db.deleteAsync.bind(db._db);
H A DSQLite.types.ts151 deleteAsync(): Promise<void>; method
/expo/docs/public/static/examples/v47.0.0/filesystem/
H A DgifManagement.ts65 await FileSystem.deleteAsync(gifDir);
/expo/docs/public/static/examples/v46.0.0/filesystem/
H A DgifManagement.ts65 await FileSystem.deleteAsync(gifDir);
/expo/docs/public/static/examples/unversioned/filesystem/
H A DgifManagement.ts65 await FileSystem.deleteAsync(gifDir);
/expo/docs/public/static/examples/v49.0.0/filesystem/
H A DgifManagement.ts65 await FileSystem.deleteAsync(gifDir);
/expo/docs/public/static/examples/v48.0.0/filesystem/
H A DgifManagement.ts65 await FileSystem.deleteAsync(gifDir);
/expo/packages/jest-expo/src/preset/
H A Dsetup.js114 deleteAsync: jest.fn(() => Promise.resolve()), property
/expo/android/versioned-abis/expoview-abi48_0_0/src/main/java/abi48_0_0/expo/modules/sqlite/
H A DSQLiteModule.kt62 fun deleteAsync(dbName: String, promise: Promise) { in <lambda>() method in abi48_0_0.expo.modules.sqlite.SQLiteModule
/expo/android/versioned-abis/expoview-abi47_0_0/src/main/java/abi47_0_0/expo/modules/sqlite/
H A DSQLiteModule.kt62 fun deleteAsync(dbName: String, promise: Promise) { in <lambda>() method in abi47_0_0.expo.modules.sqlite.SQLiteModule
/expo/apps/native-component-list/src/screens/Contacts/
H A DContactDetailScreen.tsx89 const deleteAsync = async () => {
294 <Text onPress={deleteAsync} style={styles.footer}>
/expo/docs/pages/versions/unversioned/sdk/
H A Dfilesystem.mdx166 await FileSystem.deleteAsync(gifDir);
236 | `deleteAsync` | `file:///`,<br/>[SAF URI](#saf-uri) …

12