HomeSort by relevance Sort by last modified time
    Searched defs:fg (Results 1 - 25 of 81) sorted by null

1 2 3 4

  /external/libvncserver/libvncclient/
hextile.c 35 CARDBPP bg, fg; local
70 if (!ReadFromRFBServer(client, (char *)&fg, sizeof(fg)))
88 GET_PIXEL8(fg, ptr);
90 GET_PIXEL16(fg, ptr);
92 GET_PIXEL32(fg, ptr);
103 FillRectangle(client, x+sx, y+sy, sw, sh, fg);
118 FillRectangle(client, x+sx, y+sy, sw, sh, fg);
  /external/annotation-tools/asmx/test/perf/org/objectweb/asm/
BCELPerfTest.java 106 FieldGen fg = new FieldGen(ACC_PUBLIC, local
110 cg.addField(fg.getField());
  /external/skia/gm/
dftext.cpp 135 const SkColor fg[] = { variable
149 for (size_t i = 0; i < SK_ARRAY_COUNT(fg); ++i) {
150 paint.setColor(fg[i]);
163 for (size_t i = 0; i < SK_ARRAY_COUNT(fg); ++i) {
164 paint.setColor(fg[i]);
gammatext.cpp 56 const SkColor fg[] = { variable
72 for (size_t i = 0; i < SK_ARRAY_COUNT(fg); ++i) {
73 paint.setColor(fg[i]);
81 x += SkIntToScalar(1024) / SK_ARRAY_COUNT(fg);
hsl.cpp 154 mode( d.fR, d.fG, d.fB,
155 &s.fR, &s.fG, &s.fB);
159 s.fG * 255.0f + 0.5f,
174 SkPaint bg, fg; local
176 fg.setColor(0xff7f3f7f); // Partly-saturated dim magenta, H = 300°, S = ~33%, L = ~37%.
193 fg.setBlendMode(test.mode);
194 canvas->drawRect({20,20,80,80}, fg);
198 ref.setColor(blend(bg.getColor(), fg.getColor(), test.reference, legacy));
  /external/skqp/gm/
dftext.cpp 135 const SkColor fg[] = { variable
149 for (size_t i = 0; i < SK_ARRAY_COUNT(fg); ++i) {
150 paint.setColor(fg[i]);
163 for (size_t i = 0; i < SK_ARRAY_COUNT(fg); ++i) {
164 paint.setColor(fg[i]);
gammatext.cpp 56 const SkColor fg[] = { variable
72 for (size_t i = 0; i < SK_ARRAY_COUNT(fg); ++i) {
73 paint.setColor(fg[i]);
81 x += SkIntToScalar(1024) / SK_ARRAY_COUNT(fg);
hsl.cpp 154 mode( d.fR, d.fG, d.fB,
155 &s.fR, &s.fG, &s.fB);
159 s.fG * 255.0f + 0.5f,
174 SkPaint bg, fg; local
176 fg.setColor(0xff7f3f7f); // Partly-saturated dim magenta, H = 300°, S = ~33%, L = ~37%.
193 fg.setBlendMode(test.mode);
194 canvas->drawRect({20,20,80,80}, fg);
198 ref.setColor(blend(bg.getColor(), fg.getColor(), test.reference, legacy));
  /external/syslinux/com32/elflink/ldlinux/
msg.c 98 uint8_t bg, fg; local
100 fg = convert_to_pcdisplay[(TextAttribute & 0x7)];
107 printf("3%dm\033[", fg);
  /external/syslinux/com32/lib/sys/
ansicon_write.c 116 int fg; local
119 fg = 0x01;
121 fg = 0x08;
123 fg = st->fg;
126 bg = fg & 0x07;
127 fg &= 0x08;
128 fg |= st->bg;
135 fg ^= 0x08;
137 return (bg << 4) | fg;
    [all...]
ansi.h 34 uint8_t fg; member in struct:term_state
  /packages/apps/Gallery2/jni/filters/
fx.c 70 float fg = g*scale_G; local
73 int lut_g = (int)fg;
78 float dg = fg-lut_g;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
LintTooltip.java 50 Color fg = display.getSystemColor(SWT.COLOR_INFO_FOREGROUND); local
65 icon.setForeground(fg);
  /external/harfbuzz_ng/util/
helper-cairo.cc 390 unsigned int fr, fg, fb, fa, br, bg, bb, ba; local
395 fr = fg = fb = 0; fa = 255;
397 sscanf (color + (*color=='#'), "%2x%2x%2x%2x", &fr, &fg, &fb, &fa);
403 fr != fg || fg != fb)
440 cairo_set_source_rgba (cr, fr / 255., fg / 255., fb / 255., fa / 255.);
  /external/selinux/mcstrans/src/
mcscolor.c 18 uint32_t fg; member in struct:secolor
150 static int add_secolor(int idx, char *pattern, uint32_t fg, uint32_t bg) {
162 cptr->color.fg = fg & 0xffffff;
217 uint32_t i, fg, bg; local
226 if (find_mnemonic(f, &fg) == 0 && find_mnemonic(b, &bg) == 0)
229 return add_secolor(i, pat, fg, bg);
233 if (sscanf(f, "#%x", &fg) == 1)
234 return add_mnemonic(pat, fg);
334 items[i]->fg, items[i]->bg)
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/colorpicker/
ColorPickerDialog.java 152 float[] fg = new float[] { local
157 button.setTextColor(Color.HSVToColor(fg));
  /packages/apps/Terminal/src/com/android/terminal/
Terminal.java 51 int fg = Color.CYAN; field in class:Terminal.CellRun
  /external/clang/test/Sema/
ms_class_layout.cpp 47 C fg; member in struct:BaseStruct
221 // CHECK-NEXT: 16 | class C fg
248 // CHECK-NEXT: 16 | class C fg
  /external/selinux/policycoreutils/secon/
secon.c 560 unsigned int fg, bg; local
567 fg = disp__color_to_ansi(color->user_fg);
570 fg = disp__color_to_ansi(color->role_fg);
573 fg = disp__color_to_ansi(color->type_fg);
578 fg = disp__color_to_ansi(color->range_fg);
585 if (snprintf(ansi, ansi_len, "\e[%d;%dm", fg, bg) > ansi_len)
  /external/toybox/kconfig/lxdialog/
dialog.h 98 int fg; /* foreground */ member in struct:dialog_color
  /external/clang/test/Index/
print-type-size.cpp 357 // CHECK64: FieldDecl=fg:[[@LINE+2]]:7 (Definition) [type=Test3::C] [typekind=Record] [sizeof=88] [alignof=8] [offsetof=128]
358 // CHECK32: FieldDecl=fg:[[@LINE+1]]:7 (Definition) [type=Test3::C] [typekind=Record] [sizeof=60] [alignof=4] [offsetof=96]
359 C fg; member in struct:Test3::BaseStruct
  /external/icu/icu4c/source/test/cintltst/
custrtst.c 499 fg[] = { 0x66, 0x67, 0 }, local
519 if (u_strpbrk(testString, fg) != NULL) {
520 log_err("u_strpbrk didn't return NULL for \"fg\".\n");
546 if (u_strpbrk(testSurrogateString, fg) != NULL) {
547 log_err("u_strpbrk didn't return NULL for \"fg\".\n");
585 if (u_strcspn(testString, fg) != u_strlen(testString)) {
586 log_err("u_strcspn didn't return NULL for \"fg\".\n");
609 if (u_strcspn(testSurrogateString, fg) != u_strlen(testSurrogateString)) {
610 log_err("u_strcspn didn't return NULL for \"fg\".\n");
    [all...]
  /external/libvterm/src/
screen.c 16 VTermColor fg, bg; member in struct:__anon26330
420 screen->pen.fg = val->color;
759 cell->fg = intcell->pen.fg;
793 intcell->pen.fg = cell->fg;
881 if((attrs & VTERM_ATTR_FOREGROUND_MASK) && !vterm_color_equal(a->pen.fg, b->pen.fg))
vterm_internal.h 25 VTermColor fg; member in struct:VTermPen
  /external/pdfium/core/fxge/dib/
cfx_dibitmap.cpp 688 int fg = FXSYS_GetGValue(forecolor); local
705 bg + (fg - bg) * gray / 255, bb + (fb - bb) * gray / 255);
729 *scanline++ = bg + (fg - bg) * gray / 255;
    [all...]

Completed in 1041 milliseconds

1 2 3 4