OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:RULE_EVENODD
(Results
1 - 16
of
16
) sorted by null
/external/webkit/Source/WebCore/platform/graphics/
Path.h
86
RULE_EVENODD
= 1
ShadowBlur.cpp
559
shadowContext->setFillRule(
RULE_EVENODD
);
628
shadowContext->setFillRule(
RULE_EVENODD
);
660
graphicsContext->setFillRule(
RULE_EVENODD
);
[
all
...]
GraphicsContext.cpp
642
setFillRule(
RULE_EVENODD
);
/external/webkit/Source/WebCore/platform/graphics/wx/
PathWx.cpp
45
if (rule ==
RULE_EVENODD
)
/external/webkit/Source/WebCore/platform/graphics/cg/
GraphicsContextCG.cpp
488
bool useEOFill = state.fillRule ==
RULE_EVENODD
;
542
if (fillRule ==
RULE_EVENODD
)
566
if (fillRule() ==
RULE_EVENODD
)
580
if (fillRule() ==
RULE_EVENODD
)
807
setFillRule(
RULE_EVENODD
);
864
if (clipRule ==
RULE_EVENODD
)
[
all
...]
PathCG.cpp
132
bool ret = CGPathContainsPoint(path.get(), 0, point, rule ==
RULE_EVENODD
? true : false);
/external/webkit/Source/WebCore/platform/graphics/cairo/
PathCairo.cpp
303
cairo_set_fill_rule(cr, rule ==
RULE_EVENODD
? CAIRO_FILL_RULE_EVEN_ODD : CAIRO_FILL_RULE_WINDING);
GraphicsContextCairo.cpp
189
cairo_set_fill_rule(cairoContext, context->fillRule() ==
RULE_EVENODD
? CAIRO_FILL_RULE_EVEN_ODD : CAIRO_FILL_RULE_WINDING);
603
cairo_set_fill_rule(cr, clipRule ==
RULE_EVENODD
? CAIRO_FILL_RULE_EVEN_ODD : CAIRO_FILL_RULE_WINDING);
[
all
...]
/external/webkit/Source/WebCore/platform/graphics/qt/
PathQt.cpp
105
const_cast<QPainterPath*>(&m_path)->setFillRule(rule ==
RULE_EVENODD
? Qt::OddEvenFill : Qt::WindingFill);
GraphicsContextQt.cpp
165
case
RULE_EVENODD
:
803
platformPath.setFillRule(clipRule ==
RULE_EVENODD
? Qt::OddEvenFill : Qt::WindingFill);
[
all
...]
/external/webkit/Source/WebCore/platform/graphics/android/
GraphicsContextAndroid.cpp
894
path.setFillType(clipRule ==
RULE_EVENODD
? SkPath::kEvenOdd_FillType : SkPath::kWinding_FillType);
[
all
...]
/external/webkit/Source/WebCore/platform/graphics/skia/
GraphicsContextSkia.cpp
426
path.setFillType(clipRule ==
RULE_EVENODD
? SkPath::kEvenOdd_FillType : SkPath::kWinding_FillType);
750
path.setFillType(state.fillRule ==
RULE_EVENODD
?
[
all
...]
/external/webkit/Source/WebCore/css/
CSSPrimitiveValueMappings.h
[
all
...]
/external/webkit/Source/WebCore/platform/graphics/openvg/
PainterOpenVG.cpp
81
return fillRule ==
RULE_EVENODD
? VG_EVEN_ODD : VG_NON_ZERO;
[
all
...]
/external/webkit/Source/WebCore/rendering/svg/
SVGRenderTreeAsText.cpp
181
case
RULE_EVENODD
:
/external/webkit/Source/WebCore/rendering/
RenderBoxModelObject.cpp
[
all
...]
Completed in 841 milliseconds