OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:includeLogicalLeftEdge
(Results
1 - 8
of
8
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderBoxModelObject.h
165
void paintBorder(const PaintInfo&, const LayoutRect&, const RenderStyle*, BackgroundBleedAvoidance = BackgroundBleedNone, bool
includeLogicalLeftEdge
= true, bool includeLogicalRightEdge = true);
167
void paintBoxShadow(const PaintInfo&, const LayoutRect&, const RenderStyle*, ShadowStyle, bool
includeLogicalLeftEdge
= true, bool includeLogicalRightEdge = true);
258
void getBorderEdgeInfo(class BorderEdge[], const RenderStyle*, bool
includeLogicalLeftEdge
= true, bool includeLogicalRightEdge = true) const;
261
RoundedRect backgroundRoundedRectAdjustedForBleedAvoidance(GraphicsContext*, const LayoutRect&, BackgroundBleedAvoidance, InlineFlowBox*, const LayoutSize&, bool
includeLogicalLeftEdge
, bool includeLogicalRightEdge) const;
318
bool
includeLogicalLeftEdge
, bool includeLogicalRightEdge) const;
327
const Path*, BackgroundBleedAvoidance, bool
includeLogicalLeftEdge
, bool includeLogicalRightEdge, bool antialias, const Color* overrideColor = 0);
329
const class BorderEdge[], BorderEdgeFlags, BackgroundBleedAvoidance, bool
includeLogicalLeftEdge
, bool includeLogicalRightEdge, bool antialias = false);
332
bool
includeLogicalLeftEdge
, bool includeLogicalRightEdge, bool antialias = false, const Color* overrideColor = 0);
335
Color, EBorderStyle, BackgroundBleedAvoidance, bool
includeLogicalLeftEdge
, bool includeLogicalRightEdge);
RenderBoxModelObject.cpp
433
bool
includeLogicalLeftEdge
, bool includeLogicalRightEdge) const
436
RoundedRect border = style()->getRoundedBorderFor(borderRect, renderView,
includeLogicalLeftEdge
, includeLogicalRightEdge);
438
RoundedRect segmentBorder = style()->getRoundedBorderFor(LayoutRect(0, 0, inlineBoxWidth, inlineBoxHeight), renderView,
includeLogicalLeftEdge
, includeLogicalRightEdge);
492
RoundedRect RenderBoxModelObject::backgroundRoundedRectAdjustedForBleedAvoidance(GraphicsContext* context, const LayoutRect& borderRect, BackgroundBleedAvoidance bleedAvoidance, InlineFlowBox* box, const LayoutSize& boxSize, bool
includeLogicalLeftEdge
, bool includeLogicalRightEdge) const
496
return getBackgroundRoundedRect(shrinkRectByOnePixel(context, borderRect), box, boxSize.width(), boxSize.height(),
includeLogicalLeftEdge
, includeLogicalRightEdge);
499
return style()->getRoundedInnerBorderFor(borderRect,
includeLogicalLeftEdge
, includeLogicalRightEdge);
501
return getBackgroundRoundedRect(borderRect, box, boxSize.width(), boxSize.height(),
includeLogicalLeftEdge
, includeLogicalRightEdge);
526
bool includeLeftEdge = box ? box->
includeLogicalLeftEdge
() : true;
[
all
...]
InlineFlowBox.h
129
if (!
includeLogicalLeftEdge
())
141
if (!
includeLogicalLeftEdge
())
153
if (!
includeLogicalLeftEdge
())
164
bool
includeLogicalLeftEdge
() const { return m_includeLogicalLeftEdge; }
InlineFlowBox.cpp
[
all
...]
/external/chromium_org/third_party/WebKit/Source/platform/geometry/
RoundedRect.h
62
void includeLogicalEdges(const Radii& edges, bool isHorizontal, bool
includeLogicalLeftEdge
, bool includeLogicalRightEdge);
99
void includeLogicalEdges(const Radii& edges, bool isHorizontal, bool
includeLogicalLeftEdge
, bool includeLogicalRightEdge);
RoundedRect.cpp
99
void RoundedRect::Radii::includeLogicalEdges(const RoundedRect::Radii& edges, bool isHorizontal, bool
includeLogicalLeftEdge
, bool includeLogicalRightEdge)
101
if (
includeLogicalLeftEdge
) {
164
void RoundedRect::includeLogicalEdges(const Radii& edges, bool isHorizontal, bool
includeLogicalLeftEdge
, bool includeLogicalRightEdge)
166
m_radii.includeLogicalEdges(edges, isHorizontal,
includeLogicalLeftEdge
, includeLogicalRightEdge);
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
RenderStyle.cpp
[
all
...]
RenderStyle.h
[
all
...]
Completed in 101 milliseconds