Searched defs:isHorizontal (Results 1 - 25 of 34) sorted by relevance

12

/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderDeprecatedFlexibleBox.h59 bool isHorizontal() const { return style()->boxOrient() == HORIZONTAL; } function in class:blink::FINAL
H A DRenderMarquee.cpp111 bool RenderMarquee::isHorizontal() const function in class:blink::RenderMarquee
118 if (isHorizontal()) {
165 if (isHorizontal())
241 if (isHorizontal() && childrenInline()) {
247 if (!isHorizontal() && s->height().isAuto())
279 if (isHorizontal())
303 int clientSize = (isHorizontal() ? clientWidth() : clientHeight());
305 int currentPos = (isHorizontal() ? layer()->scrollableArea()->scrollXOffset() : layer()->scrollableArea()->scrollYOffset());
321 if (isHorizontal())
H A DRenderScrollbar.cpp172 bool isHorizontal = orientation() == HorizontalScrollbar;
173 int oldThickness = isHorizontal ? height() : width();
178 newThickness = isHorizontal ? part->height() : part->width();
182 setFrameRect(IntRect(location(), IntSize(isHorizontal ? width() : newThickness, isHorizontal ? newThickness : height())));
275 bool isHorizontal = orientation() == HorizontalScrollbar; local
277 return IntRect(location(), IntSize(isHorizontal ? partRenderer->pixelSnappedWidth() : width(), isHorizontal ? height() : partRenderer->pixelSnappedHeight()));
279 return IntRect(isHorizontal ? x() + width() - partRenderer->pixelSnappedWidth() : x(),
280 isHorizontal
[all...]
H A DFloatingObjects.cpp240 bool FloatingObjects::hasLowestFloatLogicalBottomCached(bool isHorizontal, FloatingObject::Type type) const argument
245 return (m_cachedHorizontalWritingMode == isHorizontal && !m_lowestFloatBottomCache[floatIndex].dirty);
256 void FloatingObjects::setCachedLowestFloatLogicalBottom(bool isHorizontal, FloatingObject::Type type, LayoutUnit value) argument
261 m_cachedHorizontalWritingMode = isHorizontal;
H A DRenderMultiColumnSet.cpp282 bool isHorizontal = flowThread()->isHorizontalWritingMode(); local
283 LayoutUnit logicalTopOffset = isHorizontal ? rect.y() : rect.x();
285 LayoutUnit logicalHeightWithOverflow = (isHorizontal ? layoutRect.maxY() : layoutRect.maxX()) - logicalTopOffset;
286 setFlowThreadPortionRect(LayoutRect(rect.x(), rect.y(), isHorizontal ? rect.width() : logicalHeightWithOverflow, isHorizontal ? logicalHeightWithOverflow : rect.height()));
H A DInlineBox.h54 bool dirty, bool extracted, bool isHorizontal, InlineBox* next, InlineBox* prev, InlineFlowBox* parent)
61 , m_bitfields(firstLine, constructed, dirty, extracted, isHorizontal)
81 if (isHorizontal())
88 if (isHorizontal())
95 if (isHorizontal())
136 bool isHorizontal() const { return m_bitfields.isHorizontal(); } function in class:blink::InlineBox
137 void setIsHorizontal(bool isHorizontal) { m_bitfields.setIsHorizontal(isHorizontal); } argument
204 float width() const { return isHorizontal()
53 InlineBox(RenderObject& obj, FloatPoint topLeft, float logicalWidth, bool firstLine, bool constructed, bool dirty, bool extracted, bool isHorizontal, InlineBox* next, InlineBox* prev, InlineFlowBox* parent) argument
[all...]
H A DRenderFlexibleBox.cpp686 bool isHorizontal = isHorizontalFlow(); local
691 if (isHorizontal) {
754 bool isHorizontal = isHorizontalFlow(); local
755 Length topOrLeft = isHorizontal ? child.style()->marginTop() : child.style()->marginLeft();
756 Length bottomOrRight = isHorizontal ? child.style()->marginBottom() : child.style()->marginRight();
759 if (isHorizontal) {
784 if (isHorizontal)
794 if (isHorizontal)
H A DRenderInline.cpp581 bool isHorizontal = style()->isHorizontalWritingMode(); local
595 if (isHorizontal)
610 if (isHorizontal)
628 if (isHorizontal)
903 bool isHorizontal = style()->isHorizontalWritingMode(); local
905 float x = isHorizontal ? logicalLeftSide : firstLineBox()->x();
906 float y = isHorizontal ? firstLineBox()->y() : logicalLeftSide;
907 float width = isHorizontal ? logicalRightSide - logicalLeftSide : lastLineBox()->logicalBottom() - x;
908 float height = isHorizontal ? lastLineBox()->logicalBottom() - y : logicalRightSide - logicalLeftSide;
969 bool isHorizontal local
[all...]
H A DRenderText.cpp340 if (box->isHorizontal()) {
371 if (box->isHorizontal()) {
454 if (box->isHorizontal()) {
604 LayoutUnit pointLineDirection = firstTextBox()->isHorizontal() ? point.x() : point.y();
605 LayoutUnit pointBlockDirection = firstTextBox()->isHorizontal() ? point.y() : point.x();
1547 bool isHorizontal = style()->isHorizontalWritingMode(); local
1549 float x = isHorizontal ? logicalLeftSide : firstTextBox()->x();
1550 float y = isHorizontal ? firstTextBox()->y() : logicalLeftSide;
1551 float width = isHorizontal ? logicalRightSide - logicalLeftSide : lastTextBox()->logicalBottom() - x;
1552 float height = isHorizontal
[all...]
H A DRenderBlockFlow.cpp1334 bool isHorizontal = isHorizontalWritingMode(); local
1335 bool hasStaticBlockPosition = child->style()->hasStaticBlockPosition(isHorizontal);
H A DRenderLayer.cpp2310 bool isHorizontal = columnBlock->style()->isHorizontalWritingMode(); local
2319 LayoutUnit logicalLeftOffset = (isHorizontal ? colRect.x() : colRect.y()) - columnBlock->logicalLeftOffsetForContent();
2321 if (isHorizontal) {
2384 LayoutUnit blockDelta = isHorizontal ? colRect.height() : colRect.width();
2878 bool isHorizontal = columnBlock->style()->isHorizontalWritingMode(); local
2884 LayoutUnit blockDelta = (isHorizontal ? colRect.height() : colRect.width());
2894 LayoutUnit currLogicalLeftOffset = (isHorizontal ? colRect.x() : colRect.y()) - logicalLeft;
2895 LayoutUnit blockDelta = (isHorizontal ? colRect.height() : colRect.width());
2902 if (isHorizontal) {
/external/chromium_org/content/renderer/
H A Dwebscrollbarbehavior_impl_gtkoraura.cc27 bool isHorizontal) {
39 int thickness = isHorizontal ? noSnapRect.height() : noSnapRect.width();
46 (isHorizontal ? kOffEndMultiplier : kOffSideMultiplier) * -thickness,
47 (isHorizontal ? kOffSideMultiplier : kOffEndMultiplier) * -thickness);
53 return isHorizontal ?
24 shouldSnapBackToDragOrigin( const blink::WebPoint& eventPoint, const blink::WebRect& scrollbarRect, bool isHorizontal) argument
/external/chromium_org/third_party/WebKit/public/platform/
H A DWebScrollbarBehavior.h23 virtual bool shouldSnapBackToDragOrigin(const WebPoint& eventPoint, const WebRect& scrollbarRect, bool isHorizontal) { return false; } argument
/external/chromium_org/third_party/WebKit/Source/platform/geometry/
H A DRoundedRect.cpp97 void RoundedRect::Radii::includeLogicalEdges(const RoundedRect::Radii& edges, bool isHorizontal, bool includeLogicalLeftEdge, bool includeLogicalRightEdge) argument
100 if (isHorizontal)
108 if (isHorizontal)
116 void RoundedRect::Radii::excludeLogicalEdges(bool isHorizontal, bool excludeLogicalLeftEdge, bool excludeLogicalRightEdge) argument
119 if (isHorizontal)
127 if (isHorizontal)
162 void RoundedRect::includeLogicalEdges(const Radii& edges, bool isHorizontal, bool includeLogicalLeftEdge, bool includeLogicalRightEdge) argument
164 m_radii.includeLogicalEdges(edges, isHorizontal, includeLogicalLeftEdge, includeLogicalRightEdge);
167 void RoundedRect::excludeLogicalEdges(bool isHorizontal, bool excludeLogicalLeftEdge, bool excludeLogicalRightEdge) argument
169 m_radii.excludeLogicalEdges(isHorizontal, excludeLogicalLeftEdg
[all...]
/external/chromium_org/third_party/WebKit/Source/core/frame/
H A DPinchViewport.cpp271 bool isHorizontal = orientation == WebScrollbar::Horizontal; local
272 GraphicsLayer* scrollbarGraphicsLayer = isHorizontal ?
274 OwnPtr<WebScrollbarLayer>& webScrollbarLayer = isHorizontal ?
290 ScrollbarOrientation webcoreOrientation = isHorizontal ? HorizontalScrollbar : VerticalScrollbar;
298 int xPosition = isHorizontal ? 0 : m_innerViewportContainerLayer->size().width() - scrollbarThickness;
299 int yPosition = isHorizontal ? m_innerViewportContainerLayer->size().height() - scrollbarThickness : 0;
300 int width = isHorizontal ? m_innerViewportContainerLayer->size().width() - scrollbarThickness : scrollbarThickness;
301 int height = isHorizontal ? scrollbarThickness : m_innerViewportContainerLayer->size().height() - scrollbarThickness;
/external/chromium_org/third_party/WebKit/Source/core/page/
H A DPrintContext.cpp105 bool isHorizontal = view->style()->isHorizontalWritingMode(); local
107 int docLogicalHeight = isHorizontal ? docRect.height() : docRect.width();
108 int pageLogicalHeight = isHorizontal ? pageHeight : pageWidth;
109 int pageLogicalWidth = isHorizontal ? pageWidth : pageHeight;
115 if (isHorizontal) {
148 if (!isHorizontal)
155 if (!isHorizontal)
/external/chromium_org/third_party/skia/src/pathops/
H A DSkOpSegment.h113 bool isHorizontal() const { function in class:SkOpSegment
H A DSkOpAngle.cpp695 bool SkOpAngle::isHorizontal() const { function in class:SkOpAngle
/external/skia/src/pathops/
H A DSkOpSegment.h113 bool isHorizontal() const { function in class:SkOpSegment
H A DSkOpAngle.cpp698 bool SkOpAngle::isHorizontal() const { function in class:SkOpAngle
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/core/controls/flyout/
H A DFlyoutControlComposite.java190 if (isHorizontal()) {
232 private boolean isHorizontal() { method in class:FlyoutControlComposite
462 if (isHorizontal()) {
746 if (isHorizontal()) {
814 if (isHorizontal()) {
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSGradientValue.cpp391 static float positionFromValue(CSSPrimitiveValue* value, const CSSToLengthConversionData& conversionData, const IntSize& size, bool isHorizontal) argument
395 int edgeDistance = isHorizontal ? size.width() : size.height();
421 ASSERT(!isHorizontal);
424 ASSERT(isHorizontal);
427 ASSERT(!isHorizontal);
430 ASSERT(isHorizontal);
/external/chromium_org/third_party/skia/experimental/Intersection/
H A DSimplify.cpp826 bool isHorizontal() const { function in class:Angle
3102 bool isHorizontal() const {
5333 if (segment.isHorizontal()) {
/external/skia/experimental/Intersection/
H A DSimplify.cpp826 bool isHorizontal() const { function in class:Angle
3102 bool isHorizontal() const {
5333 if (segment.isHorizontal()) {
/external/chromium_org/third_party/WebKit/Source/core/paint/
H A DBoxPainter.cpp1853 bool isHorizontal = s->isHorizontalWritingMode(); local
1952 if (isHorizontal)
1958 if (isHorizontal)

Completed in 738 milliseconds

12