Home
last modified time | relevance | path

Searched refs:tableRows (Results 1 – 4 of 4) sorted by path

/plugin/authgooglesheets/vendor/google/apiclient-services/src/Docs/
H A DTable.php103 public function setTableRows($tableRows) argument
105 $this->tableRows = $tableRows;
112 return $this->tableRows;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Slides/
H A DTable.php99 public function setTableRows($tableRows) argument
101 $this->tableRows = $tableRows;
108 return $this->tableRows;
/plugin/fetchmedia/script/
H A Dmain.js90 const tableRows = links.map(([page, mediaLinks]) => {
102 const table = `${tableHead + tableRows.join('')}</table>`;
/plugin/prosemirror/parser/
H A DTableNode.php9 protected $tableRows = []; variable in dokuwiki\\plugin\\prosemirror\\parser\\TableNode
16 $this->tableRows[] = new TableRowNode($row, $this);
30 $this->numCols = $this->tableRows[0]->countCols();
45 foreach ($this->tableRows as $row) {