Home
last modified time | relevance | path

Searched refs:maxLineWidth (Results 1 – 9 of 9) sorted by relevance

/third_party/node/deps/npm/node_modules/columnify/
Dindex.js35 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))
Dcolumnify.js41 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);
DReadme.md190 You can set a hard maximum line width using the `maxLineWidth` option.
/third_party/mesa3d/src/gallium/drivers/svga/
Dsvga_screen.h54 float maxLineWidth, maxLineWidthAA; member
Dsvga_screen.c169 return svgascreen->maxLineWidth; in svga_get_paramf()
1302 svgascreen->maxLineWidth = in svga_screen_create()
1314 svgascreen->maxLineWidth, svgascreen->maxLineWidthAA); in svga_screen_create()
Dsvga_swtnl_draw.c197 MAX2(screen->maxLineWidth, in svga_init_swtnl()
Dsvga_pipe_rasterizer.c250 if (templ->line_width <= screen->maxLineWidth) { in svga_create_rasterizer_state()
Dsvga_state_rss.c252 if (screen->maxLineWidth > 1.0F) in emit_rss_vgpu9()
/third_party/vk-gl-cts/modules/gles31/functional/
Des31fShaderHelperInvocationTests.cpp168 const float maxLineWidth = 32.0f; in drawRandomPrimitives() local
191 const float lineWidth = de::min(rnd->getFloat(minLineWidth, maxLineWidth), range.y()); in drawRandomPrimitives()