/external/chromium_org/third_party/skia/src/core/ |
D | SkDrawLooper.cpp | 15 bool SkDrawLooper::canComputeFastBounds(const SkPaint& paint) const { in canComputeFastBounds() 18 void* buffer = allocator.reserveT<SkDrawLooper::Context>(this->contextSize()); in canComputeFastBounds() 20 SkDrawLooper::Context* context = this->createContext(&canvas, buffer); in canComputeFastBounds() 35 void SkDrawLooper::computeFastBounds(const SkPaint& paint, const SkRect& src, in computeFastBounds() 39 void* buffer = allocator.reserveT<SkDrawLooper::Context>(this->contextSize()); in computeFastBounds() 42 SkDrawLooper::Context* context = this->createContext(&canvas, buffer); in computeFastBounds() 63 bool SkDrawLooper::asABlurShadow(BlurShadowRec*) const { in asABlurShadow()
|
D | SkReadBuffer.h | 122 SkDrawLooper* readDrawLooper() { return this->readFlattenable<SkDrawLooper>(); } in readDrawLooper()
|
/external/skia/src/core/ |
D | SkDrawLooper.cpp | 15 bool SkDrawLooper::canComputeFastBounds(const SkPaint& paint) const { in canComputeFastBounds() 18 void* buffer = allocator.reserveT<SkDrawLooper::Context>(this->contextSize()); in canComputeFastBounds() 20 SkDrawLooper::Context* context = this->createContext(&canvas, buffer); in canComputeFastBounds() 35 void SkDrawLooper::computeFastBounds(const SkPaint& paint, const SkRect& src, in computeFastBounds() 39 void* buffer = allocator.reserveT<SkDrawLooper::Context>(this->contextSize()); in computeFastBounds() 42 SkDrawLooper::Context* context = this->createContext(&canvas, buffer); in computeFastBounds() 63 bool SkDrawLooper::asABlurShadow(BlurShadowRec*) const { in asABlurShadow()
|
/external/skia/include/core/ |
D | SkDrawLooper.h | 31 class SK_API SkDrawLooper : public SkFlattenable { 33 SK_DECLARE_INST_COUNT(SkDrawLooper) in SK_DECLARE_INST_COUNT() argument 113 SK_DEFINE_FLATTENABLE_TYPE(SkDrawLooper) in SK_DEFINE_FLATTENABLE_TYPE() argument 116 SkDrawLooper() {} in SK_DEFINE_FLATTENABLE_TYPE() 117 SkDrawLooper(SkReadBuffer& buffer) : INHERITED(buffer) {} in SkDrawLooper() function
|
D | SkPaint.h | 661 SkDrawLooper* getLooper() const { return fLooper; } in getLooper() 674 SkDrawLooper* setLooper(SkDrawLooper* looper); 1047 SkDrawLooper* fLooper;
|
D | SkReadBuffer.h | 118 SkDrawLooper* readDrawLooper() { return this->readFlattenable<SkDrawLooper>(); } in readDrawLooper()
|
/external/chromium_org/third_party/skia/include/core/ |
D | SkDrawLooper.h | 31 class SK_API SkDrawLooper : public SkFlattenable { 33 SK_DECLARE_INST_COUNT(SkDrawLooper) in SK_DECLARE_INST_COUNT() argument 113 SK_DEFINE_FLATTENABLE_TYPE(SkDrawLooper) in SK_DEFINE_FLATTENABLE_TYPE() argument 116 SkDrawLooper() {} in SK_DEFINE_FLATTENABLE_TYPE() 118 SkDrawLooper(SkReadBuffer& buffer) : INHERITED(buffer) {} in SkDrawLooper() function
|
D | SkPaint.h | 664 SkDrawLooper* getLooper() const { return fLooper; } in getLooper() 677 SkDrawLooper* setLooper(SkDrawLooper* looper); 1040 SkDrawLooper* fLooper;
|
/external/skia/include/effects/ |
D | SkBlurDrawLooper.h | 23 class SK_API SkBlurDrawLooper : public SkDrawLooper { 45 virtual SkDrawLooper::Context* createContext(SkCanvas*, void* storage) const SK_OVERRIDE; 74 class BlurDrawLooperContext : public SkDrawLooper::Context { 88 typedef SkDrawLooper INHERITED;
|
D | SkLayerDrawLooper.h | 16 class SK_API SkLayerDrawLooper : public SkDrawLooper { 76 virtual SkDrawLooper::Context* createContext(SkCanvas*, void* storage) const SK_OVERRIDE; 104 class LayerDrawLooperContext : public SkDrawLooper::Context { 122 typedef SkDrawLooper INHERITED;
|
/external/chromium_org/third_party/skia/include/effects/ |
D | SkBlurDrawLooper.h | 23 class SK_API SkBlurDrawLooper : public SkDrawLooper { 45 virtual SkDrawLooper::Context* createContext(SkCanvas*, void* storage) const SK_OVERRIDE; 76 class BlurDrawLooperContext : public SkDrawLooper::Context { 90 typedef SkDrawLooper INHERITED;
|
D | SkLayerDrawLooper.h | 16 class SK_API SkLayerDrawLooper : public SkDrawLooper { 76 virtual SkDrawLooper::Context* createContext(SkCanvas*, void* storage) const SK_OVERRIDE; 110 class LayerDrawLooperContext : public SkDrawLooper::Context { 128 typedef SkDrawLooper INHERITED;
|
/external/skia/tests/ |
D | LayerDrawLooperTest.cpp | 62 void* buffer = allocator.reserveT<SkDrawLooper::Context>(looper->contextSize()); in test_frontToBack() 63 SkDrawLooper::Context* context = looper->createContext(&canvas, buffer); in test_frontToBack() 102 void* buffer = allocator.reserveT<SkDrawLooper::Context>(looper->contextSize()); in test_backToFront() 103 SkDrawLooper::Context* context = looper->createContext(&canvas, buffer); in test_backToFront() 142 void* buffer = allocator.reserveT<SkDrawLooper::Context>(looper->contextSize()); in test_mixed() 143 SkDrawLooper::Context* context = looper->createContext(&canvas, buffer); in test_mixed()
|
D | QuickRejectTest.cpp | 16 class TestLooper : public SkDrawLooper { 19 virtual SkDrawLooper::Context* createContext(SkCanvas*, void* storage) const SK_OVERRIDE { in createContext() 32 class TestDrawLooperContext : public SkDrawLooper::Context {
|
D | BlurTest.cpp | 427 SkAutoTUnref<SkDrawLooper> lp(SkBlurDrawLooper::Create(color, sigma, dx, dy, flags)); in test_blurDrawLooper() 435 SkDrawLooper::BlurShadowRec rec; in test_blurDrawLooper() 449 static void test_delete_looper(skiatest::Reporter* reporter, SkDrawLooper* lp, SkScalar sigma, in test_delete_looper() 451 SkDrawLooper::BlurShadowRec rec; in test_delete_looper()
|
/external/chromium_org/third_party/skia/tests/ |
D | LayerDrawLooperTest.cpp | 62 void* buffer = allocator.reserveT<SkDrawLooper::Context>(looper->contextSize()); in test_frontToBack() 63 SkDrawLooper::Context* context = looper->createContext(&canvas, buffer); in test_frontToBack() 102 void* buffer = allocator.reserveT<SkDrawLooper::Context>(looper->contextSize()); in test_backToFront() 103 SkDrawLooper::Context* context = looper->createContext(&canvas, buffer); in test_backToFront() 142 void* buffer = allocator.reserveT<SkDrawLooper::Context>(looper->contextSize()); in test_mixed() 143 SkDrawLooper::Context* context = looper->createContext(&canvas, buffer); in test_mixed()
|
D | QuickRejectTest.cpp | 16 class TestLooper : public SkDrawLooper { 19 virtual SkDrawLooper::Context* createContext(SkCanvas*, void* storage) const SK_OVERRIDE { in createContext() 32 class TestDrawLooperContext : public SkDrawLooper::Context {
|
D | BlurTest.cpp | 427 SkAutoTUnref<SkDrawLooper> lp(SkBlurDrawLooper::Create(color, sigma, dx, dy, flags)); in test_blurDrawLooper() 435 SkDrawLooper::BlurShadowRec rec; in test_blurDrawLooper() 449 static void test_delete_looper(skiatest::Reporter* reporter, SkDrawLooper* lp, SkScalar sigma, in test_delete_looper() 451 SkDrawLooper::BlurShadowRec rec; in test_delete_looper()
|
/external/chromium_org/third_party/WebKit/Source/platform/graphics/ |
D | DrawLooperBuilder.h | 40 class SkDrawLooper; variable 69 PassRefPtr<SkDrawLooper> detachDrawLooper();
|
D | GraphicsContextState.h | 109 SkDrawLooper* drawLooper() const { return m_looper.get(); } in drawLooper() 110 void setDrawLooper(PassRefPtr<SkDrawLooper>); 167 RefPtr<SkDrawLooper> m_looper;
|
D | DrawLooperBuilder.cpp | 55 PassRefPtr<SkDrawLooper> DrawLooperBuilder::detachDrawLooper() in detachDrawLooper()
|
/external/chromium_org/ui/gfx/ |
D | skia_util.h | 18 class SkDrawLooper; variable 67 GFX_EXPORT skia::RefPtr<SkDrawLooper> CreateShadowDrawLooper(
|
D | skia_util.cc | 112 skia::RefPtr<SkDrawLooper> CreateShadowDrawLooper( in CreateShadowDrawLooper() 115 return skia::RefPtr<SkDrawLooper>(); in CreateShadowDrawLooper() 147 return skia::AdoptRef<SkDrawLooper>(looper_builder.detachLooper()); in CreateShadowDrawLooper()
|
D | render_text.h | 34 class SkDrawLooper; variable 53 void SetDrawLooper(SkDrawLooper* draw_looper);
|
/external/chromium_org/ui/views/ |
D | shadow_border.cc | 34 skia::RefPtr<SkDrawLooper> looper = gfx::CreateShadowDrawLooper(shadows); in Paint()
|