Searched refs:LayoutSize (Results 1 - 25 of 131) sorted by relevance

123456

/macosx-10.10/WebCore-7600.1.25/platform/graphics/
H A DLayoutSize.h47 class LayoutSize { class in namespace:WebCore
49 LayoutSize() : m_width(0), m_height(0) { } function in class:WebCore::LayoutSize
50 LayoutSize(const IntSize& size) : m_width(size.width()), m_height(size.height()) { } function in class:WebCore::LayoutSize
51 LayoutSize(LayoutUnit width, LayoutUnit height) : m_width(width), m_height(height) { } function in class:WebCore::LayoutSize
53 explicit LayoutSize(const FloatSize& size) : m_width(size.width()), m_height(size.height()) { } function in class:WebCore::LayoutSize
90 LayoutSize expandedTo(const LayoutSize& other) const
92 return LayoutSize(m_width > other.m_width ? m_width : other.m_width,
96 LayoutSize shrunkTo(const LayoutSize
[all...]
H A DRoundedRect.h32 #include "LayoutSize.h"
44 Radii(const LayoutSize& topLeft, const LayoutSize& topRight, const LayoutSize& bottomLeft, const LayoutSize& bottomRight)
52 void setTopLeft(const LayoutSize& size) { m_topLeft = size; }
53 void setTopRight(const LayoutSize& size) { m_topRight = size; }
54 void setBottomLeft(const LayoutSize& size) { m_bottomLeft = size; }
55 void setBottomRight(const LayoutSize& size) { m_bottomRight = size; }
56 const LayoutSize
[all...]
H A DLayoutPoint.h35 #include "LayoutSize.h"
45 explicit LayoutPoint(const LayoutSize& size) : m_x(size.width()), m_y(size.height()) { }
55 void move(const LayoutSize& s) { move(s.width(), s.height()); }
95 inline LayoutPoint& operator+=(LayoutPoint& a, const LayoutSize& b)
101 inline LayoutPoint& operator-=(LayoutPoint& a, const LayoutSize& b)
107 inline LayoutPoint operator+(const LayoutPoint& a, const LayoutSize& b)
117 inline LayoutSize operator-(const LayoutPoint& a, const LayoutPoint& b)
119 return LayoutSize(a.x() - b.x(), a.y() - b.y());
122 inline LayoutPoint operator-(const LayoutPoint& a, const LayoutSize& b)
142 inline LayoutPoint toLayoutPoint(const LayoutSize
[all...]
H A DRoundedRect.cpp52 m_topLeft = LayoutSize();
55 m_topRight = LayoutSize();
58 m_bottomLeft = LayoutSize();
61 m_bottomRight = LayoutSize();
148 RoundedRect::RoundedRect(const LayoutRect& rect, const LayoutSize& topLeft, const LayoutSize& topRight, const LayoutSize& bottomLeft, const LayoutSize& bottomRight)
192 const LayoutSize& topLeft = m_radii.topLeft();
203 const LayoutSize
[all...]
/macosx-10.10/WebCore-7600.1.25/rendering/
H A DLayoutState.h63 LayoutState(std::unique_ptr<LayoutState>, RenderBox*, const LayoutSize& offset, LayoutUnit pageHeight, bool pageHeightChanged);
77 LayoutSize lineGridOffset() const { return m_lineGridOffset; }
78 LayoutSize lineGridPaginationOrigin() const { return m_lineGridPaginationOrigin; }
80 LayoutSize layoutOffset() const { return m_layoutOffset; }
82 LayoutSize pageOffset() const { return m_pageOffset; }
83 void setLineGridPaginationOrigin(const LayoutSize& origin) { m_lineGridPaginationOrigin = origin; }
110 LayoutSize m_paintOffset;
112 LayoutSize m_layoutOffset;
116 LayoutSize m_layoutDelta;
121 LayoutSize m_pageOffse
[all...]
H A DImageQualityController.h37 class LayoutSize;
46 bool shouldPaintAtLowQuality(GraphicsContext*, RenderBoxModelObject*, Image*, const void* layer, const LayoutSize&);
50 typedef HashMap<const void*, LayoutSize> LayerSizeMap;
54 void set(RenderBoxModelObject*, LayerSizeMap* innerMap, const void* layer, const LayoutSize&);
H A DRenderImageResource.h60 virtual LayoutSize imageSize(float multiplier) const;
61 virtual LayoutSize intrinsicSize(float multiplier) const;
70 LayoutSize getImageSize(float multiplier, CachedImage::SizeType) const;
H A DRenderReplaced.h36 LayoutRect replacedContentRect(const LayoutSize& intrinsicSize) const;
43 RenderReplaced(Element&, PassRef<RenderStyle>, const LayoutSize& intrinsicSize);
44 RenderReplaced(Document&, PassRef<RenderStyle>, const LayoutSize& intrinsicSize);
50 virtual LayoutSize intrinsicSize() const override final { return m_intrinsicSize; }
63 void setIntrinsicSize(const LayoutSize& intrinsicSize) { m_intrinsicSize = intrinsicSize; }
89 mutable LayoutSize m_intrinsicSize;
H A DRenderImageResourceStyleImage.h54 virtual LayoutSize imageSize(float multiplier) const override { return LayoutSize(m_styleImage->imageSize(m_renderer, multiplier)); }
55 virtual LayoutSize intrinsicSize(float multiplier) const override { return LayoutSize(m_styleImage->imageSize(m_renderer, multiplier)); }
H A DRenderImageResource.cpp120 LayoutSize RenderImageResource::imageSize(float multiplier) const
125 LayoutSize RenderImageResource::intrinsicSize(float multiplier) const
130 LayoutSize RenderImageResource::getImageSize(float multiplier, CachedImage::SizeType type) const
133 return LayoutSize();
134 LayoutSize size = m_cachedImage->imageSizeForRenderer(m_renderer, multiplier, type);
H A DRenderBoxModelObject.h75 LayoutSize relativePositionOffset() const;
76 LayoutSize relativePositionLogicalOffset() const { return style().isHorizontalWritingMode() ? relativePositionOffset() : relativePositionOffset().transposedSize(); }
80 LayoutSize stickyPositionOffset() const;
81 LayoutSize stickyPositionLogicalOffset() const { return style().isHorizontalWritingMode() ? stickyPositionOffset() : stickyPositionOffset().transposedSize(); }
83 LayoutSize offsetForInFlowPosition() const;
179 void paintFillLayerExtended(const PaintInfo&, const Color&, const FillLayer*, const LayoutRect&, BackgroundBleedAvoidance, InlineFlowBox* = 0, const LayoutSize& = LayoutSize(), CompositeOperator = CompositeSourceOver, RenderElement* backgroundObject = 0, BaseBackgroundColorUsage = BaseBackgroundColorUse);
230 LayoutSize tileSize() const { return m_tileSize; }
231 void setTileSize(const LayoutSize& tileSize) { m_tileSize = tileSize; }
233 LayoutSize spaceSiz
[all...]
H A DRenderGeometryMap.h32 #include "LayoutSize.h"
66 LayoutSize m_offset;
109 void push(const RenderObject*, const LayoutSize&, bool accumulatingTransform = false, bool isNonUniform = false, bool isFixedPosition = false, bool hasTransform = false);
113 void pushView(const RenderView*, const LayoutSize& scrollOffset, const TransformationMatrix* = 0);
133 LayoutSize m_accumulatedOffset;
H A DRenderVideo.h61 LayoutSize calculateIntrinsicSize();
90 LayoutSize m_cachedImageSize;
H A DHitTestLocation.h57 HitTestLocation(const HitTestLocation&, const LayoutSize& offset);
86 void move(const LayoutSize& offset);
H A DRenderHTMLCanvas.cpp94 LayoutSize zoomedSize(canvasSize.width() * style().effectiveZoom(), canvasSize.height() * style().effectiveZoom());
107 LayoutSize oldSize = size();
/macosx-10.10/WebCore-7600.1.25/dom/
H A DElementRareData.cpp40 LayoutSize sizeForResizing;
H A DMouseRelatedEvent.cpp40 static LayoutSize contentsScrollOffset(AbstractView* abstractView)
43 return LayoutSize();
46 return LayoutSize();
49 return LayoutSize();
52 return LayoutSize(frameView->scrollX() / scaleFactor, frameView->scrollY() / scaleFactor);
54 return LayoutSize(frameView->actualScrollX(), frameView->actualScrollY());
/macosx-10.10/WebCore-7600.1.25/platform/graphics/transforms/
H A DTransformState.h33 #include "LayoutSize.h"
80 m_accumulatedOffset = LayoutSize();
86 move(LayoutSize(x, y), accumulate);
89 void move(const LayoutSize&, TransformAccumulation = FlattenTransform);
103 void translateTransform(const LayoutSize&);
104 void translateMappedCoordinates(const LayoutSize&);
113 LayoutSize m_accumulatedOffset;
H A DTransformState.cpp51 void TransformState::translateTransform(const LayoutSize& offset)
59 void TransformState::translateMappedCoordinates(const LayoutSize& offset)
61 LayoutSize adjustedOffset = (m_direction == ApplyTransformDirection) ? offset : -offset;
68 void TransformState::move(const LayoutSize& offset, TransformAccumulation accumulate)
90 LayoutSize offset = m_accumulatedOffset;
91 m_accumulatedOffset = LayoutSize();
113 move(LayoutSize(transformFromContainer.e(), transformFromContainer.f()), accumulate);
H A DTransformOperations.h28 #include "LayoutSize.h"
76 TransformOperations blendByUsingMatrixInterpolation(const TransformOperations& from, double progress, const LayoutSize&) const;
77 TransformOperations blend(const TransformOperations& from, double progress, const LayoutSize&) const;
/macosx-10.10/WebCore-7600.1.25/svg/graphics/
H A DSVGImageCache.h34 class LayoutSize;
47 void setContainerSizeForRenderer(const CachedImageClient*, const LayoutSize&, float);
/macosx-10.10/WebCore-7600.1.25/html/
H A DHTMLAreaElement.h42 bool mapMouseEvent(LayoutPoint location, const LayoutSize&, HitTestResult&);
64 Path getRegion(const LayoutSize&) const;
70 LayoutSize m_lastSize;
H A DHTMLMapElement.h41 bool mapMouseEvent(LayoutPoint location, const LayoutSize&, HitTestResult&);
H A DImageDocument.h59 LayoutSize imageSize();
/macosx-10.10/WebCore-7600.1.25/rendering/shapes/
H A DBoxShape.cpp51 static inline LayoutSize computeMarginBoxShapeRadius(const LayoutSize& radius, const LayoutSize& adjacentMargins)
53 return LayoutSize(adjustRadiusForMarginBoxShape(radius.width(), adjacentMargins.width()),
59 return RoundedRect::Radii(computeMarginBoxShapeRadius(radii.topLeft(), LayoutSize(renderer.marginLeft(), renderer.marginTop())),
60 computeMarginBoxShapeRadius(radii.topRight(), LayoutSize(renderer.marginRight(), renderer.marginTop())),
61 computeMarginBoxShapeRadius(radii.bottomLeft(), LayoutSize(renderer.marginLeft(), renderer.marginBottom())),
62 computeMarginBoxShapeRadius(radii.bottomRight(), LayoutSize(renderer.marginRight(), renderer.marginBottom())));

Completed in 146 milliseconds

123456