Home
last modified time | relevance | path

Searched refs:hex (Results 1 – 25 of 77) sorted by relevance

1234

/expo/packages/@expo/fingerprint/src/hash/
H A DHash.ts74 return { ...source, hash: result?.hex ?? null };
119 const hex = hasher.digest('hex'); constant
120 resolve({ id: filePath, hex });
171 hasher.update(result.hex);
173 const hex = hasher.digest('hex'); constant
175 return { id: dirPath, hex };
185 const hex = createHash(options.hashAlgorithm).update(source.contents).digest('hex'); constant
186 return { id: source.id, hex };
/expo/packages/@expo/fingerprint/build/hash/
H A DHash.js53 return { ...source, hash: result?.hex ?? null };
91 const hex = hasher.digest('hex');
92 resolve({ id: filePath, hex }); field
133 hasher.update(result.hex);
135 const hex = hasher.digest('hex');
136 return { id: dirPath, hex };
143 … const hex = (0, crypto_1.createHash)(options.hashAlgorithm).update(source.contents).digest('hex');
144 return { id: source.id, hex };
/expo/packages/expo-maps/ios/ExpoMaps/AppleMaps/
H A DUIColorExtension.swift3 let hex = hexString.trimmingCharacters(in: CharacterSet.alphanumerics.inverted) variable
5 Scanner(string: hex).scanHexInt64(&int)
7 switch hex.count {
/expo/ios/vendored/unversioned/@stripe/stripe-react-native/ios/
H A DUIColorExtension.swift10 let hex = hexString.trimmingCharacters(in: CharacterSet.alphanumerics.inverted) variable
12 Scanner(string: hex).scanHexInt64(&int)
14 switch hex.count {
/expo/ios/vendored/sdk49/@stripe/stripe-react-native/ios/
H A DUIColorExtension.swift10 let hex = hexString.trimmingCharacters(in: CharacterSet.alphanumerics.inverted) variable
12 Scanner(string: hex).scanHexInt64(&int)
14 switch hex.count {
/expo/ios/versioned/sdk48/ExpoMaps/ExpoMaps/AppleMaps/
H A DUIColorExtension.swift3 let hex = hexString.trimmingCharacters(in: CharacterSet.alphanumerics.inverted) variable
5 Scanner(string: hex).scanHexInt64(&int)
7 switch hex.count {
/expo/ios/vendored/sdk48/@stripe/stripe-react-native/ios/
H A DUIColorExtension.swift10 let hex = hexString.trimmingCharacters(in: CharacterSet.alphanumerics.inverted) variable
12 Scanner(string: hex).scanHexInt64(&int)
14 switch hex.count {
/expo/ios/vendored/sdk47/@stripe/stripe-react-native/ios/
H A DUIColorExtension.swift10 let hex = hexString.trimmingCharacters(in: CharacterSet.alphanumerics.inverted) variable
12 Scanner(string: hex).scanHexInt64(&int)
14 switch hex.count {
/expo/ios/versioned/sdk49/ExpoMaps/ExpoMaps/AppleMaps/
H A DUIColorExtension.swift3 let hex = hexString.trimmingCharacters(in: CharacterSet.alphanumerics.inverted) variable
5 Scanner(string: hex).scanHexInt64(&int)
7 switch hex.count {
/expo/ios/versioned/sdk48/ExpoCrypto/
H A DDigestOptions.swift7 var encoding: Encoding = .hex
10 case hex = "hex"
/expo/ios/versioned/sdk47/ExpoCrypto/
H A DDigestOptions.swift7 var encoding: Encoding = .hex
10 case hex = "hex"
/expo/ios/versioned/sdk49/ExpoCrypto/
H A DDigestOptions.swift7 var encoding: Encoding = .hex
10 case hex = "hex"
/expo/packages/expo-crypto/ios/
H A DDigestOptions.swift7 var encoding: Encoding = .hex
10 case hex = "hex"
/expo/ios/versioned-react-native/ABI48_0_0/Expo/ExpoKit/Core/Api/
H A DABI48_0_0EXUtil.m50 // https://stackoverflow.com/questions/14051807/how-can-i-get-a-hex-string-from-uicolor-or-from-rgb
83 unsigned int hex;
84 if ([scanner scanHexInt:&hex]) {
85 int r = (hex >> 16) & 0xFF;
86 int g = (hex >> 8) & 0xFF;
87 int b = (hex) & 0xFF;
/expo/ios/versioned-react-native/ABI49_0_0/Expo/ExpoKit/Core/Api/
H A DABI49_0_0EXUtil.m50 // https://stackoverflow.com/questions/14051807/how-can-i-get-a-hex-string-from-uicolor-or-from-rgb
83 unsigned int hex;
84 if ([scanner scanHexInt:&hex]) {
85 int r = (hex >> 16) & 0xFF;
86 int g = (hex >> 8) & 0xFF;
87 int b = (hex) & 0xFF;
/expo/ios/Exponent/Versioned/Core/Api/
H A DEXUtil.m50 // https://stackoverflow.com/questions/14051807/how-can-i-get-a-hex-string-from-uicolor-or-from-rgb
83 unsigned int hex;
84 if ([scanner scanHexInt:&hex]) {
85 int r = (hex >> 16) & 0xFF;
86 int g = (hex >> 8) & 0xFF;
87 int b = (hex) & 0xFF;
/expo/ios/versioned-react-native/ABI47_0_0/Expo/ExpoKit/Core/Api/
H A DABI47_0_0EXUtil.m50 // https://stackoverflow.com/questions/14051807/how-can-i-get-a-hex-string-from-uicolor-or-from-rgb
83 unsigned int hex;
84 if ([scanner scanHexInt:&hex]) {
85 int r = (hex >> 16) & 0xFF;
86 int g = (hex >> 8) & 0xFF;
87 int b = (hex) & 0xFF;
/expo/apps/test-suite/tests/
H A DCrypto.js13 function getArrayBufferFromHex(hex) { argument
14 const bytes = new Uint8Array(Math.ceil(hex.length / 2));
15 return bytes.map((_, index) => parseInt(hex.substr(index * 2, 2), 16)).buffer;
99 const hex = valueMapping[CryptoEncoding.HEX][algorithm];
100 const targetValue = getArrayBufferFromHex(hex);
/expo/packages/@expo/fingerprint/src/hash/__tests__/
H A DHash-test.ts105 expect(result.hex).toEqual(expectHex);
127 expect(result?.hex).toEqual(expectHex);
162 expect(result?.hex).not.toBe('');
212 expect(result?.hex).toEqual(sortedResult?.hex);
/expo/packages/expo-modules-core/src/uuid/lib/
H A Dv35.ts6 uuid.replace(/[a-fA-F0-9]{2}/g, (hex: string) => {
7 bytes.push(parseInt(hex, 16));
/expo/packages/expo-modules-core/build/uuid/lib/
H A Dv35.js5 uuid.replace(/[a-fA-F0-9]{2}/g, (hex) => {
6 bytes.push(parseInt(hex, 16));
/expo/ios/versioned/sdk49/EXUpdates/EXUpdates/AppLoader/
H A DStringStringDictionarySerializer.swift12 static func fromHex(_ hex: String) -> Character { in fromHex()
14 return Character(Unicode.Scalar(Int(hex, radix: 16)!)!) in fromHex()
/expo/packages/expo-updates/ios/EXUpdates/AppLoader/
H A DStringStringDictionarySerializer.swift12 static func fromHex(_ hex: String) -> Character { in fromHex()
14 return Character(Unicode.Scalar(Int(hex, radix: 16)!)!) in fromHex()
/expo/ios/versioned-react-native/ABI49_0_0/ReactNative/ReactCommon/react/renderer/core/
H A DABI49_0_0TraitCast.h32 << "Expected identifier: " << std::hex in traitCastRef()
34 << "Actual traits: " << std::hex in traitCastRef()
/expo/packages/@expo/fingerprint/build/
H A DFingerprint.types.d.ts88 hex: string; property

1234