Lines Matching defs:style_flag
56 uint8_t style_flag;
121 bytestream_put_byte(&p, style->style_flag);
232 s->d.style_flag = DEFAULT_STYLE_FLAG;
237 s->d.style_flag = (!!style->bold * STYLE_FLAG_BOLD) |
252 bytestream_put_byte(&p, s->d.style_flag);
349 if (s->style_attributes_temp.style_flag != s->d.style_flag ||
380 uint8_t style_flag = 0;
384 style_flag = STYLE_FLAG_BOLD;
387 style_flag = STYLE_FLAG_ITALIC;
390 style_flag = STYLE_FLAG_UNDERLINE;
393 return style_flag;
398 if (!((s->style_attributes_temp.style_flag & style_flags) ^ style_flags)) {
403 s->style_attributes_temp.style_flag |= style_flags;
409 uint8_t style_flag = mov_text_style_to_flag(style);
411 if (!!(s->style_attributes_temp.style_flag & style_flag) != close) {
417 s->style_attributes_temp.style_flag |= style_flag;
419 s->style_attributes_temp.style_flag &= ~style_flag;