HomeSort by relevance Sort by last modified time
    Searched refs:getStrokeJoin (Results 1 - 25 of 28) 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 220 SkASSERT(fPaint.getStrokeJoin() >= 0 && fPaint.getStrokeJoin() <= 2);
221 insertInt("LJ", fPaint.getStrokeJoin());
252 a->getStrokeJoin() != b->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/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...]
SkDraw.cpp 670 if (SkPaint::kMiter_Join != paint.getStrokeJoin() ||
    [all...]
  /external/skia/src/effects/
SkLayerDrawLooper.cpp 107 dst->setStrokeJoin(src.getStrokeJoin());
SkLayerRasterizer.cpp 173 buffer.write8(paint.getStrokeJoin());
  /external/skia/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/include/core/
SkPaint.h 418 Join getStrokeJoin() const { return (Join)fJoinType; }
    [all...]
  /frameworks/base/core/jni/android/graphics/
Paint.cpp 209 static jint getStrokeJoin(JNIEnv* env, jobject clazz, SkPaint* obj) {
210 return obj->getStrokeJoin();
815 {"native_getStrokeJoin","(I)I", (void*) SkPaintGlue::getStrokeJoin},
    [all...]
  /frameworks/base/libs/hwui/
ShapeCache.h 101 join = paint->getStrokeJoin();
  /external/skia/src/gpu/
SkGpuDevice.cpp 643 paint.getStrokeJoin() != SkPaint::kMiter_Join;
653 if (SkPaint::kMiter_Join == paint.getStrokeJoin() &&
    [all...]
  /frameworks/base/graphics/java/android/graphics/
Paint.java 780 public Join getStrokeJoin() {
    [all...]
  /prebuilts/sdk/10/
android.jar 
  /prebuilts/sdk/12/
android.jar 
  /prebuilts/sdk/14/
android.jar 
  /prebuilts/sdk/15/
android.jar 

Completed in 434 milliseconds

1 2