Home
last modified time | relevance | path

Searched refs:drawLooperBuilder (Results 1 – 5 of 5) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/rendering/
DEllipsisBox.cpp69 OwnPtr<DrawLooperBuilder> drawLooperBuilder = DrawLooperBuilder::create(); in paint() local
75 drawLooperBuilder->addShadow(offset, shadow.blur(), shadow.color(), in paint()
78 drawLooperBuilder->addUnmodifiedContent(); in paint()
79 context->setDrawLooper(drawLooperBuilder.release()); in paint()
DInlineTextBox.cpp402 OwnPtr<DrawLooperBuilder> drawLooperBuilder = DrawLooperBuilder::create(); in paintTextWithShadows() local
408 drawLooperBuilder->addShadow(offset, shadow.blur(), shadow.color(), in paintTextWithShadows()
411 drawLooperBuilder->addUnmodifiedContent(); in paintTextWithShadows()
412 context->setDrawLooper(drawLooperBuilder.release()); in paintTextWithShadows()
DRenderBoxModelObject.cpp2573 OwnPtr<DrawLooperBuilder> drawLooperBuilder = DrawLooperBuilder::create(); in paintBoxShadow() local
2574 drawLooperBuilder->addShadow(shadowOffset, shadowBlur, shadowColor, in paintBoxShadow()
2576 context->setDrawLooper(drawLooperBuilder.release()); in paintBoxShadow()
/external/chromium_org/third_party/WebKit/Source/platform/graphics/
DGraphicsContext.cpp313 OwnPtr<DrawLooperBuilder> drawLooperBuilder = DrawLooperBuilder::create(); in setShadow() local
314 drawLooperBuilder->addShadow(offset, blur, color, shadowTransformMode, shadowAlphaMode); in setShadow()
315 drawLooperBuilder->addUnmodifiedContent(); in setShadow()
316 setDrawLooper(drawLooperBuilder.release()); in setShadow()
319 void GraphicsContext::setDrawLooper(PassOwnPtr<DrawLooperBuilder> drawLooperBuilder) in setDrawLooper() argument
324 mutableState()->setDrawLooper(drawLooperBuilder->detachDrawLooper()); in setDrawLooper()
668 OwnPtr<DrawLooperBuilder> drawLooperBuilder = DrawLooperBuilder::create(); in drawInnerShadow() local
669 drawLooperBuilder->addShadow(shadowOffset, shadowBlur, shadowColor, in drawInnerShadow()
671 setDrawLooper(drawLooperBuilder.release()); in drawInnerShadow()
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
DSVGInlineTextBox.cpp639 OwnPtr<DrawLooperBuilder> drawLooperBuilder = DrawLooperBuilder::create(); in paintTextWithShadows() local
643 drawLooperBuilder->addShadow(offset, shadow.blur(), shadow.color(), in paintTextWithShadows()
646 drawLooperBuilder->addUnmodifiedContent(); in paintTextWithShadows()
647 context->setDrawLooper(drawLooperBuilder.release()); in paintTextWithShadows()