Lines Matching refs:aHexTab
622 static sal_Char aHexTab[] = "0123456789abcdef"; variable
631 rBuffer.append( sal_Unicode( aHexTab[ nCol >> 4 ] ) ); in convertColor()
632 rBuffer.append( sal_Unicode( aHexTab[ nCol & 0xf ] ) ); in convertColor()
635 rBuffer.append( sal_Unicode( aHexTab[ nCol >> 4 ] ) ); in convertColor()
636 rBuffer.append( sal_Unicode( aHexTab[ nCol & 0xf ] ) ); in convertColor()
639 rBuffer.append( sal_Unicode( aHexTab[ nCol >> 4 ] ) ); in convertColor()
640 rBuffer.append( sal_Unicode( aHexTab[ nCol & 0xf ] ) ); in convertColor()
1946 aHexTab[ (c >> 12) & 0x0f ] ) ); in encodeStyleName()
1949 aHexTab[ (c >> 8) & 0x0f ] ) ); in encodeStyleName()
1952 aHexTab[ (c >> 4) & 0x0f ] ) ); in encodeStyleName()
1954 aHexTab[ c & 0x0f ] ) ); in encodeStyleName()