Home
last modified time | relevance | path

Searched refs:fStyle (Results 1 – 7 of 7) sorted by relevance

/external/skia/include/core/
DSkTypeface.h49 Style style() const { return fStyle; } in style()
53 bool isBold() const { return (fStyle & kBold) != 0; } in isBold()
57 bool isItalic() const { return (fStyle & kItalic) != 0; } in isItalic()
125 : fUniqueID(uniqueID), fStyle(style) {} in SkTypeface()
129 Style fStyle; variable
DSkPaint.h233 Style getStyle() const { return (Style)fStyle; } in getStyle()
747 unsigned fStyle : 2; variable
801 uint8_t fStyle, fJoin, fCap; variable
/external/skia/src/core/
DSkPathEffect.cpp80fStyle(SkToU8(paint.getStyle())), fJoin(SkToU8(paint.getStrokeJoin())), fCap(SkToU8(paint.getStrok… in SkStrokePathEffect()
85 : fWidth(width), fMiter(miter), fStyle(SkToU8(style)), fJoin(SkToU8(join)), fCap(SkToU8(cap)) in SkStrokePathEffect()
93 if (fWidth < 0 || fStyle == SkPaint::kFill_Style) in filterPath()
96 if (fStyle == SkPaint::kStroke_Style && fWidth == 0) // hairline in filterPath()
108 stroke.setDoFill(fStyle == SkPaint::kStrokeAndFill_Style); in filterPath()
128 buffer.write8(fStyle); in flatten()
137 fStyle = buffer.readU8(); in SkStrokePathEffect()
DSkPaint.cpp58 fStyle = kFill_Style; in SkPaint()
180 fStyle = style; in setStyle()
608 fStyle = paint->getStyle(); in SkAutoRestorePaintTextSizeAndFrame()
613 fPaint->setStyle(fStyle); in ~SkAutoRestorePaintTextSizeAndFrame()
620 SkPaint::Style fStyle; member in SkAutoRestorePaintTextSizeAndFrame
DSkDraw.cpp128 fStyle = paint.getStyle(); // record the old in SkAutoPaintStyleRestore()
132 fPaint.setStyle(fStyle); // restore the old in ~SkAutoPaintStyleRestore()
136 SkPaint::Style fStyle; member in SkAutoPaintStyleRestore
/external/skia/src/effects/
DSk1DPathEffect.cpp75 fStyle = style; in SkPath1DPathEffect()
161 fStyle = (Style) buffer.readU8(); in SkPath1DPathEffect()
176 buffer.write8(fStyle); in flatten()
182 switch (fStyle) { in next()
/external/skia/include/effects/
DSk1DPathEffect.h83 Style fStyle; // copied from constructor variable