| /expo/packages/@expo/fingerprint/src/hash/ |
| H A D | Hash.ts | 74 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 D | Hash.js | 53 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 D | UIColorExtension.swift | 3 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 D | UIColorExtension.swift | 10 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 D | UIColorExtension.swift | 10 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 D | UIColorExtension.swift | 3 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 D | UIColorExtension.swift | 10 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 D | UIColorExtension.swift | 10 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 D | UIColorExtension.swift | 3 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 D | DigestOptions.swift | 7 var encoding: Encoding = .hex 10 case hex = "hex"
|
| /expo/ios/versioned/sdk47/ExpoCrypto/ |
| H A D | DigestOptions.swift | 7 var encoding: Encoding = .hex 10 case hex = "hex"
|
| /expo/ios/versioned/sdk49/ExpoCrypto/ |
| H A D | DigestOptions.swift | 7 var encoding: Encoding = .hex 10 case hex = "hex"
|
| /expo/packages/expo-crypto/ios/ |
| H A D | DigestOptions.swift | 7 var encoding: Encoding = .hex 10 case hex = "hex"
|
| /expo/ios/versioned-react-native/ABI48_0_0/Expo/ExpoKit/Core/Api/ |
| H A D | ABI48_0_0EXUtil.m | 50 // 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 D | ABI49_0_0EXUtil.m | 50 // 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 D | EXUtil.m | 50 // 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 D | ABI47_0_0EXUtil.m | 50 // 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 D | Crypto.js | 13 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 D | Hash-test.ts | 105 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 D | v35.ts | 6 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 D | v35.js | 5 uuid.replace(/[a-fA-F0-9]{2}/g, (hex) => { 6 bytes.push(parseInt(hex, 16));
|
| /expo/ios/versioned/sdk49/EXUpdates/EXUpdates/AppLoader/ |
| H A D | StringStringDictionarySerializer.swift | 12 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 D | StringStringDictionarySerializer.swift | 12 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 D | ABI49_0_0TraitCast.h | 32 << "Expected identifier: " << std::hex in traitCastRef() 34 << "Actual traits: " << std::hex in traitCastRef()
|
| /expo/packages/@expo/fingerprint/build/ |
| H A D | Fingerprint.types.d.ts | 88 hex: string; property
|