HomeSort by relevance Sort by last modified time
    Searched refs:strokeWidth (Results 1 - 25 of 58) sorted by null

1 2 3

  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
RenderSVGPath.cpp 60 float strokeWidth = this->strokeWidth();
62 strokeBoundingBox.unite(zeroLengthSubpathRect(m_zeroLengthLinecapLocations[i], strokeWidth));
112 float strokeWidth = this->strokeWidth();
114 if (zeroLengthSubpathRect(m_zeroLengthLinecapLocations[i], strokeWidth).contains(point))
119 if (radiusVector.lengthSquared() < strokeWidth * strokeWidth * .25f)
139 tempPath.addRect(zeroLengthSubpathRect(linecapPosition, this->strokeWidth()));
141 tempPath.addEllipse(zeroLengthSubpathRect(linecapPosition, this->strokeWidth()));
    [all...]
RenderSVGRect.cpp 77 float strokeWidth = this->strokeWidth();
78 m_innerStrokeRect.inflate(-strokeWidth / 2);
79 m_outerStrokeRect.inflate(strokeWidth / 2);
105 context->strokeRect(m_fillBoundingBox, strokeWidth());
RenderSVGResourceMarker.h 55 AffineTransform markerTransformation(const FloatPoint& origin, float angle, float strokeWidth) const;
69 // acording to SVGs markerUnits="strokeWidth" concept, when a strokeWidth value != -1 is passed in.
70 AffineTransform markerContentTransformation(const AffineTransform& contentTransformation, const FloatPoint& origin, float strokeWidth = -1) const;
RenderSVGResourceMarker.cpp 115 AffineTransform RenderSVGResourceMarker::markerTransformation(const FloatPoint& origin, float autoAngle, float strokeWidth) const
126 transform = markerContentTransformation(transform, referencePoint(), useStrokeWidth ? strokeWidth : -1);
144 AffineTransform RenderSVGResourceMarker::markerContentTransformation(const AffineTransform& contentTransformation, const FloatPoint& origin, float strokeWidth) const
150 if (strokeWidth != -1)
151 transformation.scaleNonUniform(strokeWidth, strokeWidth);
RenderSVGShape.cpp 352 FloatRect RenderSVGShape::markerRect(float strokeWidth) const
368 boundaries.unite(marker->markerBoundaries(marker->markerTransformation(m_markerPositions[i].origin, m_markerPositions[i].angle, strokeWidth)));
400 strokeBoundingBox.unite(markerRect(strokeWidth()));
411 float RenderSVGShape::strokeWidth() const
415 return style()->svgStyle()->strokeWidth().value(lengthContext);
441 float strokeWidth = this->strokeWidth();
445 marker->draw(paintInfo, marker->markerTransformation(m_markerPositions[i].origin, m_markerPositions[i].angle, strokeWidth));
RenderSVGShape.h 69 float strokeWidth() const;
107 FloatRect markerRect(float strokeWidth) const;
RenderSVGEllipse.cpp 73 m_strokeBoundingBox.inflate(strokeWidth() / 2);
128 float halfStrokeWidth = strokeWidth() / 2;
  /external/chromium_org/third_party/molokocacao/
NSBezierPath+MCAdditions.h 17 - (NSBezierPath*)pathWithStrokeWidth:(CGFloat)strokeWidth;
  /external/skia/bench/
SkBenchmark.h 86 strokeWidth = width;
91 return strokeWidth;
151 SkScalar strokeWidth;
DashBench.cpp 23 * 2. strokewidth == 0, 1, 2
25 * 4. dots [1,1] ([N,N] where N=strokeWidth?) or arbitrary (e.g. [2,1] or [1,2,3,2])
219 * We try to special case square dashes (intervals are equal to strokewidth).
274 DrawPointsDashingBench(void* param, int dashLength, int strokeWidth, bool doAA)
276 fName.printf("drawpointsdash_%d_%d%s", dashLength, strokeWidth, doAA ? "_aa" : "_bw");
277 fStrokeWidth = strokeWidth;
  /external/skia/tests/
BlurTest.cpp 20 static const int strokeWidth = 4;
50 { 50 + strokeWidth/2, 50 + strokeWidth/2, 100, 100 },
52 { 40, strokeWidth, 60, 50 - strokeWidth },
96 paint.setStrokeWidth(SkIntToScalar(strokeWidth));
  /external/skia/gm/
shadows.cpp 15 static void setup(SkPaint* paint, SkColor c, SkScalar strokeWidth) {
17 if (strokeWidth < 0) {
21 paint->setStrokeWidth(strokeWidth);
ninepatchstretch.cpp 40 const SkScalar strokeWidth = SkIntToScalar(6);
41 const SkScalar radius = SkIntToScalar(kFixed) - strokeWidth/2;
dashing.cpp 192 int strokeWidth,
197 p.setStrokeWidth(SkIntToScalar(strokeWidth));
209 for (int y = 0; y < 100; y += 10*strokeWidth) {
218 for (int x = 0; x < 100; x += 14*strokeWidth) {
linepaths.cpp 28 SkScalar strokeWidth) {
32 paint.setStrokeWidth(strokeWidth);
169 SkScalar strokeWidth) {
173 paint.setStrokeWidth(strokeWidth);
quadpaths.cpp 28 SkScalar strokeWidth) {
32 paint.setStrokeWidth(strokeWidth);
170 SkScalar strokeWidth) {
174 paint.setStrokeWidth(strokeWidth);
cubicpaths.cpp 67 SkScalar strokeWidth) {
71 paint.setStrokeWidth(strokeWidth);
210 SkScalar strokeWidth) {
214 paint.setStrokeWidth(strokeWidth);
  /external/chromium_org/third_party/skia/src/animator/
SkDrawPaint.h 58 SkScalar strokeWidth;
SkDrawPaint.cpp 54 SK_MEMBER(strokeWidth, Float),
73 strokeWidth(SK_ScalarNaN), style((SkPaint::Style) -1),
251 if (SkScalarIsNaN(strokeWidth) == false)
252 paint->setStrokeWidth(strokeWidth);
  /external/skia/src/animator/
SkDrawPaint.h 58 SkScalar strokeWidth;
SkDrawPaint.cpp 54 SK_MEMBER(strokeWidth, Float),
73 strokeWidth(SK_ScalarNaN), style((SkPaint::Style) -1),
251 if (SkScalarIsNaN(strokeWidth) == false)
252 paint->setStrokeWidth(strokeWidth);
  /packages/apps/Settings/src/com/android/settings/users/
CircleFramedDrawable.java 61 float strokeWidth = res.getDimension(R.dimen.circle_avatar_frame_stroke_width);
68 (int) iconSize, frameColor, strokeWidth, frameShadowColor, shadowRadius,
74 int frameColor, float strokeWidth,
82 mStrokeWidth = strokeWidth;
  /external/chromium_org/third_party/skia/src/gpu/
GrOvalRenderer.cpp 341 SkScalar strokeWidth = vm.mapRadius(stroke.getWidth());
370 if (SkScalarNearlyZero(strokeWidth)) {
373 halfWidth = SkScalarHalf(strokeWidth);
460 SkScalar strokeWidth = stroke.getWidth();
461 scaledStroke.fX = SkScalarAbs(strokeWidth*(vm[SkMatrix::kMScaleX] + vm[SkMatrix::kMSkewY]));
462 scaledStroke.fY = SkScalarAbs(strokeWidth*(vm[SkMatrix::kMSkewX] + vm[SkMatrix::kMScaleY]));
638 SkScalar strokeWidth = stroke.getWidth();
639 scaledStroke.fX = SkScalarAbs(strokeWidth*(vm[SkMatrix::kMScaleX] + vm[SkMatrix::kMSkewY]));
640 scaledStroke.fY = SkScalarAbs(strokeWidth*(vm[SkMatrix::kMSkewX] + vm[SkMatrix::kMScaleY]));
642 // if half of strokewidth is greater than radius, we don't handle that right no
    [all...]
  /external/skia/src/gpu/
GrOvalRenderer.cpp 341 SkScalar strokeWidth = vm.mapRadius(stroke.getWidth());
370 if (SkScalarNearlyZero(strokeWidth)) {
373 halfWidth = SkScalarHalf(strokeWidth);
460 SkScalar strokeWidth = stroke.getWidth();
461 scaledStroke.fX = SkScalarAbs(strokeWidth*(vm[SkMatrix::kMScaleX] + vm[SkMatrix::kMSkewY]));
462 scaledStroke.fY = SkScalarAbs(strokeWidth*(vm[SkMatrix::kMSkewX] + vm[SkMatrix::kMScaleY]));
638 SkScalar strokeWidth = stroke.getWidth();
639 scaledStroke.fX = SkScalarAbs(strokeWidth*(vm[SkMatrix::kMScaleX] + vm[SkMatrix::kMSkewY]));
640 scaledStroke.fY = SkScalarAbs(strokeWidth*(vm[SkMatrix::kMSkewX] + vm[SkMatrix::kMScaleY]));
642 // if half of strokewidth is greater than radius, we don't handle that right no
    [all...]
  /frameworks/base/packages/Keyguard/src/com/android/keyguard/
KeyguardCircleFramedDrawable.java 53 int frameColor, float strokeWidth,
61 mStrokeWidth = strokeWidth;

Completed in 2251 milliseconds

1 2 3