Lines Matching refs:aTestColor
59 Color aTestColor; in colorTest() local
61 aTestColor = Color(0xDEADBEEF); in colorTest()
63 aTestColor.toInt32() == 0xDEADBEEF ); in colorTest()
65 aTestColor = Color( 0x10, 0x20, 0xFF ); in colorTest()
67 aTestColor.toInt32() == 0x001020FF ); in colorTest()
69 aTestColor.setRed( 0x0F ); in colorTest()
71 aTestColor.toInt32() == 0x00F20FF ); in colorTest()
73 aTestColor.setGreen( 0x0F ); in colorTest()
75 aTestColor.toInt32() == 0x00F0FFF ); in colorTest()
77 aTestColor.setBlue( 0x10 ); in colorTest()
79 aTestColor.toInt32() == 0x00F0F10 ); in colorTest()
81 aTestColor.setGrey( 0x13 ); in colorTest()
83 aTestColor.toInt32() == 0x00131313 ); in colorTest()
85 aTestColor = Color( 0x10, 0x20, 0xFF ); in colorTest()
87 aTestColor.getRed() == 0x10 ); in colorTest()
89 aTestColor.getGreen() == 0x20 ); in colorTest()
91 aTestColor.getBlue() == 0xFF ); in colorTest()