Lines Matching refs:cell
62 fn($cell) => $this->parseAlign($this->cellText($cell)),
229 * @param array $cell the cell as a list of handler calls
234 protected function trimCell(array $cell): array argument
237 $cdataIdx = array_keys(array_filter($cell, fn($c) => $c[0] === 'cdata'));
240 $cell[$cdataIdx[0]][1][0] = ltrim($cell[$cdataIdx[0]][1][0]);
241 $cell[end($cdataIdx)][1][0] = rtrim($cell[end($cdataIdx)][1][0]);
245 $cell,
269 foreach ($row as &$cell) {
270 foreach ($cell as &$call) {
294 foreach ($row as $cell) {
295 $cellTexts[] = $this->cellText($cell);
336 foreach ($headerRow as $i => $cell) {
338 foreach ($cell as $c) $out[] = $c;
348 foreach ($row as $i => $cell) {
350 foreach ($cell as $c) $out[] = $c;