Home
last modified time | relevance | path

Searched refs:totalHeight (Results 1 – 9 of 9) sorted by relevance

/external/jmonkeyengine/engine/src/core/com/jme3/font/
DLetters.java20 private float totalHeight; field in Letters
158 if (totalHeight < height) { // align vertically only for no overflow in align()
164 gapY = (height-totalHeight)*0.5f; in align()
167 gapY = height-totalHeight; in align()
252 totalHeight = -1; in invalidate()
275 return totalHeight; in getTotalHeight()
284 totalHeight = Math.max(totalHeight, -l.getY1()); in validateSize()
/external/webkit/Source/WebCore/inspector/front-end/
DPopover.js92 const totalHeight = window.innerHeight;
107 var roomBelow = totalHeight - anchorBox.y - anchorBox.height;
121 … if (newElementPosition.y + newElementPosition.height + arrowHeight - borderWidth >= totalHeight)
122 …newElementPosition.height = totalHeight - anchorBox.y - anchorBox.height - borderRadius * 2 - arro…
DTimelinePanel.js626 _adjustScrollPosition: function(totalHeight) argument
629 … if ((this._containerElement.scrollTop + this._containerElement.offsetHeight) > totalHeight + 1)
630 this._containerElement.scrollTop = (totalHeight - this._containerElement.offsetHeight);
/external/webkit/Source/WebCore/inspector/
DInspectorFrontendClientLocal.cpp121 …unsigned totalHeight = m_frontendPage->mainFrame()->view()->visibleHeight() + m_inspectorControlle… in changeAttachedWindowHeight() local
122 unsigned attachedHeight = constrainedAttachedWindowHeight(height, totalHeight); in changeAttachedWindowHeight()
/external/webkit/Source/WebCore/page/
DPrintContext.cpp343 int totalHeight = pageRects.size() * (pageSizeInPixels.height() + 1) - 1; in spoolAllPagesWithBoundaries() local
347 graphicsContext.fillRect(FloatRect(0, 0, pageWidth, totalHeight)); in spoolAllPagesWithBoundaries()
350 graphicsContext.translate(0, totalHeight); in spoolAllPagesWithBoundaries()
/external/webkit/Source/WebKit/win/WebCoreSupport/
DWebInspectorClient.cpp304 int totalHeight = hostWindowRect.bottom - hostWindowRect.top; in setAttachedWindowHeight() local
307 …SetWindowPos(m_frontendWebViewHwnd, 0, 0, totalHeight - height, webViewWidth, height, SWP_NOZORDER… in setAttachedWindowHeight()
311 SetWindowPos(m_inspectedWebViewHwnd, 0, 0, 0, webViewWidth, totalHeight, SWP_NOZORDER); in setAttachedWindowHeight()
/external/chromium/chrome/browser/ui/cocoa/
Dbrowser_window_controller_private.mm267 CGFloat totalHeight = [fullscreenController_ floatingBarVerticalOffset];
270 totalHeight += NSHeight([[self tabStripView] frame]);
273 totalHeight += NSHeight([[toolbarController_ view] frame]);
275 totalHeight += NSHeight([[toolbarController_ view] frame]) +
280 totalHeight += NSHeight([[bookmarkBarController_ view] frame]);
282 return totalHeight;
/external/webkit/Source/WebCore/rendering/
DRenderTableCell.cpp1065 int totalHeight = logicalHeight(); in scrollbarsChanged() local
1066 …int heightWithoutIntrinsicPadding = totalHeight - intrinsicPaddingBefore() - intrinsicPaddingAfter… in scrollbarsChanged()
1067 totalHeight -= scrollbarHeight; in scrollbarsChanged()
1068 int newBeforePadding = (totalHeight - heightWithoutIntrinsicPadding) / 2; in scrollbarsChanged()
1069 int newAfterPadding = totalHeight - heightWithoutIntrinsicPadding - newBeforePadding; in scrollbarsChanged()
DRenderTableSection.cpp522 int totalHeight = m_rowPos[totalRows] + toAdd; in setCellLogicalWidths() local
540 …int toAdd = min(dh, static_cast<int>((totalHeight * m_grid[r].logicalHeight.percent() / 100) - rh)… in setCellLogicalWidths()