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

1 2

  /cts/tests/tests/graphics/src/android/graphics/cts/
Paint_JoinTest.java 51 // and get the setting result by getStrokeJoin
54 assertEquals(Join.MITER, p.getStrokeJoin());
56 assertEquals(Join.ROUND, p.getStrokeJoin());
58 assertEquals(Join.BEVEL, p.getStrokeJoin());
  /external/skia/src/core/
SkStrokeRec.cpp 64 fJoin = paint.getStrokeJoin();
144 return GetInflationRadius(paint.getStrokeJoin(), paint.getStrokeMiter(), paint.getStrokeCap(),
SkPaint.cpp 285 packed |= shift_bits(paint.getStrokeJoin(), 18, 2);
  /external/skqp/src/core/
SkStrokeRec.cpp 64 fJoin = paint.getStrokeJoin();
144 return GetInflationRadius(paint.getStrokeJoin(), paint.getStrokeMiter(), paint.getStrokeCap(),
  /external/skia/bench/
StrokeBench.cpp 20 pathType, paint.getStrokeWidth(), paint.getStrokeJoin(), paint.getStrokeCap());
  /external/skia/src/pdf/
SkPDFGraphicState.cpp 78 SkToU8(p.getStrokeJoin()),
  /external/skqp/bench/
StrokeBench.cpp 20 pathType, paint.getStrokeWidth(), paint.getStrokeJoin(), paint.getStrokeCap());
  /external/skqp/src/pdf/
SkPDFGraphicState.cpp 78 SkToU8(p.getStrokeJoin()),
  /external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
ShadowPaint.java 137 protected Paint.Join getStrokeJoin() {
  /external/skia/include/core/
SkPaint.h 378 Join getStrokeJoin() const { return (Join)fBitfields.fJoinType; }
  /external/skia/src/c/
sk_paint.cpp 119 if (find_c(AsPaint(*cpaint).getStrokeJoin(), &cjoin)) {
  /external/skia/tests/
EmptyPathTest.cpp 51 paint.getStrokeCap(), paint.getStrokeJoin(),
PaintTest.cpp 184 SkScalar inset = paint.getStrokeJoin() == SkPaint::kMiter_Join ?
  /external/skqp/include/core/
SkPaint.h 376 Join getStrokeJoin() const { return (Join)fBitfields.fJoinType; }
  /external/skqp/src/c/
sk_paint.cpp 119 if (find_c(AsPaint(*cpaint).getStrokeJoin(), &cjoin)) {
  /external/skqp/tests/
EmptyPathTest.cpp 51 paint.getStrokeCap(), paint.getStrokeJoin(),
PaintTest.cpp 184 SkScalar inset = paint.getStrokeJoin() == SkPaint::kMiter_Join ?
  /external/skia/src/effects/
SkLayerDrawLooper.cpp 103 dst->setStrokeJoin(src.getStrokeJoin());
  /external/skqp/experimental/canvaskit/
externs.js 164 getStrokeJoin: function() {},
  /external/skqp/src/effects/
SkLayerDrawLooper.cpp 103 dst->setStrokeJoin(src.getStrokeJoin());
  /external/skia/src/svg/
SkSVGDevice.cpp 301 if (const char* join = svg_join(paint.getStrokeJoin())) {
305 if (paint.getStrokeJoin() == SkPaint::kMiter_Join) {
  /external/skqp/src/svg/
SkSVGDevice.cpp 298 if (const char* join = svg_join(paint.getStrokeJoin())) {
302 if (paint.getStrokeJoin() == SkPaint::kMiter_Join) {
  /external/skia/modules/canvaskit/
externs.js 179 getStrokeJoin: function() {},
  /external/skia/src/gpu/text/
GrTextBlob.cpp 108 fStrokeInfo.fJoin != paint.getStrokeJoin())) {
GrTextBlob.h 109 fStrokeInfo.fJoin = paint.getStrokeJoin();

Completed in 7435 milliseconds

1 2