/external/chromium_org/third_party/WebKit/Source/core/html/ |
D | HTMLMarqueeElement.js | 242 metrics.contentHeight = parseInt(moverStyle.height); 254 var totalHeight = metrics.marqueeHeight + metrics.contentHeight; 257 var innerHeight = metrics.marqueeHeight - metrics.contentHeight; 278 parameters.transformEnd = 'translateY(-' + metrics.contentHeight + 'px)'; 282 parameters.transformBegin = 'translateY(-' + metrics.contentHeight + 'px)'; 339 parameters.transformBegin = 'translateY(-' + metrics.contentHeight + 'px)';
|
/external/chromium_org/android_webview/javatests/src/org/chromium/android_webview/test/ |
D | AwLayoutSizerTest.java | 71 final int contentHeight = 389; in testCanQueryContentSize() local 73 layoutSizer.onContentSizeChanged(contentWidth, contentHeight); in testCanQueryContentSize() 80 assertEquals(contentHeight, delegate.measuredHeight & View.MEASURED_SIZE_MASK); in testCanQueryContentSize() 363 int contentHeight = 6; in testViewportDipSizeOverrideRounding() local 366 layoutSizer.onContentSizeChanged(contentWidth, contentHeight); in testViewportDipSizeOverrideRounding() 375 assertFalse((int) Math.ceil(measuredHeight / dipScale) == contentHeight); in testViewportDipSizeOverrideRounding() 393 int contentHeight = 400; in testViewportWithAtMostMeasureSpec() local 395 int contentHeightPix = contentHeight * dipAndPageScale; in testViewportWithAtMostMeasureSpec() 400 layoutSizer.onContentSizeChanged(contentWidth, contentHeight); in testViewportWithAtMostMeasureSpec()
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
D | RenderMarquee.cpp | 142 int contentHeight = layoutOverflowRect().maxY() - borderTop() + paddingBottom(); in computePosition() local 146 return std::min(contentHeight - clientHeight, 0); in computePosition() 152 return std::max(contentHeight - clientHeight, 0); in computePosition() 154 return contentHeight; in computePosition()
|
D | RenderRegion.cpp | 52 return m_flowThread->isHorizontalWritingMode() ? contentWidth() : contentHeight(); in pageLogicalWidth() 58 return m_flowThread->isHorizontalWritingMode() ? contentHeight() : contentWidth(); in pageLogicalHeight()
|
D | RenderSliderContainer.cpp | 131 LayoutUnit availableExtent = isVertical ? track->contentHeight() : track->contentWidth(); in layout() 136 thumbLocation.setY(thumbLocation.y() + track->contentHeight() - thumb->height() - offset); in layout()
|
D | RenderButton.cpp | 104 return marginTop() + borderTop() + paddingTop() + contentHeight(); in baselinePosition()
|
D | RenderBox.h | 182 …Left(), borderTop(), contentWidth() + paddingLeft() + paddingRight(), contentHeight() + paddingTop… in paddingBoxRect() 187 …tRect(borderLeft() + paddingLeft(), borderTop() + paddingTop(), contentWidth(), contentHeight()); } in contentBoxRect() 239 LayoutUnit contentHeight() const { return clientHeight() - paddingTop() - paddingBottom(); } in contentHeight() function 240 …icalWidth() const { return style()->isHorizontalWritingMode() ? contentWidth() : contentHeight(); } in contentLogicalWidth() 241 …ntLogicalHeight() const { return style()->isHorizontalWritingMode() ? contentHeight() : contentWid… in contentLogicalHeight()
|
D | RenderMenuList.cpp | 328 contentHeight()); in controlClipRect() 333 m_innerBlock->contentHeight()); in controlClipRect()
|
D | RenderDeprecatedFlexibleBox.cpp | 449 …childY += child->marginTop() + std::max<LayoutUnit>(0, (contentHeight() - (child->height() + child… in layoutHorizontalBox() 460 childY += contentHeight() - child->marginBottom() - child->height(); in layoutHorizontalBox() 727 remainingSpace = borderTop() + paddingTop() + contentHeight() - yPos; in layoutVerticalBox()
|
D | RenderFlexibleBox.cpp | 133 …return direction == HorizontalLine ? box.borderTop() + box.paddingTop() + box.contentHeight() : bo… in synthesizedBaselineFromContentBox() 397 return isHorizontalFlow() ? contentHeight() : contentWidth(); in crossAxisContentExtent()
|
/external/chromium_org/chrome/browser/ui/cocoa/ |
D | presentation_mode_controller_unittest.mm | 198 // adjusts the expectations to sometimes use contentHeight instead of 200 CGFloat contentHeight = NSHeight([[[controller_ window] contentView] bounds]); 210 EXPECT_LT(MinYInWindow(LowestViewInToolbarArea(controller_)), contentHeight); 211 EXPECT_GT(MaxYInWindow(HighestViewInToolbarArea(controller_)), contentHeight); 219 EXPECT_EQ(contentHeight, MaxYInWindow(HighestViewInToolbarArea(controller_)));
|
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/banners/ |
D | AppBannerView.java | 666 final int contentHeight = biggestStackHeight - mPaddingControls; in onMeasure() local 667 measureChildForSpace(mLogoView, contentWidth, contentHeight); in onMeasure() 673 measureChildForSpace(mInstallButtonView, contentWidth, contentHeight); in onMeasure() 677 final int ratingHeight = contentHeight - getHeightWithMargins(mLogoView); in onMeasure() 682 final int closeHeight = contentHeight - getHeightWithMargins(mInstallButtonView); in onMeasure() 692 final int titleHeight = contentHeight - biggerStack; in onMeasure()
|
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/table/ |
D | HtmlTooltipHelper.java | 193 int contentHeight; in expandShellToShowFullPage_Height() local 196 contentHeight = getContentScrollHeight(browser); in expandShellToShowFullPage_Height() 199 int useHeight = Math.min(contentHeight + ((EnvironmentUtils.IS_LINUX) ? 2 : 10), maxHeight); in expandShellToShowFullPage_Height()
|
/external/chromium_org/third_party/WebKit/Source/core/paint/ |
D | DetailsMarkerPainter.cpp | 88 …(m_renderDetailsMarker.contentWidth().toFloat(), m_renderDetailsMarker.contentHeight().toFloat())); in getPath()
|
D | MultiColumnSetPainter.cpp | 79 …olumnSet.isHorizontalWritingMode() ? ruleTop + m_renderMultiColumnSet.contentHeight() : ruleTop + … in paintColumnRules()
|
D | ImagePainter.cpp | 74 LayoutUnit cHeight = m_renderImage.contentHeight(); in paintReplaced()
|
D | BlockPainter.cpp | 302 …m = m_renderBlock.isHorizontalWritingMode() ? ruleTop + m_renderBlock.contentHeight() : ruleTop + … in paintColumnRules() 318 …leHeight = m_renderBlock.isHorizontalWritingMode() ? ruleThickness : m_renderBlock.contentHeight(); in paintColumnRules()
|
/external/chromium_org/third_party/WebKit/Source/core/html/forms/ |
D | ImageInputType.cpp | 203 return box ? adjustForAbsoluteZoom(box->contentHeight(), box) : 0; in height()
|
/external/chromium_org/ui/file_manager/gallery/js/ |
D | mosaic_mode.js | 1541 var contentHeight = Math.min.apply(null, 1545 Math.round(contentHeight * this.getTotalContentAspectRatio_()); 1558 var contentHeight = 1560 return contentHeight + Mosaic.Layout.SPACING; 1576 var contentHeight = height - Mosaic.Layout.SPACING;
|
/external/chromium_org/chrome/browser/resources/print_preview/ |
D | preview_generator.js | 324 event.pageLayout.contentHeight +
|
/external/chromium_org/chrome/browser/ui/cocoa/autofill/ |
D | password_generation_popup_view_cocoa.mm | 185 const CGFloat contentHeight = controller_->popup_bounds().height() - 243 const CGFloat helpHeight = contentHeight -
|
/external/chromium_org/third_party/WebKit/Source/core/html/shadow/ |
D | SliderThumbElement.cpp | 139 trackSize = trackElement->renderBox()->contentHeight() - renderBox()->height(); in setPositionFromPoint()
|
/external/chromium_org/content/public/android/java/src/org/chromium/content/browser/ |
D | ContentViewCore.java | 2099 float contentWidth, float contentHeight, 2108 contentHeight = Math.max(contentHeight, 2114 || contentHeight != mRenderCoordinates.getContentHeightCss(); 2142 contentWidth, contentHeight,
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/ |
D | RenderSVGRoot.cpp | 324 …m_localToBorderBoxTransform = svg->viewBoxToViewTransform(contentWidth() / scale, contentHeight() … in buildLocalToBorderBoxTransform()
|
/external/chromium_org/third_party/WebKit/Source/core/editing/ |
D | DeleteSelectionCommand.cpp | 378 if (r && r->isTableCell() && toRenderTableCell(r)->contentHeight() <= 0) { in removeNode()
|