OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:strokepattern
(Results
1 - 10
of
10
) sorted by null
/external/webkit/WebCore/platform/graphics/
GraphicsContext.cpp
128
m_common->state.
strokePattern
.clear();
225
m_common->state.
strokePattern
= pattern;
226
setPlatformStrokePattern(m_common->state.
strokePattern
.get());
249
m_common->state.
strokePattern
.clear();
280
Pattern* GraphicsContext::
strokePattern
() const
282
return m_common->state.
strokePattern
.get();
GraphicsContextPrivate.h
63
RefPtr<Pattern>
strokePattern
;
GraphicsContext.h
173
Pattern*
strokePattern
() const;
/external/webkit/WebCore/platform/graphics/cairo/
FontCairo.cpp
168
} else if (context->
strokePattern
()) {
170
cairo_set_source(cr, context->
strokePattern
()->createPlatformPattern(affine));
GraphicsContextCairo.cpp
94
if (gcp->state.
strokePattern
) {
96
cairo_set_source(cr, gcp->state.
strokePattern
->createPlatformPattern(affine));
103
if (gcp->state.globalAlpha < 1.0f && (gcp->state.
strokePattern
|| gcp->state.strokeGradient)) {
[
all
...]
/external/webkit/WebCore/platform/graphics/qt/
FontQt.cpp
93
} else if (ctx->
strokePattern
()) {
95
p->setPen(QPen(QBrush(ctx->
strokePattern
()->createPlatformPattern(affine)), ctx->strokeThickness()));
GraphicsContextQt.cpp
565
if (m_common->state.
strokePattern
|| m_common->state.strokeGradient || strokeColor().alpha()) {
577
if (m_common->state.
strokePattern
) {
579
pen.setBrush(QBrush(m_common->state.
strokePattern
->createPlatformPattern(affine)));
[
all
...]
/external/webkit/WebCore/platform/graphics/cg/
GraphicsContextCG.cpp
472
RetainPtr<CGPatternRef> platformPattern(AdoptCF, m_common->state.
strokePattern
->createPlatformPattern(getCTM()));
501
bool shouldStroke = state.
strokePattern
|| (state.strokeStyle != NoStroke && state.strokeColor.alpha());
542
if (state.
strokePattern
)
592
// FIXME: Is this helpful and correct in the
strokePattern
and strokeGradient cases?
605
if (m_common->state.
strokePattern
)
856
// FIXME: Is this helpful and correct in the
strokePattern
and strokeGradient cases?
870
if (m_common->state.
strokePattern
)
[
all
...]
/external/webkit/WebCore/platform/graphics/skia/
SkiaFontWin.cpp
253
if (context->fillPattern() || context->
strokePattern
())
/external/webkit/WebCore/platform/graphics/android/
GraphicsContextAndroid.cpp
[
all
...]
Completed in 203 milliseconds