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

1 2 3 4 5 6

  /frameworks/base/graphics/java/android/graphics/
ComposePathEffect.java 19 public class ComposePathEffect extends PathEffect {
22 * Construct a PathEffect whose effect is to apply first the inner effect
23 * and the the outer pathEffect (e.g. outer(inner(path))).
25 public ComposePathEffect(PathEffect outerpe, PathEffect innerpe) {
SumPathEffect.java 19 public class SumPathEffect extends PathEffect {
22 * Construct a PathEffect whose effect is to apply two effects, in sequence.
25 public SumPathEffect(PathEffect first, PathEffect second) {
PathEffect.java 20 * PathEffect is the base class for objects in the Paint that affect
24 public class PathEffect {
DashPathEffect.java 19 public class DashPathEffect extends PathEffect {
28 * Note: this patheffect only affects drawing with the paint's style is set
CornerPathEffect.java 19 public class CornerPathEffect extends PathEffect {
DiscretePathEffect.java 19 public class DiscretePathEffect extends PathEffect {
PathDashPathEffect.java 19 public class PathDashPathEffect extends PathEffect {
  /cts/tests/tests/graphics/src/android/graphics/cts/
PathEffectTest.java 19 import android.graphics.PathEffect;
25 new PathEffect();
ComposePathEffectTest.java 26 import android.graphics.PathEffect;
44 PathEffect innerEffect = new DashPathEffect(new float[] {25, 5}, 0);
47 PathEffect outerEffect = new DashPathEffect(new float[] {15, 5}, 0);
49 PathEffect composedEffect = new ComposePathEffect(outerEffect, innerEffect);
51 PathEffect expectedEffect = new DashPathEffect(new float[] {15, 5, 5, 5}, 0);
SumPathEffectTest.java 27 import android.graphics.PathEffect;
48 PathEffect first = new CornerPathEffect(40);
57 PathEffect second = new DashPathEffect(new float[] { 10, 5 }, 5);
CornerPathEffectTest.java 25 import android.graphics.PathEffect;
47 PathEffect effect = new CornerPathEffect(RADIUS);
DashPathEffectTest.java 25 import android.graphics.PathEffect;
44 PathEffect effect = new DashPathEffect(PATTERN, OFFSET);
  /frameworks/base/tools/layoutlib/bridge/src/android/graphics/
PathEffect_Delegate.java 25 * Delegate implementing the native methods of android.graphics.PathEffect
27 * Through the layoutlib_create tool, the original native methods of PathEffect have been replaced
32 * it and the original PathEffect class.
34 * This also serve as a base class for all PathEffect delegate classes.
  /external/skia/src/animator/
SkDrawPaint.cpp 45 SK_MEMBER(pathEffect, PathEffect),
68 linearText(-1), maskFilter((SkDrawMaskFilter*) -1), pathEffect((SkDrawPathEffect*) -1),
84 delete pathEffect;
129 if (pathEffect != (SkDrawPathEffect*) -1) {
134 pathEffect->dump(maker);
204 if (fOwnsPathEffect && maker.resolveID(pathEffect, original->pathEffect) == false)
233 if (pathEffect == nullptr)
235 else if (pathEffect != (SkDrawPathEffect*) -1
    [all...]
SkPaintPart.cpp 48 if (fPaint->pathEffect != (SkDrawPathEffect*) -1)
50 fPaint->pathEffect = this;
SkDrawPaint.h 51 SkDrawPathEffect* pathEffect;
SkPaintPart.h 42 DECLARE_EMPTY_MEMBER_INFO(PathEffect);
SkDrawExtraPathEffect.cpp 356 SK_MEMBER(effect1, PathEffect),
357 SK_MEMBER(effect2, PathEffect)
421 const char kDrawShape1DPathEffectName[] = "pathEffect:shape1D";
422 const char kDrawShape2DPathEffectName[] = "pathEffect:shape2D";
423 const char kDrawComposePathEffectName[] = "pathEffect:compose";
424 const char kDrawCornerPathEffectName[] = "pathEffect:corner";
  /external/skia/src/gpu/
GrBlurUtils.cpp 155 const SkPathEffect* pathEffect,
168 SkASSERT(strokeInfo.isDashed() || !pathEffect);
173 if (pathEffect->filterPath(strokedPath, *pathPtr, &strokeInfo, cullRect)) {
258 const SkPathEffect* pathEffect,
266 if (!strokeInfo.isDashed() && pathEffect && pathEffect->filterPath(tmpPath.init(), *pathPtr,
271 pathEffect = nullptr;
274 draw_path_with_mask_filter(context, drawContext, clip, paint, viewMatrix, mf, pathEffect,
300 SkPathEffect* pathEffect = paint.getPathEffect();
307 if (!paint.getMaskFilter() && !pathEffect && !paint.getShader() &
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
PathEffects.java 36 private PathEffect[] mEffects;
40 private static PathEffect makeDash(float phase) {
44 private static void makeEffects(PathEffect[] e, float phase) {
65 mEffects = new PathEffect[6];
ShapeDrawable1.java 112 PathEffect pe = new DiscretePathEffect(10, 4);
113 PathEffect pe2 = new CornerPathEffect(4);
_index.html 30 <dd>Demonstrates the use of {@link android.graphics.Path} and various {@link android.graphics.PathEffect} subclasses. </dd>
  /external/skia/include/core/
SkPathEffect.h 105 * If the PathEffect can be represented as a dash pattern, asADash will return kDash_DashType
107 * in if the PathEffect can be a dash pattern. If passed in info has an fCount equal or
177 a compound pathEffect.
181 /** Construct a pathEffect whose effect is to apply first the inner pathEffect
182 and the the outer pathEffect (e.g. outer(inner(path)))
224 /** Construct a pathEffect whose effect is to apply two effects, in sequence.
  /external/skia/src/core/
SkGlobalInitialization_core.cpp 40 // PathEffect
  /external/skia/samplecode/
SampleFilterFuzz.cpp 427 SkPathEffect* pathEffect = nullptr;
428 if (canBeNull && (R(3) == 1)) { return pathEffect; }
432 pathEffect = SkArcToPathEffect::Create(make_scalar(true));
437 pathEffect = SkComposePathEffect::Create(outer, inner);
441 pathEffect = SkCornerPathEffect::Create(make_scalar());
449 pathEffect = SkDashPathEffect::Create(intervals, count, make_scalar());
453 pathEffect = SkDiscretePathEffect::Create(make_scalar(), make_scalar());
456 pathEffect = SkPath1DPathEffect::Create(make_path(),
462 pathEffect = SkLine2DPathEffect::Create(make_scalar(), make_matrix());
465 pathEffect = SkPath2DPathEffect::Create(make_matrix(), make_path())
    [all...]

Completed in 9803 milliseconds

1 2 3 4 5 6