OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:layoutsize
(Results
26 - 50
of
146
) sorted by null
1
2
3
4
5
6
/external/chromium_org/third_party/WebKit/Source/platform/geometry/
FloatSize.cpp
32
#include "platform/geometry/
LayoutSize
.h"
44
FloatSize::FloatSize(const
LayoutSize
& size) : m_width(size.width()), m_height(size.height())
/external/chromium_org/third_party/WebKit/Source/core/html/
HTMLAreaElement.cpp
76
m_lastSize =
LayoutSize
(-1, -1);
79
bool HTMLAreaElement::mapMouseEvent(LayoutPoint location, const
LayoutSize
& size, HitTestResult& result)
103
LayoutSize
size = m_lastSize;
124
Path HTMLAreaElement::getRegion(const
LayoutSize
& size) const
HTMLMapElement.h
40
bool mapMouseEvent(LayoutPoint location, const
LayoutSize
&, HitTestResult&);
/external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderView.h
120
LayoutSize
layoutDelta() const
122
return m_layoutState ? m_layoutState->m_layoutDelta :
LayoutSize
();
124
void addLayoutDelta(const
LayoutSize
& delta)
136
bool layoutDeltaMatches(const
LayoutSize
& delta)
226
bool pushLayoutState(RenderBox* renderer, const
LayoutSize
& offset, LayoutUnit pageHeight = 0, bool pageHeightChanged = false, ColumnInfo* colInfo = 0)
311
LayoutStateMaintainer(RenderView* view, RenderBox* root,
LayoutSize
offset, bool disableState = false, LayoutUnit pageHeight = 0, bool pageHeightChanged = false, ColumnInfo* colInfo = 0)
336
void push(RenderBox* root,
LayoutSize
offset, LayoutUnit pageHeight = 0, bool pageHeightChanged = false, ColumnInfo* colInfo = 0)
RenderVideo.cpp
74
LayoutSize
size = calculateIntrinsicSize();
89
LayoutSize
RenderVideo::calculateIntrinsicSize()
104
LayoutSize
size = player->naturalSize();
117
return
LayoutSize
(defaultSize().width(), 1);
139
const
LayoutSize
* overriddenIntrinsicSize = 0;
RenderBox.h
132
void setLogicalSize(const
LayoutSize
& size)
141
LayoutSize
locationOffset() const { return
LayoutSize
(x(), y()); }
142
LayoutSize
size() const { return m_frameRect.size(); }
147
void setSize(const
LayoutSize
& size) { m_frameRect.setSize(size); }
188
LayoutSize
maxLayoutOverflow() const { return
LayoutSize
(layoutOverflowRect().maxX(), layoutOverflowRect().maxY()); }
208
void addOverflowFromChild(RenderBox* child, const
LayoutSize
& delta);
345
virtual
LayoutSize
offsetFromContainer(RenderObject*, const LayoutPoint&, bool* offsetDependsOnPoint = 0) const;
416
virtual
LayoutSize
intrinsicSize() const { return LayoutSize();
[
all
...]
RenderBoxModelObject.h
66
LayoutSize
relativePositionOffset() const;
67
LayoutSize
relativePositionLogicalOffset() const { return style()->isHorizontalWritingMode() ? relativePositionOffset() : relativePositionOffset().transposedSize(); }
70
LayoutSize
stickyPositionOffset() const;
71
LayoutSize
stickyPositionLogicalOffset() const { return style()->isHorizontalWritingMode() ? stickyPositionOffset() : stickyPositionOffset().transposedSize(); }
73
LayoutSize
offsetForInFlowPosition() const;
168
void paintFillLayerExtended(const PaintInfo&, const Color&, const FillLayer*, const LayoutRect&, BackgroundBleedAvoidance, InlineFlowBox* = 0, const
LayoutSize
& =
LayoutSize
(), CompositeOperator = CompositeSourceOver, RenderObject* backgroundObject = 0);
261
RoundedRect backgroundRoundedRectAdjustedForBleedAvoidance(GraphicsContext*, const LayoutRect&, BackgroundBleedAvoidance, InlineFlowBox*, const
LayoutSize
&, bool includeLogicalLeftEdge, bool includeLogicalRightEdge) const;
264
bool shouldPaintAtLowQuality(GraphicsContext*, Image*, const void*, const
LayoutSize
&);
RenderBlock.h
226
LayoutUnit blockDirectionOffset(const
LayoutSize
& offsetFromBlock) const;
227
LayoutUnit inlineDirectionOffset(const
LayoutSize
& offsetFromBlock) const;
233
LayoutRect logicalLeftSelectionGap(RenderBlock* rootBlock, const LayoutPoint& rootBlockPhysicalPosition, const
LayoutSize
& offsetFromRootBlock,
235
LayoutRect logicalRightSelectionGap(RenderBlock* rootBlock, const LayoutPoint& rootBlockPhysicalPosition, const
LayoutSize
& offsetFromRootBlock,
238
RenderBlock* blockBeforeWithinSelectionRoot(
LayoutSize
& offset) const;
249
virtual void adjustForColumns(
LayoutSize
&, const LayoutPoint&) const OVERRIDE FINAL;
250
void adjustForColumnRect(
LayoutSize
& offset, const LayoutPoint& locationInContainer) const;
383
LayoutSize
logicalOffsetFromShapeAncestorContainer(const RenderBlock* container) const;
488
void relayoutShapeDescendantIfMoved(RenderBlock* child,
LayoutSize
offset);
568
GapRects selectionGaps(RenderBlock* rootBlock, const LayoutPoint& rootBlockPhysicalPosition, const
LayoutSize
& offsetFromRootBlock
[
all
...]
HitTestLocation.h
54
HitTestLocation(const HitTestLocation&, const
LayoutSize
& offset, RenderRegion* = 0);
85
void move(const
LayoutSize
& offset);
LayerPaintingInfo.h
76
PaintBehavior inPaintBehavior, const
LayoutSize
& inSubPixelAccumulation,
91
LayoutSize
subPixelAccumulation;
RenderBlockFlow.h
81
LayoutSize
logicalSizeForFloat(const FloatingObject* floatingObject) const { return isHorizontalWritingMode() ?
LayoutSize
(floatingObject->width(), floatingObject->height()) :
LayoutSize
(floatingObject->height(), floatingObject->width()); }
157
GapRects inlineSelectionGaps(RenderBlock* rootBlock, const LayoutPoint& rootBlockPhysicalPosition, const
LayoutSize
& offsetFromRootBlock,
232
virtual void clipOutFloatingObjects(RenderBlock*, const PaintInfo*, const LayoutPoint&, const
LayoutSize
&) OVERRIDE;
423
void updateShapeAndSegmentsForCurrentLine(ShapeInsideInfo*&, const
LayoutSize
&, LineLayoutState&);
RenderEmbeddedObject.cpp
197
LayoutSize
oldSize = contentBoxRect().size();
229
LayoutSize
newSize = contentBoxRect().size();
238
childBox->setLocation(LayoutPoint(borderLeft(), borderTop()) +
LayoutSize
(paddingLeft(), paddingTop()));
/external/chromium_org/third_party/WebKit/Source/core/rendering/shapes/
BoxShapeTest.cpp
42
PassOwnPtr<Shape> createBoxShape(const
LayoutSize
& size, float shapeMargin, float shapePadding)
72
OwnPtr<Shape> shape = createBoxShape(
LayoutSize
(100, 50), 10, 20);
BoxShape.h
51
virtual bool firstIncludedIntervalLogicalTop(LayoutUnit minLogicalIntervalTop, const
LayoutSize
& minLogicalIntervalSize, LayoutUnit&) const OVERRIDE;
ShapeInfo.h
95
LayoutSize
newLogicalSize(logicalWidth, logicalHeight);
121
LayoutSize
shapeSize() const { return m_shapeLogicalSize; }
173
LayoutSize
m_shapeLogicalSize;
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
StyleFetchedImageSet.cpp
70
LayoutSize
StyleFetchedImageSet::imageSize(const RenderObject* renderer, float multiplier) const
72
LayoutSize
scaledImageSize = m_bestFitImage->imageSizeForRenderer(renderer, multiplier);
StyleFetchedImageSet.h
32
#include "platform/geometry/
LayoutSize
.h"
62
virtual
LayoutSize
imageSize(const RenderObject*, float multiplier) const;
StyleImage.h
29
#include "platform/geometry/
LayoutSize
.h"
57
virtual
LayoutSize
imageSize(const RenderObject*, float multiplier) const = 0;
StylePendingImage.h
54
virtual
LayoutSize
imageSize(const RenderObject*, float /*multiplier*/) const OVERRIDE { return
LayoutSize
(); }
StyleGeneratedImage.h
45
virtual
LayoutSize
imageSize(const RenderObject*, float multiplier) const OVERRIDE;
/external/chromium_org/third_party/WebKit/Source/core/dom/
ElementRareData.cpp
43
LayoutSize
sizeForResizing;
ElementRareData.h
128
LayoutSize
minimumSizeForResizing() const { return m_minimumSizeForResizing; }
129
void setMinimumSizeForResizing(
LayoutSize
size) { m_minimumSizeForResizing = size; }
179
LayoutSize
m_minimumSizeForResizing;
/external/chromium_org/third_party/WebKit/Source/core/page/
PageScaleConstraints.h
39
FloatSize
layoutSize
;
/external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/custom/
CustomFilterParameterList.h
34
#include "platform/geometry/
LayoutSize
.h"
/external/chromium_org/third_party/WebKit/Source/web/
PageScaleConstraintsSet.cpp
155
float adjustedLayoutSizeWidth = m_pageDefinedConstraints.
layoutSize
.width();
156
float adjustedLayoutSizeHeight = m_pageDefinedConstraints.
layoutSize
.height();
206
m_pageDefinedConstraints.
layoutSize
.setWidth(adjustedLayoutSizeWidth);
207
m_pageDefinedConstraints.
layoutSize
.setHeight(adjustedLayoutSizeHeight);
Completed in 210 milliseconds
1
2
3
4
5
6