HomeSort by relevance Sort by last modified time
    Searched full:strokewidth (Results 1 - 25 of 56) sorted by null

1 2 3

  /external/skia/bench/
SkBenchmark.h 59 strokeWidth = width;
64 return strokeWidth;
90 SkScalar strokeWidth;
benchmain.cpp 325 float strokeWidth;
403 } else if (strcmp(*argv, "-strokeWidth") == 0) {
407 if (sscanf(strokeWidthStr, "%f", &strokeWidth) != 1) {
408 log_error("bad arg for -strokeWidth\n");
413 log_error("missing arg for -strokeWidth\n");
478 str.appendf(" strokeWidth=%f", strokeWidth);
480 str.append(" strokeWidth=none");
533 bench->setStrokeWidth(strokeWidth);
  /external/webkit/Source/WebCore/rendering/svg/
RenderSVGResourceMarker.h 56 AffineTransform markerTransformation(const FloatPoint& origin, float angle, float strokeWidth) const;
70 // acording to SVGs markerUnits="strokeWidth" concept, when a strokeWidth value != -1 is passed in.
71 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);
139 AffineTransform RenderSVGResourceMarker::markerContentTransformation(const AffineTransform& contentTransformation, const FloatPoint& origin, float strokeWidth) const
145 if (strokeWidth != -1)
146 transformation.scaleNonUniform(strokeWidth, strokeWidth);
SVGMarkerLayoutInfo.cpp 68 FloatRect SVGMarkerLayoutInfo::calculateBoundaries(RenderSVGResourceMarker* startMarker, RenderSVGResourceMarker* midMarker, RenderSVGResourceMarker* endMarker, float strokeWidth, const Path& path)
72 m_strokeWidth = strokeWidth;
SVGMarkerLayoutInfo.h 52 FloatRect calculateBoundaries(RenderSVGResourceMarker* startMarker, RenderSVGResourceMarker* midMarker, RenderSVGResourceMarker* endMarker, float strokeWidth, const Path&);
  /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 33 const SkScalar strokeWidth = SkIntToScalar(6);
34 const SkScalar radius = SkIntToScalar(kFixed) - strokeWidth/2;
cubicpaths.cpp 28 SkScalar strokeWidth) {
32 paint.setStrokeWidth(strokeWidth);
171 SkScalar strokeWidth) {
175 paint.setStrokeWidth(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);
  /external/skia/tests/
BlurTest.cpp 21 static const int strokeWidth = 4;
51 { 50 + strokeWidth/2, 50 + strokeWidth/2, 100, 100 },
53 { 40, strokeWidth, 60, 50 - strokeWidth },
97 paint.setStrokeWidth(SkIntToScalar(strokeWidth));
  /external/skia/samplecode/
SampleNinePatch.cpp 34 const SkScalar strokeWidth = SkIntToScalar(6);
35 const SkScalar radius = SkIntToScalar(kFixed) - strokeWidth/2;
SampleClip.cpp 65 static void show_stroke(SkCanvas* canvas, bool doAA, SkScalar strokeWidth, int n) {
70 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);
  /frameworks/base/graphics/java/android/graphics/
DashPathEffect.java 26 * controls the length of the dashes. The paint's strokeWidth controls the
PathDashPathEffect.java 36 * strokeWidth does not affect the results.
  /frameworks/base/libs/hwui/font/
Font.h 69 uint32_t strokeWidth);
92 uint32_t scaleX, SkPaint::Style style, uint32_t strokeWidth);
Font.cpp 38 SkPaint::Style style, uint32_t strokeWidth) :
423 SkPaint::Style style, uint32_t strokeWidth) {
431 (style == SkPaint::kFill_Style || font->mStrokeWidth == strokeWidth)) {
437 scaleX, style, strokeWidth);
  /external/freetype/src/cff/
cfftoken.h 40 CFF_FIELD_NUM ( 0x108, stroke_width, "StrokeWidth" )
  /external/skia/src/core/
SkPictureFlat.cpp 180 SkScalar strokeWidth = buffer.readScalar();
181 if (strokeWidth != defaultPaint.getStrokeWidth())
183 "strokeWidth:%g ", SkScalarToFloat(strokeWidth));
  /frameworks/base/policy/src/com/android/internal/policy/impl/keyguard/
KeyguardCircleFramedDrawable.java 53 int frameColor, float strokeWidth,
61 mStrokeWidth = strokeWidth;
  /frameworks/base/libs/hwui/
ShapeCache.h 95 strokeWidth = *(uint32_t*) &v;
106 strokeWidth = *(uint32_t*) &v;
119 uint32_t strokeWidth;
128 LTE_INT(strokeWidth) {
  /external/webkit/Source/WebCore/platform/graphics/
GraphicsContext.cpp 718 void GraphicsContext::adjustLineToPixelBoundaries(FloatPoint& p1, FloatPoint& p2, float strokeWidth, StrokeStyle penStyle)
726 p1.setY(p1.y() + strokeWidth);
727 p2.setY(p2.y() - strokeWidth);
729 p1.setX(p1.x() + strokeWidth);
730 p2.setX(p2.x() - strokeWidth);
734 if (static_cast<int>(strokeWidth) % 2) { //odd

Completed in 2424 milliseconds

1 2 3