Home
last modified time | relevance | path

Searched refs:mask (Results 1 – 25 of 48) sorted by relevance

12

/vim-8.2.3635/src/xpm/include/
H A Dxpm.h476 #define XpmReadPixmapFile(dpy, d, file, pix, mask, att) \ argument
477 XpmReadFileToPixmap(dpy, d, file, pix, mask, att)
478 #define XpmWritePixmapFile(dpy, file, pix, mask, att) \ argument
479 XpmWriteFileFromPixmap(dpy, file, pix, mask, att)
491 #define XReadPixmapFile(dpy, d, file, pix, mask, att) \ argument
492 XpmReadFileToPixmap(dpy, d, file, pix, mask, att)
493 #define XWritePixmapFile(dpy, file, pix, mask, att) \ argument
494 XpmWriteFileFromPixmap(dpy, file, pix, mask, att)
496 XpmCreatePixmapFromData(dpy, d, data, pix, mask, att)
497 #define XCreateDataFromPixmap(dpy, data, pix, mask, att) \ argument
[all …]
/vim-8.2.3635/src/
H A Dgui_xmebw.c329 Pixmap mask; in set_pixmap() local
383 status = XpmReadFileToPixmap(dpy, root, fname, &pix, &mask, &attr); in set_pixmap()
390 &mask, &attr); in set_pixmap()
406 XSetClipMask(dpy, gc, mask); in set_pixmap()
434 XSetClipMask(dpy, gc, mask); in set_pixmap()
447 XSetClipMask(dpy, gc, mask); in set_pixmap()
452 XFreePixmap(dpy, mask); in set_pixmap()
470 XSetClipMask(dpy, gc, mask); in set_pixmap()
493 XFreePixmap(dpy, mask); in set_pixmap()
1115 unsigned int mask; in SetValues() local
[all …]
H A Dregexp_bt.c2753 int mask; in regrepeat() local
2940 mask = RI_WHITE; in regrepeat()
2948 mask = RI_DIGIT; in regrepeat()
2952 testval = mask = RI_HEX; in regrepeat()
2956 mask = RI_HEX; in regrepeat()
2964 mask = RI_OCTAL; in regrepeat()
2972 mask = RI_WORD; in regrepeat()
2980 mask = RI_HEAD; in regrepeat()
2988 mask = RI_ALPHA; in regrepeat()
2996 mask = RI_LOWER; in regrepeat()
[all …]
H A Dgui_x11.c1255 int x, y, mask; in gui_mch_init() local
1346 mask = XParseGeometry((char *)gui.geom, &x, &y, &w, &h); in gui_mch_init()
1347 if (mask & WidthValue) in gui_mch_init()
1349 if (mask & HeightValue) in gui_mch_init()
1361 if (mask & (XValue|YValue)) in gui_mch_init()
2604 XtInputMask mask, desired; in gui_mch_update() local
2612 while ((mask = XtAppPending(app_context)) && (mask & desired) in gui_mch_update()
3149 unsigned int mask; in gui_mch_getmouse() local
3152 &rootx, &rooty, &winx, &winy, &mask)) { in gui_mch_getmouse()
H A Djob.c1113 free_unused_jobs_contents(int copyID, int mask) in free_unused_jobs_contents() argument
1119 if ((job->jv_copyID & mask) != (copyID & mask) in free_unused_jobs_contents()
1131 free_unused_jobs(int copyID, int mask) in free_unused_jobs() argument
1139 if ((job->jv_copyID & mask) != (copyID & mask) in free_unused_jobs()
H A Dgui_athena.c503 Pixmap mask; in createXpmImages() local
524 &map, &mask, &attrs); in createXpmImages()
527 &map, &mask, &attrs); in createXpmImages()
538 XSetClipMask(gui.dpy, mask_gc, mask); in createXpmImages()
1780 unsigned int mask; in gui_mch_show_popupmenu() local
1787 &rootx, &rooty, &winx, &winy, &mask)) in gui_mch_show_popupmenu()
H A Dstrings.c1592 char_u *mask = NULL; in f_trim() local
1621 mask = tv_get_string_buf_chk(&argvars[1], buf2); in f_trim()
1645 if (mask == NULL) in f_trim()
1652 for (p = mask; *p != NUL; MB_PTR_ADV(p)) in f_trim()
1671 if (mask == NULL) in f_trim()
1678 for (p = mask; *p != NUL; MB_PTR_ADV(p)) in f_trim()
H A Dgui_motif.c313 XtGCMask mask; in label_expose() local
322 mask = GCForeground | GCBackground | GCGraphicsExposures; in label_expose()
328 mask |= GCFont; in label_expose()
335 mask |= GCFillStyle | GCTile; in label_expose()
351 lw->label.insensitive_GC = XtAllocateGC((Widget)lw, 0, mask, in label_expose()
367 lw->label.insensitive_GC = XtAllocateGC((Widget) lw, 0, mask, in label_expose()
657 unsigned int mask; in manage_centered() local
671 &x, &y, &win_x, &win_y, &mask); in manage_centered()
1170 Pixmap mask; in check_xpm() local
1178 (char *)path, &map, &mask, &attrs); in check_xpm()
H A Dgui_at_sb.c472 XtGCMask mask; in CreateGC() local
493 mask = GCForeground | GCBackground; in CreateGC()
498 mask |= GCFillStyle; in CreateGC()
502 sbw->scrollbar.gc = XtGetGC (w, mask, &gcValues); in CreateGC()
H A Devalfunc.c7967 int mask; in get_search_arg() local
7981 default: mask = 0; in get_search_arg()
7985 case 'c': mask = SP_START; break; in get_search_arg()
7986 case 'e': mask = SP_END; break; in get_search_arg()
7988 case 'n': mask = SP_NOMOVE; break; in get_search_arg()
7994 if (mask == 0) in get_search_arg()
8000 *flagsp |= mask; in get_search_arg()
8859 int mask; in f_setfperm() local
8881 mask = 1; in f_setfperm()
8885 mode |= mask; in f_setfperm()
[all …]
H A Dgui.c1777 gui_start_highlight(int mask) in gui_start_highlight() argument
1779 if (mask > HL_ALL) // highlight code in gui_start_highlight()
1780 gui.highlight_mask = mask; in gui_start_highlight()
1782 gui.highlight_mask |= mask; in gui_start_highlight()
1786 gui_stop_highlight(int mask) in gui_stop_highlight() argument
1788 if (mask > HL_ALL) // highlight code in gui_stop_highlight()
1791 gui.highlight_mask &= ~mask; in gui_stop_highlight()
H A Dpopupwin.c3586 short *mask; in may_update_popup_mask() local
3629 mask = popup_mask; in may_update_popup_mask()
3631 mask = popup_mask_next; in may_update_popup_mask()
3632 vim_memset(mask, 0, screen_Rows * screen_Columns * sizeof(short)); in may_update_popup_mask()
3665 mask[line * screen_Columns + col] = POPUPMENU_ZINDEX; in may_update_popup_mask()
3668 mask[line * screen_Columns + col] = wp->w_zindex; in may_update_popup_mask()
3673 if (mask == popup_mask_next) in may_update_popup_mask()
H A Dgui_gtk_x11.c4204 int mask; in gui_mch_open() local
4209 mask = XParseGeometry((char *)gui.geom, &x, &y, &w, &h); in gui_mch_open()
4211 if (mask & WidthValue) in gui_mch_open()
4213 if (mask & HeightValue) in gui_mch_open()
4227 if (mask & (XValue | YValue)) in gui_mch_open()
4238 if (mask & XNegative) in gui_mch_open()
4240 if (mask & YNegative) in gui_mch_open()
4250 if (gtk_socket_id != 0 && (mask & WidthValue || mask & HeightValue)) in gui_mch_open()
H A Dgui_photon.c2682 long flags, mask, fields; in gui_mch_menu_grey() local
2692 mask = Pt_SELECTABLE | Pt_HIGHLIGHTED; in gui_mch_menu_grey()
2697 mask = Pt_BLOCKED | Pt_GHOST; in gui_mch_menu_grey()
2704 mask); in gui_mch_menu_grey()
/vim-8.2.3635/src/libvterm/src/
H A Dstate.c193 unsigned char mask = 1 << (col & 7); in set_col_tabstop() local
194 state->tabstops[col >> 3] |= mask; in set_col_tabstop()
199 unsigned char mask = 1 << (col & 7); in clear_col_tabstop() local
200 state->tabstops[col >> 3] &= ~mask; in clear_col_tabstop()
205 unsigned char mask = 1 << (col & 7); in is_col_tabstop() local
206 return state->tabstops[col >> 3] & mask; in is_col_tabstop()
1782 unsigned char mask = 1 << (col & 7); in on_resize() local
1784 newtabstops[col >> 3] |= mask; in on_resize()
1786 newtabstops[col >> 3] &= ~mask; in on_resize()
1792 newtabstops[col >> 3] |= mask; in on_resize()
[all …]
/vim-8.2.3635/src/proto/
H A Djob.pro11 int free_unused_jobs_contents(int copyID, int mask);
12 void free_unused_jobs(int copyID, int mask);
H A Dchannel.pro9 int free_unused_channels_contents(int copyID, int mask);
10 void free_unused_channels(int copyID, int mask);
H A Dgui.pro20 void gui_stop_highlight(int mask);
/vim-8.2.3635/runtime/syntax/
H A Dsqr.vim110 syn keyword sqrParam date-edit-mask date-seperator
124 syn keyword sqrParam init-string input-date-edit-mask insert
130 syn keyword sqrParam maxlen money money-edit-mask money-sign
134 syn keyword sqrParam nowait number number-edit-mask on-break
H A Dtaskdata.vim15 syn keyword taskdataKey description due end entry imask mask parent
H A Dexports.vim24 syn keyword exportsKeyOptSet contained mapall maproot mask network
H A Dsetserial.vim82 syn match setserialMask contained '\<mask\d\+\>'
H A Dfstab.vim75 syn match fsOptionsKeywords contained /\<\%([ug]id\|o\%(wn\|th\)mask\)=/ nextgroup=fsOptionsNumber
127 syn match fsOptionsKeywords contained /\<\%([dfu]mask\|codepage\)=/ nextgroup=fsOptionsNumberOctal
/vim-8.2.3635/src/testdir/
H A Dtest_listlbr_utf8.vim85 call setline(1, "\t*mask = nil;")
89 \ " *mask = nil; ",
/vim-8.2.3635/runtime/doc/
H A Dpopup.txt24 Popup mask |popup-mask|
542 mask
736 mask A list of lists with coordinates, defining parts of
737 the popup that are transparent. See |popup-mask|.
971 POPUP MASK *popup-mask*
974 transparent. This is defined by a "mask" which is a list of lists, where each

12