/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/infobar/ |
D | InfoBarLayout.java | 292 final int rowHeight = computeMainRowHeight(rowStart, rowEnd); in layoutMainRow() local 320 int childTop = (rowHeight - child.getMeasuredHeight()) / 2; in layoutMainRow() 347 int childTop = (rowHeight - child.getMeasuredHeight()) / 2; in layoutMainRow() 364 return rowHeight; in layoutMainRow() 653 int rowHeight = mDimensionMinSize; in computeMainRowHeight() local 659 rowHeight = Math.max(rowHeight, child.getMeasuredHeight() + verticalMargins); in computeMainRowHeight() 661 return rowHeight; in computeMainRowHeight() 676 int rowHeight = 0; in computeRowHeight() local 680 rowHeight = Math.max(rowHeight, child.getMeasuredHeight() + verticalMargins); in computeRowHeight() 682 return rowHeight; in computeRowHeight()
|
/external/skia/src/gpu/ |
D | GrRectanizer.cpp | 67 void initRow(Row* row, int rowHeight) { in initRow() argument 69 row->fRowHeight = rowHeight; in initRow() 70 fNextStripY += rowHeight; in initRow()
|
D | GrRectanizer_fifo.cpp | 61 void initRow(Row* row, int rowHeight) { in initRow() argument 63 row->fRowHeight = rowHeight; in initRow() 64 fNextStripY += rowHeight; in initRow()
|
/external/chromium_org/third_party/skia/src/gpu/ |
D | GrRectanizer_fifo.cpp | 61 void initRow(Row* row, int rowHeight) { in initRow() argument 63 row->fRowHeight = rowHeight; in initRow() 64 fNextStripY += rowHeight; in initRow()
|
D | GrRectanizer.cpp | 67 void initRow(Row* row, int rowHeight) { in initRow() argument 69 row->fRowHeight = rowHeight; in initRow() 70 fNextStripY += rowHeight; in initRow()
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ |
D | TimelinePanel.js | 201 WebInspector.TimelinePanel.rowHeight = 18; 694 …this._frameContainer.style.height = WebInspector.TimelinePanel.rowHeight + frameContainerBorderWid… 1094 var itemOffset = index * WebInspector.TimelinePanel.rowHeight; 1096 …r visibleBottom = visibleTop + this._containerElementHeight - WebInspector.TimelinePanel.rowHeight; 1100 …inerElementHeight + WebInspector.TimelinePanel.headerHeight + WebInspector.TimelinePanel.rowHeight; 1113 var rowHeight = WebInspector.TimelinePanel.rowHeight; 1117 …var startIndex = Math.max(0, Math.min(Math.floor((visibleTop - headerHeight) / rowHeight), records… 1118 var endIndex = Math.min(recordsInWindow.length, Math.ceil(visibleBottom / rowHeight)); 1119 var lastVisibleLine = Math.max(0, Math.floor((visibleBottom - headerHeight) / rowHeight)); 1130 this._topGapElement.style.height = (startIndex * rowHeight) + "px"; [all …]
|
D | NetworkPanel.js | 1105 var rowHeight = 0; 1118 if (!rowHeight) 1119 rowHeight = row.offsetHeight; 1121 …var rowIsVisible = unfilteredRowIndex * rowHeight < visibleBottom && (unfilteredRowIndex + 1) * ro…
|
D | DataGrid.js | 1380 var rowHeight = 16; 1384 return rowHeight; 1385 var result = rowHeight;
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
D | RenderTableSection.cpp | 285 spanningRowsHeight.rowHeight.resize(rowSpan); in populateSpanningRowsHeightFromCell() 290 …spanningRowsHeight.rowHeight[row] = m_rowPos[actualRow + 1] - m_rowPos[actualRow] - borderSpacingF… in populateSpanningRowsHeightFromCell() 291 if (!spanningRowsHeight.rowHeight[row]) in populateSpanningRowsHeightFromCell() 294 spanningRowsHeight.totalRowsHeight += spanningRowsHeight.rowHeight[row]; in populateSpanningRowsHeightFromCell() 463 unsigned rowHeight = 0; in calcRowHeightHavingOnlySpanningCells() local 468 …rowHeight = max(rowHeight, rowSpanCell.cells[0]->logicalHeightForRowSizing() / rowSpanCell.cells[0… in calcRowHeightHavingOnlySpanningCells() 471 return rowHeight; in calcRowHeightHavingOnlySpanningCells() 476 ASSERT(spanningRowsHeight.rowHeight.size()); in updateRowsHeightHavingOnlySpanningCells() 482 ASSERT_UNUSED(rowSpan, rowSpan == spanningRowsHeight.rowHeight.size()); in updateRowsHeightHavingOnlySpanningCells() 484 for (unsigned row = 0; row < spanningRowsHeight.rowHeight.size(); row++) { in updateRowsHeightHavingOnlySpanningCells() [all …]
|
D | RenderTableCell.cpp | 177 void RenderTableCell::computeIntrinsicPadding(int rowHeight, SubtreeLayoutScope& layouter) in computeIntrinsicPadding() argument 199 intrinsicPaddingBefore = (rowHeight - logicalHeightWithoutIntrinsicPadding) / 2; in computeIntrinsicPadding() 202 intrinsicPaddingBefore = rowHeight - logicalHeightWithoutIntrinsicPadding; in computeIntrinsicPadding() 208 …int intrinsicPaddingAfter = rowHeight - logicalHeightWithoutIntrinsicPadding - intrinsicPaddingBef… in computeIntrinsicPadding() 304 void RenderTableCell::setOverrideLogicalContentHeightFromRowHeight(LayoutUnit rowHeight) in setOverrideLogicalContentHeightFromRowHeight() argument 307 … setOverrideLogicalContentHeight(max<LayoutUnit>(0, rowHeight - borderAndPaddingLogicalHeight())); in setOverrideLogicalContentHeightFromRowHeight()
|
D | RenderTableSection.h | 136 Vector<int> rowHeight; member
|
D | RenderTableCell.h | 139 void computeIntrinsicPadding(int rowHeight, SubtreeLayoutScope&);
|
/external/chromium_org/chrome/browser/resources/ntp4/ |
D | tile_page.js | 843 var rowHeight = this.heightForWidth(realTileValues.tileWidth) + 851 rowHeight: rowHeight, property 901 var realY = row * layout.rowHeight; 926 layout.rowHeight * sign); 932 this.tileGrid_.style.height = (realY + layout.rowHeight) + 'px'; 961 var row = Math.floor((y - gridClientRect.top) / layout.rowHeight); 1027 var usedHeight = layout.rowHeight * numRows;
|
/external/skia/gm/ |
D | shadertext.cpp | 183 static const int rowHeight = 60; in onDraw() local 190 SkIntToScalar((i % testsPerCol) * rowHeight)); in onDraw() 197 SkIntToScalar((i % testsPerCol) * rowHeight)); in onDraw()
|
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/table/ |
D | PropertyTableTooltipHelper.java | 90 int rowHeight) { in update() argument 97 m_rowHeight = rowHeight; in update()
|
/external/chromium_org/third_party/WebKit/Source/web/ |
D | PopupListBox.cpp | 875 int rowHeight = getRowHeight(i); in layout() local 878 if (windowHeight + rowHeight > m_maxHeight) { in layout() 883 windowHeight += rowHeight; in layout()
|
/external/chromium_org/chrome/browser/resources/file_manager/foreground/js/photo/ |
D | mosaic_mode.js | 1364 var rowHeight = this.rows_[r].getHeightForWidth(this.width_); 1365 this.height_ += rowHeight; 1366 this.rowHeights_.push(rowHeight);
|
/external/chromium_org/third_party/WebKit/Source/web/resources/ |
D | calendarPicker.js | 2421 var rowHeight = animator ? animator.currentValue : YearListCell.SelectedHeight; 2426 if (remainingOffset <= (rowHeight - YearListCell.Height)) 2428 remainingOffset -= rowHeight - YearListCell.Height;
|
/external/chromium_org/chrome/browser/ui/cocoa/ |
D | website_settings_bubble_controller.mm | 1110 CGFloat rowHeight = [self addCookieInfo:*it 1113 controlOrigin.y += rowHeight;
|