Searched refs:maxLineWidth (Results 1 - 8 of 8) sorted by relevance
/third_party/node/deps/npm/node_modules/columnify/ |
H A D | columnify.js | 41 var maxLineWidth = options.maxLineWidth || Infinity; 42 if (maxLineWidth === 'auto') maxLineWidth = process.stdout.columns || Infinity; 43 delete options.maxLineWidth; // this is a line control option, don't pass it to column 202 return truncateString(line, maxLineWidth);
|
H A D | index.js | 35 let maxLineWidth = options.maxLineWidth || Infinity 36 if (maxLineWidth === 'auto') maxLineWidth = process.stdout.columns || Infinity 37 delete options.maxLineWidth // this is a line control option, don't pass it to column 193 .map(line => truncateString(line, maxLineWidth))
|
/third_party/mesa3d/src/gallium/drivers/svga/ |
H A D | svga_screen.h | 54 float maxLineWidth, maxLineWidthAA; member
|
H A D | svga_screen.c | 169 return svgascreen->maxLineWidth; in svga_get_paramf() 1302 svgascreen->maxLineWidth = in svga_screen_create() 1312 "haveLineSmooth %u maxLineWidth %.2f maxLineWidthAA %.2f\n", in svga_screen_create() 1314 svgascreen->maxLineWidth, svgascreen->maxLineWidthAA); in svga_screen_create()
|
H A D | svga_swtnl_draw.c | 197 MAX2(screen->maxLineWidth, in svga_init_swtnl()
|
H A D | svga_pipe_rasterizer.c | 250 if (templ->line_width <= screen->maxLineWidth) { in svga_create_rasterizer_state()
|
H A D | svga_state_rss.c | 252 if (screen->maxLineWidth > 1.0F) in emit_rss_vgpu9()
|
/third_party/vk-gl-cts/modules/gles31/functional/ |
H A D | es31fShaderHelperInvocationTests.cpp | 168 const float maxLineWidth = 32.0f; in drawRandomPrimitives() local 191 const float lineWidth = de::min(rnd->getFloat(minLineWidth, maxLineWidth), range.y()); in drawRandomPrimitives()
|
Completed in 6 milliseconds