Searched refs:contentHeight (Results 1 - 25 of 31) sorted by relevance

12

/macosx-10.9.5/WebKit-7537.78.2/efl/ewk/
H A Dewk_view_tiled.cpp210 int contentWidth, contentHeight; local
211 ewk_frame_contents_size_get(smartData->main_frame, &contentWidth, &contentHeight);
216 if (viewWidth <= 0 || viewHeight <= 0 || contentWidth <= 0 || contentHeight <= 0)
219 if (viewWidth >= contentWidth && viewHeight >= contentHeight)
226 if (previousViewX < 0 || previousViewX > contentWidth || previousViewY < 0 || previousViewY > contentHeight)
254 Eina_Rectangle contentRect = {0, 0, contentWidth, contentHeight};
257 const int contentMemory = contentWidth * contentHeight * EWK_ARGB_BYTES_SIZE;
268 const float heightRate = baseSize / static_cast<float>(contentHeight);
288 if (renderRect.h > contentHeight)
289 renderRect.h = contentHeight;
[all...]
H A Dewk_frame.cpp132 Evas_Coord x, y, width, height, contentX, contentY, contentWidth, contentHeight; local
140 evas_object_geometry_get(clip, &contentX, &contentY, &contentWidth, &contentHeight);
145 clip, evas_object_visible_get(clip), contentRed, contentGreen, contentBlue, contentAlpha, contentX, contentY, contentWidth, contentHeight);
/macosx-10.9.5/WebCore-7537.78.1/rendering/
H A DRenderMarquee.cpp141 int contentHeight = box->layoutOverflowRect().maxY() - box->borderTop() + box->paddingBottom(); local
145 return min(contentHeight - clientHeight, 0);
151 return max(contentHeight - clientHeight, 0);
153 return contentHeight;
H A DRenderDetailsMarker.cpp110 result.transform(AffineTransform().scale(contentWidth(), contentHeight()));
H A DRenderSnapshottedPlugIn.cpp122 LayoutUnit cHeight = contentHeight();
H A DRenderBox.h150 LayoutRect paddingBoxRect() const { return LayoutRect(borderLeft(), borderTop(), contentWidth() + paddingLeft() + paddingRight(), contentHeight() + paddingTop() + paddingBottom()); }
155 LayoutRect contentBoxRect() const { return LayoutRect(borderLeft() + paddingLeft(), borderTop() + paddingTop(), contentWidth(), contentHeight()); }
198 LayoutUnit contentHeight() const { return clientHeight() - paddingTop() - paddingBottom(); } function in class:WebCore::RenderBox
199 LayoutUnit contentLogicalWidth() const { return style()->isHorizontalWritingMode() ? contentWidth() : contentHeight(); }
200 LayoutUnit contentLogicalHeight() const { return style()->isHorizontalWritingMode() ? contentHeight() : contentWidth(); }
301 // Right now, these are different than contentHeight/contentWidth because they still
H A DRenderRegion.cpp64 return m_flowThread->isHorizontalWritingMode() ? contentWidth() : contentHeight();
74 return m_flowThread->isHorizontalWritingMode() ? contentHeight() : contentWidth();
93 return m_flowThread->isHorizontalWritingMode() ? contentHeight() : contentWidth();
H A DRenderFileUploadControl.cpp155 LayoutUnit iconY = paintOffset.y() + borderTop() + paddingTop() + (contentHeight() - iconHeight) / 2;
H A DRenderImage.cpp304 LayoutUnit cHeight = contentHeight();
572 IntSize containerSize(contentWidth(), contentHeight());
H A DRenderMenuList.cpp277 contentHeight());
282 m_innerBlock->contentHeight());
H A DRenderDeprecatedFlexibleBox.cpp558 childY += child->marginTop() + max<LayoutUnit>(0, (contentHeight() - (child->height() + child->marginHeight())) / 2);
569 childY += contentHeight() - child->marginBottom() - child->height();
844 remainingSpace = borderTop() + paddingTop() + contentHeight() - yPos;
H A DRenderMultiColumnSet.cpp381 LayoutUnit ruleBottom = isHorizontalWritingMode() ? ruleTop + contentHeight() : ruleTop + ruleThickness;
H A DRenderFlowThread.cpp620 return isHorizontalWritingMode() ? firstValidRegionInFlow->contentWidth() : firstValidRegionInFlow->contentHeight();
628 return isHorizontalWritingMode() ? firstValidRegionInFlow->contentHeight() : firstValidRegionInFlow->contentWidth();
H A DRenderThemeMac.mm2082 LayoutUnit contentHeight = renderBlock->contentHeight();
2083 if (!contentWidth || !contentHeight)
2088 LayoutSize contentSize(contentWidth, contentHeight);
2137 LayoutSize pluginSize(plugInRenderer->contentWidth(), plugInRenderer->contentHeight());
H A DRenderEmbeddedObject.cpp186 LayoutUnit cHeight = contentHeight();
H A DRenderFlexibleBox.cpp238 return direction == HorizontalLine ? box->borderTop() + box->paddingTop() + box->contentHeight() : box->borderRight() + box->paddingRight() + box->contentWidth();
522 return isHorizontalFlow() ? contentHeight() : contentWidth();
/macosx-10.9.5/WebCore-7537.78.1/html/
H A DHTMLAppletElement.cpp117 LayoutUnit contentHeight = renderer->style()->height().isFixed() ? LayoutUnit(renderer->style()->height().value()) : local
168 renderer->setWidget(frame->loader()->subframeLoader()->createJavaAppletWidget(roundedIntSize(LayoutSize(contentWidth, contentHeight)), this, paramNames, paramValues));
H A DHTMLPlugInImageElement.cpp572 int contentHeight = contentBoxRect.height(); local
574 if (contentWidth <= sizingTinyDimensionThreshold || contentHeight <= sizingTinyDimensionThreshold)
577 LOG(Plugins, "%p Plug-in originally avoided snapshotting because it was sized %dx%d. Now it is %dx%d. Tell it to snapshot.\n", this, m_sizeWhenSnapshotted.width(), m_sizeWhenSnapshotted.height(), contentWidth, contentHeight);
674 int contentHeight = contentBoxRect.height(); local
675 int contentArea = contentWidth * contentHeight;
687 if (contentWidth <= sizingTinyDimensionThreshold || contentHeight <= sizingTinyDimensionThreshold) {
688 LOG(Plugins, "%p Plug-in is very small %dx%d, set to play", this, contentWidth, contentHeight);
701 LOG(Plugins, "%p Plug-in from (%s, %s) is not auto-start, sized at %dx%d, set to wait for snapshot", this, document()->page()->mainFrame()->document()->baseURL().host().utf8().data(), url.host().utf8().data(), contentWidth, contentHeight);
H A DImageInputType.cpp195 return box ? adjustForAbsoluteZoom(box->contentHeight(), box) : 0;
/macosx-10.9.5/WebCore-7537.78.1/inspector/front-end/
H A DSuggestBox.js109 var contentHeight = this.contentElement.offsetHeight;
132 var height = Math.min(contentHeight, maxHeight - suggestBoxPaddingY) + suggestBoxPaddingY;
/macosx-10.9.5/WebCore-7537.78.1/html/shadow/
H A DSliderThumbElement.cpp196 LayoutUnit availableExtent = isVertical ? track->contentHeight() : track->contentWidth();
201 thumbLocation.setY(thumbLocation.y() + track->contentHeight() - thumb->height() - offset);
279 trackSize = trackElement->renderBox()->contentHeight() - renderBox()->height();
/macosx-10.9.5/WebCore-7537.78.1/loader/
H A DSubframeLoader.cpp269 size = roundedIntSize(LayoutSize(renderer->contentWidth(), renderer->contentHeight()));
459 IntSize contentSize = roundedIntSize(LayoutSize(renderer->contentWidth(), renderer->contentHeight()));
/macosx-10.9.5/WebCore-7537.78.1/platform/qt/
H A DRenderThemeQStyle.cpp211 int contentHeight = qMax(fm.lineSpacing(), 14) + 2; local
212 QSize menuListSize = m_qStyle->comboBoxSizeFromContents(QStyleFacade::State_Small, QSize(0, contentHeight));
/macosx-10.9.5/WebCore-7537.78.1/rendering/svg/
H A DRenderSVGRoot.cpp374 m_localToBorderBoxTransform = svg->viewBoxToViewTransform(contentWidth() / scale, contentHeight() / scale);
/macosx-10.9.5/WebCore-7537.78.1/editing/
H A DDeleteSelectionCommand.cpp377 if (r && r->isTableCell() && toRenderTableCell(r)->contentHeight() <= 0) {

Completed in 188 milliseconds

12