Searched refs:colorInt (Results 1 – 7 of 7) sorted by relevance
23 const colorInt = processColor(color) as number | undefined; constant24 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;
19 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;
1 …colorInt = processColor(color) as number | undefined;\n if (colorInt != null) {\n const r = (c…
19 val colorInt = Color.parseColor(colorToHex(color)) in <lambda>() constant20 rootView.setBackgroundColor(colorInt) in <lambda>()
65 val colorInt = Color.parseColor(colorToHex(color)) in <lambda>() constant66 rootView?.setBackgroundColor(colorInt) in <lambda>()
39 val colorInt = DynamicFromObject(Color.parseColor("#aabbcc").toDouble()) in converts from int() constant41 val color = convert<Color>(colorInt) in converts from int()