HomeSort by relevance Sort by last modified time
    Searched refs:outlineWidth (Results 1 - 24 of 24) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/paint/
InlinePainter.cpp 74 int outlineWidth = styleToUse->outlineWidth();
92 pixelSnappedBox.x() - outlineWidth,
93 pixelSnappedBox.y() - (lastline.isEmpty() || thisline.x() < lastline.x() || (lastline.maxX() - 1) <= thisline.x() ? outlineWidth : 0),
95 pixelSnappedBox.maxY() + (nextline.isEmpty() || thisline.x() <= nextline.x() || (nextline.maxX() - 1) <= thisline.x() ? outlineWidth : 0),
98 (lastline.isEmpty() || thisline.x() < lastline.x() || (lastline.maxX() - 1) <= thisline.x() ? outlineWidth : -outlineWidth),
99 (nextline.isEmpty() || thisline.x() <= nextline.x() || (nextline.maxX() - 1) <= thisline.x() ? outlineWidth : -outlineWidth),
105 pixelSnappedBox.y() - (lastline.isEmpty() || lastline.maxX() < thisline.maxX() || (thisline.maxX() - 1) <= lastline.x() ? outlineWidth : 0)
    [all...]
ObjectPainter.cpp 25 paintInfo.context->drawFocusRing(focusRingIntRects, style->outlineWidth(), style->outlineOffset(), m_renderObject.resolveColor(style, CSSPropertyOutlineColor));
34 LayoutUnit outlineWidth = styleToUse->outlineWidth();
53 outer.inflate(outlineWidth);
87 drawLineForBoxSide(graphicsContext, leftOuter, topOuter, leftInner, bottomOuter, BSLeft, outlineColor, outlineStyle, outlineWidth, outlineWidth);
88 drawLineForBoxSide(graphicsContext, leftOuter, topOuter, rightOuter, topInner, BSTop, outlineColor, outlineStyle, outlineWidth, outlineWidth);
89 drawLineForBoxSide(graphicsContext, rightInner, topOuter, rightOuter, bottomOuter, BSRight, outlineColor, outlineStyle, outlineWidth, outlineWidth);
    [all...]
ImagePainter.cpp 58 unsigned short outlineWidth = areaElementStyle->outlineWidth();
59 if (!outlineWidth)
66 paintInfo.context->drawFocusRing(path, outlineWidth,
SVGImagePainter.cpp 52 if (m_renderSVGImage.style()->outlineWidth())
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
RenderSVGForeignObject.cpp 124 r.inflate(style()->outlineWidth());
RenderSVGContainer.cpp 150 if (paintInfo.phase == PaintPhaseForeground && style()->outlineWidth() && style()->visibility() == VISIBLE) {
RenderSVGShape.cpp 291 if (style()->outlineWidth())
RenderSVGText.cpp 100 paintInvalidationRect.inflate(style()->outlineWidth());
SVGRenderSupport.cpp 57 paintInvalidationRect.inflate(object->style()->outlineWidth());
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderImage.cpp 292 unsigned short outlineWidth = areaElementStyle->outlineWidth();
296 paintInvalidationRect.inflate(outlineWidth);
RenderInline.h 149 virtual LayoutRect rectWithOutlineForPaintInvalidation(const RenderLayerModelObject* paintInvalidationContainer, LayoutUnit outlineWidth, const PaintInvalidationState* = 0) const OVERRIDE FINAL;
RenderInline.cpp     [all...]
RenderBlock.h 387 virtual LayoutRect rectWithOutlineForPaintInvalidation(const RenderLayerModelObject* paintInvalidationContainer, LayoutUnit outlineWidth, const PaintInvalidationState* = 0) const OVERRIDE FINAL;
RenderReplaced.cpp 129 if ((paintInfo.phase == PaintPhaseOutline || paintInfo.phase == PaintPhaseSelfOutline) && style()->outlineWidth())
RenderObject.cpp     [all...]
RenderObject.h     [all...]
RenderBlock.cpp     [all...]
RenderBox.cpp     [all...]
  /frameworks/av/cmds/screenrecord/
TextRenderer.cpp 173 width += (glyphWidth - 1 - FontBitmap::outlineWidth) * mScale;
244 x += (glyphWidth - 1 - FontBitmap::outlineWidth) * mScale;
FontBitmap.h 9 static const uint32_t outlineWidth = 1;
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/animation/css/
CSSPropertyEquality.cpp 189 return a.outlineWidth() == b.outlineWidth();
CSSAnimatableValueFactory.cpp 397 return createFromDouble(style.outlineWidth());
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
RenderStyle.h 517 unsigned short outlineSize() const { return max(0, outlineWidth() + outlineOffset()); }
518 unsigned short outlineWidth() const
524 bool hasOutline() const { return outlineWidth() > 0 && outlineStyle() > BHIDDEN; }
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSComputedStyleDeclaration.cpp     [all...]

Completed in 628 milliseconds