/external/qemu/ |
console.c | 70 uint8_t bgcol:4; member in struct:TextAttributes 468 printf(" fg: %d bg: %d ch:'%2X' '%c'\n", t_attrib->fgcol, t_attrib->bgcol, ch, ch); 479 unsigned int fgcol, bgcol; local 487 bgcol = color_table[t_attrib->bold][t_attrib->fgcol]; 488 fgcol = color_table[t_attrib->bold][t_attrib->bgcol]; 491 bgcol = color_table[t_attrib->bold][t_attrib->bgcol]; 499 xorcol = bgcol ^ fgcol; 508 ((uint32_t *)d)[0] = (dmask16[(font_data >> 4)] & xorcol) ^ bgcol; 509 ((uint32_t *)d)[1] = (dmask16[(font_data >> 0) & 0xf] & xorcol) ^ bgcol; [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
pydoc.py | 434 def heading(self, title, fgcol, bgcol, extras=''): 443 ''' % (bgcol, fgcol, title, fgcol, extras or ' ') 445 def section(self, title, fgcol, bgcol, contents, width=6, 455 ''' % (bgcol, fgcol, title) 460 <tr><td>%s</td>''' % (bgcol, marginalia, prelude, gap) 463 <tr><td bgcolor="%s">%s</td><td>%s</td>''' % (bgcol, marginalia, gap) [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
pydoc.py | 434 def heading(self, title, fgcol, bgcol, extras=''): 443 ''' % (bgcol, fgcol, title, fgcol, extras or ' ') 445 def section(self, title, fgcol, bgcol, contents, width=6, 455 ''' % (bgcol, fgcol, title) 460 <tr><td>%s</td>''' % (bgcol, marginalia, prelude, gap) 463 <tr><td bgcolor="%s">%s</td><td>%s</td>''' % (bgcol, marginalia, gap) [all...] |