/third_party/skia/src/effects/ |
D | SkDiscretePathEffect.cpp | 68 SkDiscretePathEffectImpl(SkScalar segLength, SkScalar deviation, uint32_t seedAssist) in SkDiscretePathEffectImpl() argument 69 : fSegLength(segLength), fPerterb(deviation), fSeedAssist(seedAssist) in SkDiscretePathEffectImpl() 71 SkASSERT(SkScalarIsFinite(segLength)); in SkDiscretePathEffectImpl() 73 SkASSERT(segLength > SK_ScalarNearlyZero); in SkDiscretePathEffectImpl() 140 SkScalar segLength = buffer.readScalar(); in CreateProc() local 143 return SkDiscretePathEffect::Make(segLength, perterb, seed); in CreateProc() 166 sk_sp<SkPathEffect> SkDiscretePathEffect::Make(SkScalar segLength, SkScalar deviation, in Make() argument 168 if (!SkScalarIsFinite(segLength) || !SkScalarIsFinite(deviation)) { in Make() 171 if (segLength <= SK_ScalarNearlyZero) { in Make() 174 return sk_sp<SkPathEffect>(new SkDiscretePathEffectImpl(segLength, deviation, seedAssist)); in Make()
|
/third_party/flutter/skia/src/effects/ |
D | SkDiscretePathEffect.cpp | 17 sk_sp<SkPathEffect> SkDiscretePathEffect::Make(SkScalar segLength, SkScalar deviation, in Make() argument 19 if (!SkScalarIsFinite(segLength) || !SkScalarIsFinite(deviation)) { in Make() 22 if (segLength <= SK_ScalarNearlyZero) { in Make() 25 return sk_sp<SkPathEffect>(new SkDiscretePathEffect(segLength, deviation, seedAssist)); in Make() 35 SkDiscretePathEffect::SkDiscretePathEffect(SkScalar segLength, in SkDiscretePathEffect() argument 38 : fSegLength(segLength), fPerterb(deviation), fSeedAssist(seedAssist) in SkDiscretePathEffect() 135 SkScalar segLength = buffer.readScalar(); in CreateProc() local 138 return Make(segLength, perterb, seed); in CreateProc()
|
/third_party/flutter/skia/include/effects/ |
D | SkDiscretePathEffect.h | 33 static sk_sp<SkPathEffect> Make(SkScalar segLength, SkScalar dev, uint32_t seedAssist = 0); 36 SkDiscretePathEffect(SkScalar segLength,
|
/third_party/skia/include/effects/ |
D | SkDiscretePathEffect.h | 32 static sk_sp<SkPathEffect> Make(SkScalar segLength, SkScalar dev, uint32_t seedAssist = 0);
|
/third_party/icu/icu4c/source/common/ |
D | utext.cpp | 1984 int32_t segLength=limit32-start32; in repTextCopy() local 1987 start32+=segLength; in repTextCopy() 1988 limit32+=segLength; in repTextCopy() 2244 int32_t segLength=limit32-start32; in unistrTextCopy() local 2247 start32+=segLength; in unistrTextCopy() 2249 us->remove(start32, segLength); in unistrTextCopy()
|
/third_party/skia/third_party/externals/icu/source/common/ |
D | utext.cpp | 1984 int32_t segLength=limit32-start32; in repTextCopy() local 1987 start32+=segLength; in repTextCopy() 1988 limit32+=segLength; in repTextCopy() 2244 int32_t segLength=limit32-start32; in unistrTextCopy() local 2247 start32+=segLength; in unistrTextCopy() 2249 us->remove(start32, segLength); in unistrTextCopy()
|
/third_party/node/deps/icu-small/source/common/ |
D | utext.cpp | 1984 int32_t segLength=limit32-start32; in repTextCopy() local 1987 start32+=segLength; in repTextCopy() 1988 limit32+=segLength; in repTextCopy() 2244 int32_t segLength=limit32-start32; in unistrTextCopy() local 2247 start32+=segLength; in unistrTextCopy() 2249 us->remove(start32, segLength); in unistrTextCopy()
|
/third_party/flutter/skia/third_party/externals/icu/source/common/ |
D | utext.cpp | 1982 int32_t segLength=limit32-start32; in repTextCopy() local 1985 start32+=segLength; in repTextCopy() 1986 limit32+=segLength; in repTextCopy() 2242 int32_t segLength=limit32-start32; in unistrTextCopy() local 2245 start32+=segLength; in unistrTextCopy() 2247 us->remove(start32, segLength); in unistrTextCopy()
|
/third_party/skia/fuzz/ |
D | FuzzCanvas.cpp | 404 SkScalar segLength, dev; in make_fuzz_patheffect() local 406 fuzz->next(&segLength, &dev, &seed); in make_fuzz_patheffect() 407 return SkDiscretePathEffect::Make(segLength, dev, seed); in make_fuzz_patheffect()
|
/third_party/flutter/skia/fuzz/ |
D | FuzzCanvas.cpp | 412 SkScalar segLength, dev; in make_fuzz_patheffect() local 414 fuzz->next(&segLength, &dev, &seed); in make_fuzz_patheffect() 415 return SkDiscretePathEffect::Make(segLength, dev, seed); in make_fuzz_patheffect()
|
/third_party/skia/modules/canvaskit/npm_build/types/ |
D | index.d.ts | 3337 MakeDiscrete(segLength: number, dev: number, seedAssist: number): PathEffect;
|