Lines Matching refs:startPos
58 ['rows' => $rows, 'startPos' => $startPos, 'endPos' => $endPos] = $this->groupRows();
69 $this->emitFallback($rows, $startPos);
79 $out = $this->buildOutput($headerRow, $bodyRows, $alignments, $cols, $startPos, $endPos);
96 $startPos = 0;
102 $startPos = $call[1][0] ?? $call[2];
123 return ['rows' => $rows, 'startPos' => $startPos, 'endPos' => $endPos];
319 * @param int $startPos source position of the table's start
329 int $startPos, argument
333 $out[] = ['table_open', [$cols, 1 + count($bodyRows), $startPos], $startPos];
334 $out[] = ['tablethead_open', [], $startPos];
335 $out[] = ['tablerow_open', [], $startPos];
337 $out[] = ['tableheader_open', [1, $alignments[$i], 1], $startPos];
339 $out[] = ['tableheader_close', [], $startPos];
341 $out[] = ['tablerow_close', [], $startPos];
342 $out[] = ['tablethead_close', [], $startPos];
345 $out[] = ['tabletbody_open', [], $startPos];
347 $out[] = ['tablerow_open', [], $startPos];
349 $out[] = ['tablecell_open', [1, $alignments[$i], 1], $startPos];
351 $out[] = ['tablecell_close', [], $startPos];
353 $out[] = ['tablerow_close', [], $startPos];
355 $out[] = ['tabletbody_close', [], $startPos];