Searched refs:TableCell (Results 1 – 13 of 13) sorted by relevance
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Bigquery/ |
H A D | TableRow.php | 23 protected $fType = TableCell::class; 27 * @param TableCell[] 34 * @return TableCell[]
|
H A D | TableCell.php | 20 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 D | TableParser.php | 61 $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 D | TableExtension.php | 31 ->addBlockRenderer(TableCell::class, new TableCellRenderer())
|
H A D | TableRow.php | 26 return $block instanceof TableCell;
|
H A D | TableCellRenderer.php | 27 if (!$block instanceof TableCell) {
|
H A D | TableCell.php | 24 final class TableCell extends AbstractStringContainerBlock implements InlineContainerInterface class
|
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Slides/ |
H A D | TableRow.php | 25 protected $tableCellsType = TableCell::class; 45 * @param TableCell[] 52 * @return TableCell[]
|
H A D | TableCell.php | 20 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 D | TableRow.php | 41 protected $tableCellsType = TableCell::class; 117 * @param TableCell[] 124 * @return TableCell[]
|
H A D | TableCell.php | 20 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 D | TableCellRenderer.php | 24 use League\CommonMark\Extension\Table\TableCell; alias 30 if (!$block instanceof TableCell) {
|
/plugin/commonmark/src/Dokuwiki/Plugin/Commonmark/Extension/ |
H A D | TableExtension.php | 25 use League\CommonMark\Extension\Table\TableCell; alias 43 ->addBlockRenderer(TableCell::class, new TableCellRenderer())
|