OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:setpenattr_bool
(Results
1 - 1
of
1
) sorted by null
/external/libvterm/src/
pen.c
109
static void
setpenattr_bool
(VTermState *state, VTermAttr attr, int boolean)
function
148
state->pen.bold = 0;
setpenattr_bool
(state, VTERM_ATTR_BOLD, 0);
150
state->pen.italic = 0;
setpenattr_bool
(state, VTERM_ATTR_ITALIC, 0);
151
state->pen.blink = 0;
setpenattr_bool
(state, VTERM_ATTR_BLINK, 0);
152
state->pen.reverse = 0;
setpenattr_bool
(state, VTERM_ATTR_REVERSE, 0);
153
state->pen.strike = 0;
setpenattr_bool
(state, VTERM_ATTR_STRIKE, 0);
170
setpenattr_bool
(state, VTERM_ATTR_BOLD, state->pen.bold);
172
setpenattr_bool
(state, VTERM_ATTR_ITALIC, state->pen.italic);
173
setpenattr_bool
(state, VTERM_ATTR_BLINK, state->pen.blink);
174
setpenattr_bool
(state, VTERM_ATTR_REVERSE, state->pen.reverse)
[
all
...]
Completed in 84 milliseconds