OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:patheffect
(Results
26 - 50
of
146
) sorted by null
1
2
3
4
5
6
/external/skia/src/ports/
SkGlobalInitialization_default.cpp
97
//
PathEffect
/frameworks/base/core/jni/android/graphics/
PathEffect.cpp
102
android::RegisterMethodsOrDie(env, "android/graphics/
PathEffect
", gPathEffectMethods,
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
DashPathEffect_Delegate.java
36
* {@link DelegateManager}, as all the
PathEffect
classes will be added to the manager owned by
PorterDuffXfermode_Delegate.java
40
* {@link DelegateManager}, as all the
PathEffect
classes will be added to the manager owned by
/frameworks/base/libs/hwui/
PathCache.cpp
65
,
pathEffect
(nullptr) {
77
,
pathEffect
(paint->getPathEffect()) {
89
hash = JenkinsHashMix(hash, android::hash_type(
pathEffect
));
101
if (
pathEffect
!= rhs.
pathEffect
) return false;
PathCache.h
130
SkPathEffect*
pathEffect
;
/external/skia/gm/
patheffects.cpp
112
return SkString("
patheffect
");
/external/skia/include/effects/
SkLayerDrawLooper.h
30
kPathEffect_Bit = 1 << 2, //!< use this layer's
patheffect
/external/skia/src/core/
SkRemote.h
88
ID misc,
patheffect
, shader, xfermode, maskfilter,
member in struct:SkRemote::Encoder::CommonIDs
SkRemote.cpp
122
fIDs.
patheffect
= fEncoder->define(paint.getPathEffect());
135
fEncoder->undefine(fIDs.
patheffect
);
489
paint->setPathEffect (fPathEffect .find(common.
patheffect
));
SkPaint.cpp
[
all
...]
/external/skia/site/user/api/
skpaint.md
541
SkAutoTUnref<SkPathEffect>
pathEffect
(
544
paint.setPathEffect(
pathEffect
);
692
* SkComposePathEffect: a
pathEffect
whose effect is to apply
693
first the inner
pathEffect
and the the outer
pathEffect
(i.e.
719
* SkSumPathEffect: a
pathEffect
whose effect is to apply two effects,
/external/skia/include/core/
SkPaint.h
455
* Applies any/all effects (
patheffect
, stroking) to src, returning the
545
/** Get the paint's
patheffect
object.
547
The
patheffect
reference count is not affected.
548
@return the paint's
patheffect
(or NULL)
552
/** Set or clear the
patheffect
object.
554
Pass NULL to clear any previous
patheffect
.
556
If a previous
patheffect
exists, its reference count is decremented.
557
If
patheffect
is not NULL, its reference count is incremented.
558
@param effect May be NULL. The new
patheffect
to be installed in the
[
all
...]
/external/skia/src/animator/
SkDisplayType.cpp
157
CASE_DRAW_NEW(
PathEffect
);
311
//
patheffect
477
{ "
pathEffect
", SkType_PathEffect INIT_BOOL_FIELDS },
SkAnimateSchema.xsd
567
<!-- /**
PathEffect
570
<xs:simpleType name="
PathEffect
">
[
all
...]
/external/skia/src/gpu/
GrStrokeInfo.h
87
* This functions takes in a
patheffect
and updates the dashing information if the path effect
/cts/tests/tests/graphics/src/android/graphics/cts/
PaintTest.java
29
import android.graphics.
PathEffect
;
181
PathEffect
e = new
PathEffect
();
339
PathEffect
e = new
PathEffect
();
911
PathEffect
e = new
PathEffect
();
[
all
...]
/external/skia/tools/json/
SkJSONCanvas.cpp
364
SkPathEffect*
pathEffect
= paint.getPathEffect();
365
if (
pathEffect
!= nullptr) {
367
SkPathEffect::DashType dashType =
pathEffect
->asADash(&dashInfo);
370
pathEffect
->asADash(&dashInfo);
383
flatten(
pathEffect
, &jsonPathEffect, sendBinaries);
[
all
...]
SkJSONCanvas.h
88
#define SKJSONCANVAS_ATTRIBUTE_PATHEFFECT "
pathEffect
"
SkJSONRenderer.cpp
295
SkPathEffect*
pathEffect
= (SkPathEffect*) load_flattenable(jsonPathEffect);
296
if (
pathEffect
!= nullptr) {
297
target->setPathEffect(
pathEffect
);
298
pathEffect
->unref();
[
all
...]
/frameworks/base/core/jni/
Android.mk
126
android/graphics/
PathEffect
.cpp \
/external/skia/tools/debugger/
SkDrawCommand.cpp
74
#define SKDEBUGCANVAS_ATTRIBUTE_PATHEFFECT "
pathEffect
"
[
all
...]
/frameworks/base/graphics/java/android/graphics/
Paint.java
60
private
PathEffect
mPathEffect;
1013
* Applies any/all effects (
patheffect
, stroking) to src, returning the
[
all
...]
/external/skia/src/effects/
SkLayerDrawLooper.cpp
253
SkAddFlagToString(str, SkToBool(kPathEffect_Bit & rec->fInfo.fPaintBits), "
PathEffect
",
/external/skia/src/utils/
SkDumpCanvas.cpp
524
appendFlattenable(&msg, p->getPathEffect(), "
pathEffect
");
526
appendFlattenable(&msg, p->getPathEffect(), "
pathEffect
");
Completed in 933 milliseconds
1
2
3
4
5
6