OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:PaintDrawable
(Results
1 - 3
of
3
) sorted by null
/cts/tests/tests/graphics/src/android/graphics/drawable/cts/
PaintDrawableTest.java
29
import android.graphics.drawable.
PaintDrawable
;
58
new
PaintDrawable
();
59
new
PaintDrawable
(0x0);
60
new
PaintDrawable
(0xffffffff);
65
PaintDrawable
paintDrawable
;
68
// First, create a new
PaintDrawable
, which has no Shape
69
paintDrawable
= getPaintDrawable(false);
70
assertNull(
paintDrawable
.getShape());
71
paintDrawable
.setCornerRadius(1.5f)
[
all
...]
/external/skia/tests/
FlattenDrawableTest.cpp
62
class
PaintDrawable
: public SkDrawable {
64
PaintDrawable
(const SkPaint& paint)
75
return sk_sp<
PaintDrawable
>(new
PaintDrawable
(paint));
82
const char* getTypeName() const override { return "
PaintDrawable
"; }
96
, fPaintDrawable(new
PaintDrawable
(paint))
99
CompoundDrawable(IntDrawable* intDrawable,
PaintDrawable
*
paintDrawable
)
101
, fPaintDrawable(SkRef(
paintDrawable
))
115
sk_sp<SkFlattenable>
paintDrawable
(
[
all
...]
/external/skqp/tests/
FlattenDrawableTest.cpp
62
class
PaintDrawable
: public SkDrawable {
64
PaintDrawable
(const SkPaint& paint)
75
return sk_sp<
PaintDrawable
>(new
PaintDrawable
(paint));
82
const char* getTypeName() const override { return "
PaintDrawable
"; }
96
, fPaintDrawable(new
PaintDrawable
(paint))
99
CompoundDrawable(IntDrawable* intDrawable,
PaintDrawable
*
paintDrawable
)
101
, fPaintDrawable(SkRef(
paintDrawable
))
115
sk_sp<SkFlattenable>
paintDrawable
(
[
all
...]
Completed in 123 milliseconds