/third_party/node/deps/npm/node_modules/@colors/colors/examples/ |
H A D | normal-usage.js | 5 console.log('Underline that text'.yellow.underline); 16 console.log('Chains are also cool.'.bold.italic.underline.red); 19 console.log('So '.green + 'are'.underline + ' ' + 'inverse'.inverse 40 console.log('Generic logging theme as JSON'.green.bold.underline); 64 console.log('Generic logging theme as file'.green.bold.underline);
|
H A D | safe-string.js | 5 console.log(colors.yellow.underline('Underline that text')); 16 console.log(colors.bold.italic.underline.red('Chains are also cool.')); 19 console.log(colors.green('So ') + colors.underline('are') + ' ' 39 // console.log('Generic logging theme as JSON'.green.bold.underline); 64 // console.log('Generic logging theme as file'.green.bold.underline);
|
/third_party/skia/gm/ |
H A D | texteffects.cpp | 32 SkPath underline; in create_underline() local 38 underline.moveTo(last, uPos); in create_underline() 39 underline.lineTo(start, uPos); in create_underline() 44 underline.moveTo(end, uPos); in create_underline() 45 underline.lineTo(finalPos, uPos); in create_underline() 47 return underline; in create_underline() 137 SkPath underline = create_underline(intercepts, start, end, uPos, uWidth, textSize); in DEF_SIMPLE_GM() local 138 underline.offset(blobOffset.x(), blobOffset.y()); in DEF_SIMPLE_GM() 140 canvas->drawPath(underline, paint); in DEF_SIMPLE_GM()
|
H A D | fontmgr.cpp | 271 SkRect underline{ min.fLeft, fm.fUnderlinePosition, in show_bounds() 273 canvas->drawRect(underline, metricsPaint); in show_bounds()
|
/third_party/rust/crates/codespan/codespan-reporting/src/term/ |
H A D | renderer.rs | 552 let mut underline = None; in render_snippet_source() variables 559 self.label_multi_left(severity, *ls, underline.map(|(s, _)| s))?; in render_snippet_source() 562 self.label_multi_left(severity, *ls, underline.map(|(s, _)| s))?; in render_snippet_source() 565 self.label_multi_left(severity, *ls, underline.map(|(s, _)| s))?; in render_snippet_source() 568 underline = Some((*ls, VerticalBound::Top)); in render_snippet_source() 572 underline = Some((*ls, VerticalBound::Bottom)); in render_snippet_source() 576 self.inner_gutter_column(severity, underline)?; in render_snippet_source() 581 Some((_, _)) | None => self.inner_gutter_column(severity, underline)?, in render_snippet_source() 785 underline: Option<LabelStyle>, in label_multi_left() 787 match underline { in label_multi_left() [all...] |
/third_party/ffmpeg/libavcodec/ |
H A D | ass.c | 33 int bold, int italic, int underline, in ff_ass_subtitle_header_full() 74 -bold, -italic, -underline, border_style, alignment); in ff_ass_subtitle_header_full() 85 int bold, int italic, int underline, in ff_ass_subtitle_header() 92 bold, italic, underline, in ff_ass_subtitle_header() 28 ff_ass_subtitle_header_full(AVCodecContext *avctx, int play_res_x, int play_res_y, const char *font, int font_size, int primary_color, int secondary_color, int outline_color, int back_color, int bold, int italic, int underline, int border_style, int alignment) ff_ass_subtitle_header_full() argument 82 ff_ass_subtitle_header(AVCodecContext *avctx, const char *font, int font_size, int color, int back_color, int bold, int italic, int underline, int border_style, int alignment) ff_ass_subtitle_header() argument
|
H A D | ass.h | 65 * @param underline 1 for underline text, 0 for normal text 76 int bold, int italic, int underline, 88 * @param underline 1 for underline text, 0 for normal text 96 int bold, int italic, int underline,
|
H A D | movtextdec.c | 67 uint8_t underline; member 140 style->underline = !!(style->flags & STYLE_FLAG_UNDERLINE); in mov_text_parse_style_record() 267 return CMP(bold) && CMP(italic) && CMP(underline) && CMP(color) && in styles_equivalent() 382 if (style->underline ^ default_style->underline) in text_to_ass() 383 av_bprintf(buf, "{\\u%d}", style->underline); in text_to_ass() 469 default_style->bold, default_style->italic, default_style->underline, in mov_text_init()
|
H A D | microdvddec.c | 67 // italic, bold, underline, strike-through 330 int underline = ASS_DEFAULT_UNDERLINE; in microdvd_init() local 347 case 'u': underline = 1; break; in microdvd_init() 367 underline, ASS_DEFAULT_BORDERSTYLE, in microdvd_init()
|
H A D | ass_split.h | 49 int underline; /**< whether text is underlined (1) or not (0) */ member
|
/third_party/python/Lib/turtledemo/ |
H A D | __main__.py | 157 label='Examples', underline=0) 159 label='Fontsize', underline=0) 161 label='Help', underline=0) 300 menu.add_command(label=entry, underline=0, 315 menu.add_command(label=str(size), underline=0,
|
/third_party/skia/modules/canvaskit/npm_build/ |
H A D | textapi_utils.js | 208 underline: null, 238 if (src.underline) { 239 this.underline = this._check_toggle(src.underline, this.underline); 510 if (s.underline) {
|
/third_party/node/deps/npm/node_modules/text-table/test/ |
H A D | ansi-colors.js | 17 color.bold('Bold'), color.underline('Underline'),
|
/third_party/vk-gl-cts/external/vulkan-docs/src/scripts/spec_tools/ |
H A D | console_printer.py | 41 underline = ['-' * len(header) for header in headers] 42 fullTable = [headers, underline] + collection 72 """Print a (potential subset of a) line, with highlighting/underline and optional replacement. 76 Will highlight (underline) line[highlightStart:highlightEnd], where the default
|
/third_party/node/deps/npm/node_modules/@colors/colors/lib/ |
H A D | styles.js | 35 underline: [4, 24],
|
/third_party/skia/third_party/externals/freetype/include/freetype/ |
H A D | ftwinfnt.h | 196 FT_Byte underline; member
|
/third_party/python/Lib/idlelib/ |
H A D | editor.py | 498 underline, label = prepstr(label) 502 mbar.add_cascade(label=label, menu=menu, underline=underline) 511 underline=0, 1036 underline=0) 1238 underline, label = prepstr(label) 1244 menu.add_checkbutton(label=label, underline=underline, 1248 menu.add_command(label=label, underline=underline, [all...] |
H A D | macosx.py | 180 menubar.add_cascade(label='Window', menu=menu, underline=0)
|
/third_party/node/deps/npm/node_modules/console-control-strings/ |
H A D | index.js | 69 underline: 4,
|
/third_party/rust/crates/codespan/codespan-reporting/tests/support/ |
H A D | color_buffer.rs | 18 /// - Underline as `underline` 112 if spec.underline() { in set_color() 114 write!(self, "underline")?; in set_color()
|
/third_party/protobuf/python/docs/ |
H A D | generate_docs.py | 122 {underline} 161 contents = AUTOMODULE_TEMPLATE.format(module=module, underline="=" * len(module),)
|
/third_party/rust/crates/termcolor/src/ |
H A D | lib.rs | 1379 if spec.underline { in set_color() 1652 underline: bool, 1666 underline: false, in default() 1748 /// Get whether this is underline or not. 1750 /// Note that the underline setting has no effect in a Windows console. 1751 pub fn underline(&self) -> bool { in underline() functions 1752 self.underline in underline() 1757 /// Note that the underline setting has no effect in a Windows console. 1759 self.underline = yes; in set_underline() 1835 && !self.underline in is_none() [all...] |
/third_party/rust/crates/syn/examples/dump-syntax/src/ |
H A D | main.rs | 124 {indent} {pipe} {offset}{underline} {message}\n\ in render_location() 137 underline = "^" in render_location()
|
/third_party/node/deps/npm/node_modules/chalk/source/vendor/ansi-styles/ |
H A D | index.js | 16 underline: [4, 24],
|
/third_party/node/deps/npm/node_modules/ansi-styles/ |
H A D | index.js | 16 underline: [4, 24],
|