Home
last modified time | relevance | path

Searched refs:columnWidths (Results 1 – 5 of 5) sorted by relevance

/third_party/node/lib/internal/
Dcli_table.js38 const renderRow = (row, columnWidths) => { argument
43 const needed = (columnWidths[i] - len) / 2;
57 const columnWidths = ArrayPrototypeMap(head, (h) => getStringWidth(h)); constant
68 const width = columnWidths[i] || 0;
70 columnWidths[i] = MathMax(width, counted);
74 const divider = ArrayPrototypeMap(columnWidths, (i) =>
80 renderRow(head, columnWidths) + '\n' +
86 result += `${renderRow(row, columnWidths)}\n`;
/third_party/typescript/src/debug/
Ddbg.ts222 const columnWidths = computeColumnWidths(height); constant
396 const columnCount = columnWidths.length;
399 const grid: (FlowGraphNode | undefined)[][] = columnWidths.map(() => Array(laneCount));
400 const connectors: Connection[][] = columnWidths.map(() => fill(Array(laneCount), 0));
448 writeLane(lane, repeat(fill, columnWidths[column] + 1));
455 writeLane(lane, repeat(fill, columnWidths[column] - node.text.length));
/third_party/node/deps/npm/node_modules/@isaacs/cliui/build/lib/
Dindex.js167 const widths = this.columnWidths(row);
216 columnWidths(row) { method in UI
/third_party/node/deps/npm/node_modules/@isaacs/cliui/build/
Dindex.d.cts40 private columnWidths;
Dindex.cjs168 const widths = this.columnWidths(row);
217 columnWidths(row) {