Home
last modified time | relevance | path

Searched refs:decode (Results 1 – 25 of 134) sorted by relevance

123456

/expo/packages/expo-maps/android/src/main/java/expo/modules/maps/googleMaps/
H A DGoogleMapsCircles.kt40 Integer.decode("0x" + colorString[1] + colorString[1]), in colorStringtoInt()
41 Integer.decode("0x" + colorString[2] + colorString[2]), in colorStringtoInt()
42 Integer.decode("0x" + colorString[3] + colorString[3]), in colorStringtoInt()
45 Integer.decode("0x" + colorString[4] + colorString[4]), in colorStringtoInt()
52 Integer.decode("0x" + colorString.substring(1..2)), in colorStringtoInt()
53 Integer.decode("0x" + colorString.substring(3..4)), in colorStringtoInt()
54 Integer.decode("0x" + colorString.substring(5..6)), in colorStringtoInt()
57 Integer.decode("0x" + colorString.substring(7..8)), in colorStringtoInt()
58 Integer.decode("0x" + colorString.substring(1..2)), in colorStringtoInt()
59 Integer.decode("0x" + colorString.substring(3..4)), in colorStringtoInt()
[all …]
H A DGoogleMapsUtils.kt28 Integer.decode("0x" + hexColorString[1] + hexColorString[1]), in colorHexStringToInt()
29 Integer.decode("0x" + hexColorString[2] + hexColorString[2]), in colorHexStringToInt()
30 Integer.decode("0x" + hexColorString[3] + hexColorString[3]), in colorHexStringToInt()
33 Integer.decode("0x" + hexColorString[4] + hexColorString[4]), in colorHexStringToInt()
40 Integer.decode("0x" + hexColorString.substring(1..2)), in colorHexStringToInt()
41 Integer.decode("0x" + hexColorString.substring(3..4)), in colorHexStringToInt()
42 Integer.decode("0x" + hexColorString.substring(5..6)), in colorHexStringToInt()
45 Integer.decode("0x" + hexColorString.substring(7..8)), in colorHexStringToInt()
46 Integer.decode("0x" + hexColorString.substring(1..2)), in colorHexStringToInt()
47 Integer.decode("0x" + hexColorString.substring(3..4)), in colorHexStringToInt()
[all …]
/expo/packages/expo-image/build/utils/blurhash/
H A Ddecode.d.ts5 declare const decode: (blurhash: string, width: number, height: number, punch?: number) => Uint8Cla… constant
6 export default decode;
H A Ddecode.d.ts.map1 {"version":3,"file":"decode.d.ts","sourceRoot":"","sources":["../../../src/utils/blurhash/decode.ts…
H A DuseBlurhash.js5 import decode from './decode';
18 …const pixels = decode(blurhash.uri, blurhash?.width ?? DEFAULT_SIZE.width, blurhash?.height ?? DEF…
H A Ddecode.js45 const decode = (blurhash, width, height, punch) => { function
91 export default decode;
/expo/packages/expo-structured-headers/android/src/test/java/android/util/
H A DBase64.java12 public static byte[] decode(String str, int flags) { in decode() method in Base64
13 return java.util.Base64.getDecoder().decode(str); in decode()
/expo/packages/expo-image/src/utils/blurhash/
H A DuseBlurhash.tsx7 import decode from './decode';
28 const pixels = decode(
H A Ddecode.ts58 const decode = (blurhash: string, width: number, height: number, punch?: number) => { constant
114 export default decode;
/expo/packages/expo-camera/build/
H A DuseWebQRScanner.js57 const decode = createWorkerAsyncFunction(qrWorkerMethod, [ constant
72 const nativeEvent = await decode(data);
/expo/packages/expo-updates/android/src/main/java/expo/modules/updates/loader/
H A DLegacySignatureUtils.kt96 val decodedPublicKey = Base64.decode(publicKeyNoComments, Base64.DEFAULT) in verifyPublicRSASignature()
102 return signature.verify(Base64.decode(cipherText, Base64.DEFAULT)) in verifyPublicRSASignature()
/expo/packages/expo-camera/src/
H A DuseWebQRScanner.ts71 const decode = createWorkerAsyncFunction(qrWorkerMethod, [ constant
104 const nativeEvent: BarCodeScanningResult | any = await decode(data);
/expo/android/versioned-abis/expoview-abi49_0_0/src/main/java/abi49_0_0/host/exp/exponent/modules/api/components/maps/
H A DImageUtil.java11 byte[] decodedBytes = Base64.decode( in convert()
/expo/android/versioned-abis/expoview-abi47_0_0/src/main/java/abi47_0_0/host/exp/exponent/modules/api/components/maps/
H A DImageUtil.java12 byte[] decodedBytes = Base64.decode( in convert()
/expo/android/versioned-abis/expoview-abi48_0_0/src/main/java/abi48_0_0/host/exp/exponent/modules/api/components/maps/
H A DImageUtil.java12 byte[] decodedBytes = Base64.decode( in convert()
/expo/android/expoview/src/main/java/versioned/host/exp/exponent/modules/api/components/maps/
H A DImageUtil.java11 byte[] decodedBytes = Base64.decode( in convert()
/expo/android/versioned-abis/expoview-abi48_0_0/src/main/java/abi48_0_0/host/exp/exponent/modules/api/components/webview/
H A DURLUtil.java71 String decodedUrl = Uri.decode(url); in guessFileName()
167 … return URLDecoder.decode(m.group(4), m.group(3).isEmpty() ? "UTF-8" : m.group(3)); in parseContentDisposition()
/expo/android/expoview/src/main/java/versioned/host/exp/exponent/modules/api/components/webview/
H A DURLUtil.java71 String decodedUrl = Uri.decode(url); in guessFileName()
167 … return URLDecoder.decode(m.group(4), m.group(3).isEmpty() ? "UTF-8" : m.group(3)); in parseContentDisposition()
/expo/android/versioned-abis/expoview-abi49_0_0/src/main/java/abi49_0_0/host/exp/exponent/modules/api/components/webview/
H A DURLUtil.java71 String decodedUrl = Uri.decode(url); in guessFileName()
167 … return URLDecoder.decode(m.group(4), m.group(3).isEmpty() ? "UTF-8" : m.group(3)); in parseContentDisposition()
/expo/packages/expo-updates/ios/EXUpdates/ASN1Decoder/
H A DX509PublicKey.swift64 guard let publicKeyAsn1Objects = (try? ASN1DERDecoder.decode(data: keyData)) else {
/expo/packages/expo-image/android/src/main/java/expo/modules/image/dataurls/
H A DBase64DataFetcher.kt17 val data = Base64.decode(base64Section, Base64.DEFAULT) in cleanup()
/expo/android/versioned-abis/expoview-abi49_0_0/src/main/java/abi49_0_0/expo/modules/image/dataurls/
H A DBase64DataFetcher.kt17 val data = Base64.decode(base64Section, Base64.DEFAULT) in cleanup()
/expo/android/versioned-abis/expoview-abi48_0_0/src/main/java/abi48_0_0/expo/modules/image/dataurls/
H A DBase64DataFetcher.kt17 val data = Base64.decode(base64Section, Base64.DEFAULT) in cleanup()
/expo/packages/expo-notifications/android/src/main/java/expo/modules/notifications/service/delegates/
H A DBase64Serialization.kt24 Base64.decode(this, Base64.NO_WRAP) in asBase64EncodedObject()
/expo/android/versioned-abis/expoview-abi47_0_0/src/main/java/abi47_0_0/expo/modules/notifications/service/delegates/
H A DBase64Serialization.kt24 Base64.decode(this, Base64.NO_WRAP) in asBase64EncodedObject()

123456