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

1 2

  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
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());
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...]
RenderSVGShape.cpp 364 FloatRect RenderSVGShape::markerRect(float strokeWidth) const
380 boundaries.unite(marker->markerBoundaries(marker->markerTransformation(m_markerPositions[i].origin, m_markerPositions[i].angle, strokeWidth)));
412 strokeBoundingBox.unite(markerRect(strokeWidth()));
420 if (strokeWidth() < 1.0f)
425 float RenderSVGShape::strokeWidth() const
428 return style()->svgStyle()->strokeWidth().value(lengthContext);
454 float strokeWidth = this->strokeWidth();
458 marker->draw(paintInfo, marker->markerTransformation(m_markerPositions[i].origin, m_markerPositions[i].angle, strokeWidth));
SVGRenderTreeAsText.cpp 271 double strokeWidth = svgStyle->strokeWidth().value(lengthContext);
280 writeIfNotDefault(ts, "stroke width", strokeWidth, 1.0);
  /developers/build/prebuilts/gradle/RenderScriptIntrinsic/RenderScriptIntrinsicSample/src/main/java/com/example/android/renderscriptintrinsic/
ThumbnailRadioButton.java 65 int strokeWidth = 24;
70 rectChecked.getPaint().setStrokeWidth(strokeWidth);
71 rectChecked.setIntrinsicWidth(bitmap.getWidth() + strokeWidth);
72 rectChecked.setIntrinsicHeight(bitmap.getHeight() + strokeWidth);
80 rectUnchecked.getPaint().setStrokeWidth(strokeWidth);
81 rectUnchecked.setIntrinsicWidth(bitmap.getWidth() + strokeWidth);
82 rectUnchecked.setIntrinsicHeight(bitmap.getHeight() + strokeWidth);
  /developers/samples/android/renderScript/RenderScriptIntrinsic/RenderScriptIntrinsicSample/src/main/java/com/example/android/renderscriptintrinsic/
ThumbnailRadioButton.java 65 int strokeWidth = 24;
70 rectChecked.getPaint().setStrokeWidth(strokeWidth);
71 rectChecked.setIntrinsicWidth(bitmap.getWidth() + strokeWidth);
72 rectChecked.setIntrinsicHeight(bitmap.getHeight() + strokeWidth);
80 rectUnchecked.getPaint().setStrokeWidth(strokeWidth);
81 rectUnchecked.setIntrinsicWidth(bitmap.getWidth() + strokeWidth);
82 rectUnchecked.setIntrinsicHeight(bitmap.getHeight() + strokeWidth);
  /external/chromium_org/third_party/skia/src/core/
SkDrawProcs.h 78 bool SkDrawTreatAAStrokeAsHairline(SkScalar strokeWidth, const SkMatrix&,
93 SkScalar strokeWidth = paint.getStrokeWidth();
94 if (0 == strokeWidth) {
103 return SkDrawTreatAAStrokeAsHairline(strokeWidth, matrix, coverage);
SkPicturePlayback.cpp     [all...]
SkPaint.cpp     [all...]
  /external/skia/gm/
ninepatchstretch.cpp 40 const SkScalar strokeWidth = SkIntToScalar(6);
41 const SkScalar radius = SkIntToScalar(kFixed) - strokeWidth/2;
  /external/skia/src/core/
SkDrawProcs.h 78 bool SkDrawTreatAAStrokeAsHairline(SkScalar strokeWidth, const SkMatrix&,
93 SkScalar strokeWidth = paint.getStrokeWidth();
94 if (0 == strokeWidth) {
103 return SkDrawTreatAAStrokeAsHairline(strokeWidth, matrix, coverage);
SkPicturePlayback.cpp     [all...]
SkPaint.cpp     [all...]
  /external/chromium_org/third_party/skia/src/animator/
SkDrawPaint.h 58 SkScalar strokeWidth;
  /external/skia/src/animator/
SkDrawPaint.h 58 SkScalar strokeWidth;
  /external/skia/tests/
BlurTest.cpp 27 static const int strokeWidth = 4;
57 { 50 + strokeWidth/2, 50 + strokeWidth/2, 100, 100 },
59 { 40, strokeWidth, 60, 50 - strokeWidth },
103 paint.setStrokeWidth(SkIntToScalar(strokeWidth));
  /frameworks/base/libs/hwui/
PathCache.h 115 float 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 507 SkScalar strokeWidth = vm.mapRadius(stroke.getWidth());
532 if (SkScalarNearlyZero(strokeWidth)) {
535 halfWidth = SkScalarHalf(strokeWidth);
628 SkScalar strokeWidth = stroke.getWidth();
629 scaledStroke.fX = SkScalarAbs(strokeWidth*(vm[SkMatrix::kMScaleX] + vm[SkMatrix::kMSkewY]));
630 scaledStroke.fY = SkScalarAbs(strokeWidth*(vm[SkMatrix::kMSkewX] + vm[SkMatrix::kMScaleY]));
754 SkScalar strokeWidth = stroke.getWidth();
756 if (SkScalarNearlyZero(strokeWidth)) {
757 strokeWidth = SK_ScalarHalf;
759 strokeWidth *= SK_ScalarHalf
    [all...]
  /external/skia/src/gpu/
GrOvalRenderer.cpp 507 SkScalar strokeWidth = vm.mapRadius(stroke.getWidth());
532 if (SkScalarNearlyZero(strokeWidth)) {
535 halfWidth = SkScalarHalf(strokeWidth);
628 SkScalar strokeWidth = stroke.getWidth();
629 scaledStroke.fX = SkScalarAbs(strokeWidth*(vm[SkMatrix::kMScaleX] + vm[SkMatrix::kMSkewY]));
630 scaledStroke.fY = SkScalarAbs(strokeWidth*(vm[SkMatrix::kMSkewX] + vm[SkMatrix::kMScaleY]));
754 SkScalar strokeWidth = stroke.getWidth();
756 if (SkScalarNearlyZero(strokeWidth)) {
757 strokeWidth = SK_ScalarHalf;
759 strokeWidth *= SK_ScalarHalf
    [all...]
  /frameworks/base/core/jni/android/graphics/
Canvas.cpp 810 float strokeWidth = fmax(textSize * kStdUnderline_Thickness, 1.0f);
813 - 0.5f * strokeWidth);
815 + 0.5f * strokeWidth);
820 - 0.5f * strokeWidth);
822 + 0.5f * strokeWidth);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
InlineTextBox.cpp 612 float strokeWidth = pseudoStyle->textStrokeWidth();
613 if (strokeWidth != selectionStrokeWidth) {
616 selectionStrokeWidth = strokeWidth;
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
SVGRenderStyle.h 331 SVGLength strokeWidth() const { return stroke->width; }
363 bool hasVisibleStroke() const { return hasStroke() && !strokeWidth().isZero(); }
  /external/chromium_org/third_party/skia/src/pdf/
SkPDFDevice.cpp 893 SkScalar strokeWidth = paint->getStrokeWidth();
894 SkScalar halfStroke = SkScalarHalf(strokeWidth);
    [all...]
  /external/skia/src/pdf/
SkPDFDevice.cpp 893 SkScalar strokeWidth = paint->getStrokeWidth();
894 SkScalar halfStroke = SkScalarHalf(strokeWidth);
    [all...]

Completed in 501 milliseconds

1 2