Home
last modified time | relevance | path

Searched refs:TableCell (Results 1 – 13 of 13) sorted by relevance

/plugin/authgooglesheets/vendor/google/apiclient-services/src/Bigquery/
H A DTableRow.php23 protected $fType = TableCell::class;
27 * @param TableCell[]
34 * @return TableCell[]
H A DTableCell.php20 class TableCell extends \Google\Model class
44 class_alias(TableCell::class, 'Google_Service_Bigquery_TableCell');
/plugin/commonmark/vendor/league/commonmark/src/Extension/Table/
H A DTableParser.php61 $head = $this->parseRow(trim((string) $lastLine), $columns, TableCell::TYPE_HEAD);
110 …private function parseRow(string $line, array $columns, string $type = TableCell::TYPE_BODY): ?Tab…
119 if ($type === TableCell::TYPE_HEAD && \count($cells) !== \count($columns)) {
130 $row->appendChild(new TableCell(trim($cell), $type, $columns[$i]));
134 $row->appendChild(new TableCell('', $type, null));
254 return TableCell::ALIGN_CENTER;
256 return TableCell::ALIGN_LEFT;
258 return TableCell::ALIGN_RIGHT;
H A DTableExtension.php31 ->addBlockRenderer(TableCell::class, new TableCellRenderer())
H A DTableRow.php26 return $block instanceof TableCell;
H A DTableCellRenderer.php27 if (!$block instanceof TableCell) {
H A DTableCell.php24 final class TableCell extends AbstractStringContainerBlock implements InlineContainerInterface class
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Slides/
H A DTableRow.php25 protected $tableCellsType = TableCell::class;
45 * @param TableCell[]
52 * @return TableCell[]
H A DTableCell.php20 class TableCell extends \Google\Model class
110 class_alias(TableCell::class, 'Google_Service_Slides_TableCell');
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Docs/
H A DTableRow.php41 protected $tableCellsType = TableCell::class;
117 * @param TableCell[]
124 * @return TableCell[]
H A DTableCell.php20 class TableCell extends \Google\Collection class
147 class_alias(TableCell::class, 'Google_Service_Docs_TableCell');
/plugin/commonmark/src/Dokuwiki/Plugin/Commonmark/Extension/Renderer/Block/
H A DTableCellRenderer.php24 use League\CommonMark\Extension\Table\TableCell; alias
30 if (!$block instanceof TableCell) {
/plugin/commonmark/src/Dokuwiki/Plugin/Commonmark/Extension/
H A DTableExtension.php25 use League\CommonMark\Extension\Table\TableCell; alias
43 ->addBlockRenderer(TableCell::class, new TableCellRenderer())