Lines Matching refs:heights
425 function table_fit_rowspans($heights) { argument
433 $row_heights = array_slice($heights, $span->row, $span->size);
484 $heights = array();
491 $heights[] = max($minheight, $this->content[$i]->row_height());
497 $cheights[] = $hc->apply($heights[$i], $this->content[$i], null);
506 for ($i=0; $i<count($heights); $i++) {
514 for ($i=0; $i<count($heights); $i++) {
533 for ($i=0; $i<count($heights); $i++) {
552 for ($i=0; $i<count($heights); $i++) {
559 for ($i=0; $i<count($heights); $i++) {
560 $heights[$i] = max($heights[$i], $cheights[$i]);
563 return $heights;
566 function table_resize_rows(&$heights) { argument
569 $size = count($heights);
571 $this->content[$i]->table_resize_row($heights[$i], $row_top);
572 $row_top -= $heights[$i];
576 $this->put_height(array_sum($heights));
1271 $heights = $this->_row_heights(0.1);
1279 $cell_row_heights = array_slice($heights, $rowspan->row, $rowspan->size);
1302 array_splice($heights,
1309 $table_height = max($this->get_height(), array_sum($heights));
1315 $heights = expand_to_with_flags($table_height,
1316 $heights,
1320 if (array_sum($heights) < $table_height - EPSILON) {
1325 $heights = expand_to_with_flags($table_height,
1326 $heights,
1331 $this->table_resize_rows($heights);
1334 $this->table_fit_rowspans($heights);
1337 $total_height = array_sum($heights);