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

1 2

  /cts/tests/tests/graphics/src/android/graphics/cts/
Paint_JoinTest.java 41 // and get the setting result by getStrokeJoin
44 assertEquals(Join.MITER, p.getStrokeJoin());
46 assertEquals(Join.ROUND, p.getStrokeJoin());
48 assertEquals(Join.BEVEL, p.getStrokeJoin());
PaintTest.java 303 assertEquals(Join.BEVEL, p.getStrokeJoin());
306 assertEquals(Join.MITER, p.getStrokeJoin());
309 assertEquals(Join.ROUND, p.getStrokeJoin());
  /external/skia/src/pdf/
SkPDFGraphicState.cpp 216 SkASSERT(fPaint.getStrokeJoin() >= 0 && fPaint.getStrokeJoin() <= 2);
217 insertInt("LJ", fPaint.getStrokeJoin());
248 a->getStrokeJoin() != b->getStrokeJoin() ||
  /external/skia/src/core/
SkStrokeRec.cpp 57 fJoin = paint.getStrokeJoin();
SkStroke.cpp 519 fJoin = (uint8_t)p.getStrokeJoin();
527 fJoin = (uint8_t)p.getStrokeJoin();
SkPaint.cpp     [all...]
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowPaint.java 104 public Paint.Join getStrokeJoin() {
  /external/skia/tests/
PaintTest.cpp 91 SkScalar inset = paint.getStrokeJoin() == SkPaint::kMiter_Join ?
EmptyPathTest.cpp 15 paint.getStrokeJoin(), paint.isAntiAlias());
  /external/webkit/Source/WebKit/android/plugins/
ANPPaintInterface.cpp 76 return paint->getStrokeJoin();
192 ASSIGN(i, getStrokeJoin);
android_npapi.h 554 ANPPaintJoin (*getStrokeJoin)(const ANPPaint*);
    [all...]
  /external/skia/legacy/src/core/
SkPathEffect.cpp 75 fStyle(SkToU8(paint.getStyle())), fJoin(SkToU8(paint.getStrokeJoin())),
SkPictureFlat.cpp 201 if (strokeJoin != defaultPaint.getStrokeJoin())
SkStroke.cpp 489 fJoin = (uint8_t)p.getStrokeJoin();
497 fJoin = (uint8_t)p.getStrokeJoin();
SkPaint.cpp     [all...]
SkPicturePlayback.cpp     [all...]
  /external/skia/legacy/src/effects/
SkLayerDrawLooper.cpp 107 dst->setStrokeJoin(src.getStrokeJoin());
SkLayerRasterizer.cpp 173 buffer.write8(paint.getStrokeJoin());
  /external/skia/legacy/src/pipe/
SkGPipeWrite.cpp 682 if (base.getStrokeJoin() != paint.getStrokeJoin()) {
683 *ptr++ = PaintOp_packOpData(kJoin_PaintOp, paint.getStrokeJoin());
684 base.setStrokeJoin(paint.getStrokeJoin());
  /external/skia/src/pipe/
SkGPipeWrite.cpp     [all...]
  /frameworks/base/core/jni/android/graphics/
Paint.cpp 211 static jint getStrokeJoin(JNIEnv* env, jobject clazz, SkPaint* obj) {
212 return obj->getStrokeJoin();
821 {"native_getStrokeJoin","(I)I", (void*) SkPaintGlue::getStrokeJoin},
    [all...]
  /external/skia/include/core/
SkPaint.h 424 Join getStrokeJoin() const { return (Join)fJoinType; }
    [all...]
  /external/skia/legacy/include/core/
SkPaint.h 423 Join getStrokeJoin() const { return (Join)fJoinType; }
    [all...]
  /external/skia/src/effects/
SkLayerDrawLooper.cpp 112 dst->setStrokeJoin(src.getStrokeJoin());
  /frameworks/base/libs/hwui/
PathCache.cpp 56 join(paint->getStrokeJoin()),

Completed in 1300 milliseconds

1 2