Home
last modified time | relevance | path

Searched refs:colorInt (Results 1 – 7 of 7) sorted by relevance

/expo/packages/expo-linear-gradient/src/
H A DnormalizeColor.ts23 const colorInt = processColor(color) as number | undefined; constant
24 if (colorInt != null) {
25 const r = (colorInt >> 16) & 255;
26 const g = (colorInt >> 8) & 255;
27 const b = colorInt & 255;
28 const a = ((colorInt >> 24) & 255) / 255;
/expo/packages/expo-linear-gradient/build/
H A DnormalizeColor.js19 const colorInt = processColor(color);
20 if (colorInt != null) {
21 const r = (colorInt >> 16) & 255;
22 const g = (colorInt >> 8) & 255;
23 const b = colorInt & 255;
24 const a = ((colorInt >> 24) & 255) / 255;
H A DnormalizeColor.js.map1colorInt = processColor(color) as number | undefined;\n if (colorInt != null) {\n const r = (c…
/expo/android/versioned-abis/expoview-abi48_0_0/src/main/java/abi48_0_0/expo/modules/systemui/
H A DSystemUIModule.kt19 val colorInt = Color.parseColor(colorToHex(color)) in <lambda>() constant
20 rootView.setBackgroundColor(colorInt) in <lambda>()
/expo/packages/expo-system-ui/android/src/main/java/expo/modules/systemui/
H A DSystemUIModule.kt65 val colorInt = Color.parseColor(colorToHex(color)) in <lambda>() constant
66 rootView?.setBackgroundColor(colorInt) in <lambda>()
/expo/packages/expo-modules-core/android/src/test/java/expo/modules/kotlin/types/
H A DColorTypeConverterTest.kt39 val colorInt = DynamicFromObject(Color.parseColor("#aabbcc").toDouble()) in converts from int() constant
41 val color = convert<Color>(colorInt) in converts from int()
/expo/android/versioned-abis/expoview-abi49_0_0/src/main/java/abi49_0_0/expo/modules/systemui/
H A DSystemUIModule.kt65 val colorInt = Color.parseColor(colorToHex(color)) in <lambda>() constant
66 rootView?.setBackgroundColor(colorInt) in <lambda>()