Lines Matching refs:NEXT
69 #define NEXT(field) me->next.field
318 THIS(font) = NEXT(font);
319 THIS(cset) = NEXT(cset);
320 THIS(fg) = NEXT(fg);
321 THIS(bg) = NEXT(bg);
324 xgcv.font = NEXT(font)->fs->fid;
383 xgcv.foreground = NEXT(fg);
384 xgcv.background = NEXT(bg);
418 if (!SameFont(THIS(font), NEXT(font)))
419 TRACE2(("...chgCache new font=%s\n", traceFont(NEXT(font))));
420 if (!SameCSet(THIS(cset), NEXT(cset)))
421 TRACE2(("...chgCache new cset=%s\n", traceCSet(NEXT(cset))));
422 if (!SameColor(THIS(fg), NEXT(fg)))
423 TRACE2(("...chgCache new fg=%s\n", tracePixel(xw, NEXT(fg))));
424 if (!SameColor(THIS(bg), NEXT(bg)))
425 TRACE2(("...chgCache new bg=%s\n", tracePixel(xw, NEXT(bg))));
429 THIS(font) = NEXT(font);
430 THIS(cset) = NEXT(cset);
432 THIS(fg) = NEXT(fg);
433 THIS(bg) = NEXT(bg);
456 NEXT(fg) = fg;
460 tracePixel(xw, NEXT(fg))));
470 NEXT(bg) = bg;
474 tracePixel(xw, NEXT(bg))));
485 NEXT(cset) = cset;
514 TRACE2(("...next font was %s\n", traceFont(NEXT(font))));
515 NEXT(font) = font;
555 if (SameFont(NEXT(font), font)) {
559 NEXT(font) = NULL;
560 NEXT(cset) = 0;
586 NEXT(cset) = 0; /* OPT_DEC_CHRSET */
588 NEXT(font) = THIS(font);
590 NEXT(fg) = THIS(fg);
592 NEXT(bg) = THIS(bg);
594 if (NEXT(font) == NULL) {
599 tracePixel(xw, NEXT(fg)),
600 tracePixel(xw, NEXT(bg)),
601 traceFont(NEXT(font)),
602 traceCSet(NEXT(cset))));
607 && SameFont(LIST(j).font, NEXT(font))
608 && SameCSet(LIST(j).cset, NEXT(cset))
609 && SameColor(LIST(j).fg, NEXT(fg))
610 && SameColor(LIST(j).bg, NEXT(bg))) {