Lines Matching refs:context_values
502 context_values; in XAnnotateImage() local
527 context_values.background=0; in XAnnotateImage()
528 context_values.foreground=(size_t) (~0); in XAnnotateImage()
529 context_values.font=annotate_info->font_info->fid; in XAnnotateImage()
531 (GCBackground | GCFont | GCForeground),&context_values); in XAnnotateImage()
2317 context_values; in XDrawImage() local
2343 context_values.background=(size_t) (~0); in XDrawImage()
2344 context_values.foreground=0; in XDrawImage()
2345 context_values.line_width=(int) draw_info->line_width; in XDrawImage()
2347 (GCBackground | GCForeground | GCLineWidth),&context_values); in XDrawImage()
5783 context_values; in XMakeImage() local
5788 context_values.background=0; in XMakeImage()
5789 context_values.foreground=1; in XMakeImage()
5791 (size_t) (GCBackground | GCForeground),&context_values); in XMakeImage()
9272 context_values; in XSelectWindow() local
9281 context_values.background=XBlackPixel(display,XDefaultScreen(display)); in XSelectWindow()
9282 context_values.foreground=XWhitePixel(display,XDefaultScreen(display)); in XSelectWindow()
9283 context_values.function=GXinvert; in XSelectWindow()
9284 context_values.plane_mask= in XSelectWindow()
9285 context_values.background ^ context_values.foreground; in XSelectWindow()
9286 context_values.subwindow_mode=IncludeInferiors; in XSelectWindow()
9288 GCForeground | GCFunction | GCSubwindowMode),&context_values); in XSelectWindow()