Searched refs:EncodingType (Results 1 – 10 of 10) sorted by relevance
| /expo/packages/expo-file-system/build/ |
| H A D | FileSystem.types.js | 35 export var EncodingType; variable 36 (function (EncodingType) { argument 40 EncodingType["UTF8"] = "utf8"; 44 EncodingType["Base64"] = "base64"; 45 })(EncodingType || (EncodingType = {}));
|
| H A D | FileSystem.types.d.ts | 214 export declare enum EncodingType { enum 230 encoding?: EncodingType | 'utf8' | 'base64'; 245 encoding?: EncodingType | 'utf8' | 'base64';
|
| H A D | FileSystem.types.js.map | 1 …EncodingType {\n /**\n * Standard encoding format.\n */\n UTF8 = 'utf8',\n /**\n * Binary…
|
| /expo/packages/expo-file-system/android/src/main/java/expo/modules/filesystem/ |
| H A D | FileSystemRecords.kt | 21 val encoding: EncodingType = EncodingType.UTF8, 28 enum class EncodingType(val value: String) : Enumerable { class 68 val encoding: EncodingType = EncodingType.UTF8
|
| H A D | FileSystemModule.kt | 181 if (encoding == EncodingType.BASE64) { in <lambda>() 210 if (encoding == EncodingType.BASE64) { in <lambda>()
|
| /expo/android/versioned-abis/expoview-abi49_0_0/src/main/java/abi49_0_0/expo/modules/filesystem/ |
| H A D | FileSystemRecords.kt | 21 val encoding: EncodingType = EncodingType.UTF8, 28 enum class EncodingType(val value: String) : Enumerable { class 68 val encoding: EncodingType = EncodingType.UTF8
|
| H A D | FileSystemModule.kt | 181 if (encoding == EncodingType.BASE64) { in <lambda>() 210 if (encoding == EncodingType.BASE64) { in <lambda>()
|
| /expo/packages/expo-file-system/src/ |
| H A D | FileSystem.types.ts | 237 export enum EncodingType { enum 256 encoding?: EncodingType | 'utf8' | 'base64'; 272 encoding?: EncodingType | 'utf8' | 'base64';
|
| /expo/apps/test-suite/tests/ |
| H A D | FileSystem.js | 84 encoding: FS.EncodingType.Base64, 96 await FS.writeAsStringAsync(localUri, b64, { encoding: FS.EncodingType.Base64 }); 98 expect(await FS.readAsStringAsync(localUri, { encoding: FS.EncodingType.Base64 })).toBe(
|
| /expo/docs/pages/versions/v46.0.0/sdk/ |
| H A D | filesystem.mdx | 202 ### `FileSystem.EncodingType` 206 - **FileSystem.EncodingType.UTF8** -- Standard readable format. 208 - **FileSystem.EncodingType.Base64** -- Binary, radix-64 representation. 297 … the file. Options: `FileSystem.EncodingType.UTF8`, `FileSystem.EncodingType.Base64`. Default is `… 299 …of bytes to read. This option is only used when `encoding: FileSystem.EncodingType.Base64` and `po… 301 …of bytes to skip. This option is only used when `encoding: FileSystem.EncodingType.Base64` and `le… 319 … the file. Options: `FileSystem.EncodingType.UTF8`, `FileSystem.EncodingType.Base64`. Default is `…
|