| /expo/packages/expo-image-picker/build/ |
| H A D | ExponentImagePicker.web.d.ts | 5 launchImageLibraryAsync({ mediaTypes, allowsMultipleSelection, base64, }: { 8 base64?: boolean | undefined; 10 launchCameraAsync({ mediaTypes, allowsMultipleSelection, base64, }: { 13 base64?: boolean | undefined;
|
| H A D | ExponentImagePicker.web.js | 12 …Async({ mediaTypes = MediaTypeOptions.Images, allowsMultipleSelection = false, base64 = false, }) { property 20 base64, 23 …Async({ mediaTypes = MediaTypeOptions.Images, allowsMultipleSelection = false, base64 = false, }) { property 32 base64, 63 …n openFileBrowserAsync({ mediaTypes, capture = false, allowsMultipleSelection = false, base64, }) { 81 … const assets = await Promise.all(Array.from(files).map((file) => readFile(file, { base64 }))); field 115 ...(options.base64 && { base64: uri.substr(uri.indexOf(',') + 1) }), property
|
| H A D | ImagePicker.types.d.ts | 259 base64?: string | null; 365 base64?: boolean; 460 base64: boolean;
|
| /expo/packages/expo-image-picker/src/ |
| H A D | ExponentImagePicker.web.ts | 24 base64 = false, 33 base64, 40 base64 = false, 50 base64, 89 base64, 111 Array.from(files).map((file) => readFile(file, { base64 })) 126 function readFile(targetFile: Blob, options: { base64: boolean }): Promise<ImagePickerAsset> { 149 ...(options.base64 && { base64: uri.substr(uri.indexOf(',') + 1) }),
|
| H A D | ImagePicker.types.ts | 274 base64?: string | null; 390 base64?: boolean; 488 base64: boolean;
|
| /expo/packages/expo-random/build/ |
| H A D | Random.js | 40 const base64 = ExpoRandom.getRandomBase64String(validByteCount); 41 return toByteArray(base64); 62 const base64 = await ExpoRandom.getRandomBase64StringAsync(validByteCount); 63 return toByteArray(base64);
|
| /expo/packages/expo-random/src/ |
| H A D | Random.ts | 51 const base64 = ExpoRandom.getRandomBase64String(validByteCount); constant 52 return toByteArray(base64); 72 const base64 = await ExpoRandom.getRandomBase64StringAsync(validByteCount); constant 73 return toByteArray(base64);
|
| /expo/android/versioned-abis/expoview-abi47_0_0/src/main/java/abi47_0_0/expo/modules/imagemanipulator/arguments/ |
| H A D | SaveOptions.kt | 11 val base64: Boolean, constant in abi47_0_0.expo.modules.imagemanipulator.arguments.SaveOptions 17 val base64 = arguments.getBoolean(KEY_BASE64, false) in fromArguments() constant 20 return SaveOptions(base64, compress, format) in fromArguments()
|
| /expo/packages/expo-print/src/ |
| H A D | Print.types.ts | 115 base64?: boolean; 132 base64?: string;
|
| /expo/packages/expo-print/build/ |
| H A D | Print.types.d.ts | 106 base64?: boolean; 121 base64?: string;
|
| /expo/packages/expo-image-manipulator/src/ |
| H A D | ImageManipulator.types.ts | 21 base64?: string; 94 base64?: boolean;
|
| /expo/packages/expo-image-manipulator/build/ |
| H A D | ImageManipulator.types.d.ts | 20 base64?: string; 77 base64?: boolean;
|
| /expo/packages/expo-crypto/build/ |
| H A D | Crypto.js | 37 const base64 = ExpoCrypto.getRandomBase64String(validByteCount); 38 return toByteArray(base64); 58 const base64 = await ExpoCrypto.getRandomBase64StringAsync(validByteCount); 59 return toByteArray(base64);
|
| /expo/apps/test-suite/tests/ |
| H A D | ImagePicker.js | 118 base64: true, property 124 expect(typeof image.base64).toBe('string'); 125 expect(image.base64).not.toBe(''); 126 expect(image.base64).not.toContain('\n'); 127 expect(image.base64).not.toContain('\r');
|
| /expo/apps/native-component-list/src/screens/SVG/examples/ |
| H A D | Svg.tsx | 96 static title = 'Tap the shapes to render the Image below based on the base64-data of the Svg'; 98 state: { base64?: string } = {}; 103 this.root.toDataURL((base64: string) => { 105 base64, 128 {this.state.base64 && ( 130 source={{ uri: `data:image/png;base64,${this.state.base64}` }}
|
| /expo/packages/expo-crypto/src/ |
| H A D | Crypto.ts | 43 const base64 = ExpoCrypto.getRandomBase64String(validByteCount); constant 44 return toByteArray(base64); 63 const base64 = await ExpoCrypto.getRandomBase64StringAsync(validByteCount); constant 64 return toByteArray(base64);
|
| /expo/android/vendored/sdk47/@shopify/react-native-skia/cpp/api/ |
| H A D | JsiSkDataFactory.h | 59 auto base64 = arguments[0].asString(runtime); in JSI_HOST_FUNCTION() local 60 auto base64Str = base64.utf8(runtime); in JSI_HOST_FUNCTION() 65 auto err = SkBase64::Decode(&base64.utf8(runtime).c_str()[0], size, nullptr, &len); in JSI_HOST_FUNCTION() 73 … err = SkBase64::Decode(&base64.utf8(runtime).c_str()[0], size, data->writable_data(), &len); in JSI_HOST_FUNCTION()
|
| /expo/android/versioned-abis/expoview-abi47_0_0/src/main/java/abi47_0_0/expo/modules/imagepicker/ |
| H A D | MediaHandler.kt | 52 val base64 = options.base64.takeIf { it } in <lambda>() constant 63 base64 = base64, in <lambda>()
|
| /expo/ios/vendored/unversioned/@shopify/react-native-skia/cpp/api/ |
| H A D | JsiSkDataFactory.h | 63 auto base64 = arguments[0].asString(runtime); in JSI_HOST_FUNCTION() local 64 auto base64Str = base64.utf8(runtime); in JSI_HOST_FUNCTION() 70 SkBase64::Decode(&base64.utf8(runtime).c_str()[0], size, nullptr, &len); in JSI_HOST_FUNCTION() 78 err = SkBase64::Decode(&base64.utf8(runtime).c_str()[0], size, in JSI_HOST_FUNCTION()
|
| /expo/android/versioned-abis/expoview-abi49_0_0/src/main/java/abi49_0_0/expo/modules/imagepicker/ |
| H A D | MediaHandler.kt | 52 val base64 = options.base64.takeIf { it } in <lambda>() constant 63 base64 = base64, in <lambda>()
|
| /expo/android/vendored/sdk49/@shopify/react-native-skia/cpp/api/ |
| H A D | JsiSkDataFactory.h | 63 auto base64 = arguments[0].asString(runtime); in JSI_HOST_FUNCTION() local 64 auto base64Str = base64.utf8(runtime); in JSI_HOST_FUNCTION() 70 SkBase64::Decode(&base64.utf8(runtime).c_str()[0], size, nullptr, &len); in JSI_HOST_FUNCTION() 78 err = SkBase64::Decode(&base64.utf8(runtime).c_str()[0], size, in JSI_HOST_FUNCTION()
|
| /expo/android/vendored/unversioned/@shopify/react-native-skia/cpp/api/ |
| H A D | JsiSkDataFactory.h | 63 auto base64 = arguments[0].asString(runtime); in JSI_HOST_FUNCTION() local 64 auto base64Str = base64.utf8(runtime); in JSI_HOST_FUNCTION() 70 SkBase64::Decode(&base64.utf8(runtime).c_str()[0], size, nullptr, &len); in JSI_HOST_FUNCTION() 78 err = SkBase64::Decode(&base64.utf8(runtime).c_str()[0], size, in JSI_HOST_FUNCTION()
|
| /expo/ios/vendored/sdk47/@shopify/react-native-skia/cpp/api/ |
| H A D | JsiSkDataFactory.h | 59 auto base64 = arguments[0].asString(runtime); in JSI_HOST_FUNCTION() local 60 auto base64Str = base64.utf8(runtime); in JSI_HOST_FUNCTION() 65 auto err = SkBase64::Decode(&base64.utf8(runtime).c_str()[0], size, nullptr, &len); in JSI_HOST_FUNCTION() 73 … err = SkBase64::Decode(&base64.utf8(runtime).c_str()[0], size, data->writable_data(), &len); in JSI_HOST_FUNCTION()
|
| /expo/ios/vendored/sdk49/@shopify/react-native-skia/cpp/api/ |
| H A D | JsiSkDataFactory.h | 63 auto base64 = arguments[0].asString(runtime); in JSI_HOST_FUNCTION() local 64 auto base64Str = base64.utf8(runtime); in JSI_HOST_FUNCTION() 70 SkBase64::Decode(&base64.utf8(runtime).c_str()[0], size, nullptr, &len); in JSI_HOST_FUNCTION() 78 err = SkBase64::Decode(&base64.utf8(runtime).c_str()[0], size, in JSI_HOST_FUNCTION()
|
| /expo/android/versioned-abis/expoview-abi48_0_0/src/main/java/abi48_0_0/expo/modules/imagepicker/ |
| H A D | MediaHandler.kt | 52 val base64 = options.base64.takeIf { it } in <lambda>() constant 63 base64 = base64, in <lambda>()
|