Searched refs:fStyle (Results 1 - 25 of 79) sorted by relevance

1234

/external/skia/src/gpu/gl/
H A DGrGLPathRange.cpp15 fStyle(style),
28 fStyle(style),
36 const SkStrokeRec& stroke = fStyle.strokeRec();
40 bool forceFill = fStyle.pathEffect() ||
68 GrGLPath::InitPathObjectStroke(gpu, fBasePathID + index, fStyle.strokeRec());
72 if (!fStyle.isSimpleFill()) {
79 if (!fStyle.applyToPath(tmpPath.init(), &fill, *skPath, SK_Scalar1)) {
H A DGrGLPathRange.h57 const GrStyle fStyle; member in class:GrGLPathRange
/external/skia/src/gpu/
H A DGrShape.cpp11 fStyle = that.fStyle;
67 if (Type::kEmpty == fType && !fStyle.hasNonDashPathEffect()) {
71 fStyle.adjustBounds(&bounds, this->bounds());
219 int styleCnt = GrStyle::KeySize(parent.fStyle, apply, styleKeyFlags);
236 GrStyle::WriteKey(fInheritedKey.get() + parentCnt, parent.fStyle, apply, scale,
241 GrShape::GrShape(const GrShape& that) : fStyle(that.fStyle) {
274 SkPathEffect* pe = parent.fStyle.pathEffect();
290 SkStrokeRec strokeRec = parent.fStyle
[all...]
H A DGrPath.h30 , fStyle(style)
50 GrStyle fStyle; member in class:GrPath
H A DGrShape.h49 GrShape(const SkPath& path, const GrStyle& style) : fStyle(style) {
55 : fStyle(style) {
66 : fStyle(style) {
85 : fStyle(style) {
94 GrShape(const SkPath& path, const SkPaint& paint) : fStyle(paint) {
100 : fStyle(paint) {
104 fRRectData.fStart = DefaultRRectDirAndStartIndex(rrect, fStyle.hasPathEffect(),
110 : fStyle(paint) {
114 fRRectData.fStart = DefaultRectDirAndStartIndex(rect, fStyle.hasPathEffect(),
124 const GrStyle& style() const { return fStyle; }
460 GrStyle fStyle; member in class:GrShape
[all...]
H A DGrPath.cpp39 int cnt0 = GrStyle::KeySize(fStyle, GrStyle::Apply::kPathEffectAndStrokeRec);
47 write_style_key(key0.get(), fStyle);
/external/skia/bench/
H A DMorphologyBench.cpp32 MorphologyType fStyle; member in class:MorphologyBench
39 fStyle = style;
67 switch (fStyle) {
H A DBlurBench.cpp31 SkBlurStyle fStyle; member in class:BlurBench
38 fStyle = bs;
68 paint.setMaskFilter(SkBlurMaskFilter::Make(fStyle,
/external/skia/src/core/
H A DSkAdvancedTypefaceMetrics.h29 , fStyle((StyleFlags)0)
70 StyleFlags fStyle; // Font style characteristics. variable
H A DSkFontDescriptor.cpp66 result->fStyle = SkFontStyle::FromOldStyle(styleBits);
68 result->fStyle = SkFontStyle((styleBits >> 16) & 0xFFFF,
121 uint32_t styleBits = (fStyle.weight() << 16) | (fStyle.width() << 8) | (fStyle.slant());
H A DSkFontDescriptor.h59 SkFontStyle getStyle() { return fStyle; }
60 void setStyle(SkFontStyle style) { fStyle = style; }
80 SkFontStyle fStyle; member in class:SkFontDescriptor
H A DSkMaskCache.cpp25 , fStyle(style)
30 sizeof(fSigma) + sizeof(fStyle) + sizeof(fQuality) + sizeof(fRRect));
34 int32_t fStyle; member in struct:__anon16968::RRectBlurKey
107 , fStyle(style)
124 sizeof(fSigma) + sizeof(fStyle) + sizeof(fQuality) + sizeof(fSizes));
128 int32_t fStyle; member in struct:__anon16969::RectsBlurKey
/external/skia/tools/
H A Dsk_tool_utils_font.cpp38 if (!strcmp(name, sub->fName) && sub->fStyle == style) {
65 SkDEBUGCODE(font->fDebugStyle = sub->fStyle);
H A Dcreate_test_font.cpp26 SkTypeface::Style fStyle; member in struct:FontDesc
314 SkTypeface::Style fStyle; member in struct:FontWritten
322 if (!strcmp(fontDesc.fFont, writ.fName) && fontDesc.fStyle == writ.fStyle) {
341 SkTypeface* systemTypeface = SkTypeface::CreateFromName(fontDesc.fFont, fontDesc.fStyle);
348 output_font(resourceTypeface, fontDesc.fFont, fontDesc.fStyle, out);
352 writ->fStyle = fontDesc.fStyle;
371 strippedStr.appendf("%s", gStyleName[writ.fStyle]);
389 strippedStr.appendf("%s", gStyleName[writ.fStyle]);
[all...]
/external/icu/icu4c/source/i18n/
H A Dscientificnumberformatter.cpp246 fStyle(styleToAdopt),
251 if (fDecimalFormat == NULL || fStyle == NULL) {
269 fStyle(NULL),
273 fStyle = other.fStyle->clone();
278 delete fStyle;
291 return fStyle->format(
H A Dreldatefmt.cpp77 const UnicodeString& getAbsoluteUnitString(int32_t fStyle,
80 const SimpleFormatter* getRelativeUnitFormatter(int32_t fStyle,
121 int32_t fStyle, UDateAbsoluteUnit unit, UDateDirection direction) const {
122 int32_t style = fStyle;
134 int32_t fStyle,
138 int32_t style = fStyle;
671 fStyle(UDAT_STYLE_LONG),
682 fStyle(UDAT_STYLE_LONG),
694 fStyle(UDAT_STYLE_LONG),
710 fStyle(sty
120 getAbsoluteUnitString( int32_t fStyle, UDateAbsoluteUnit unit, UDateDirection direction) const argument
133 getRelativeUnitFormatter( int32_t fStyle, UDateRelativeUnit unit, int32_t pastFutureIndex, int32_t pluralUnit) const argument
[all...]
/external/skia/include/core/
H A DSkTypeface.h58 return fStyle;
66 (fStyle.weight() >= SkFontStyle::kSemiBold_Weight ? kBold : kNormal) |
67 (fStyle.slant() != SkFontStyle::kUpright_Slant ? kItalic : kNormal));
71 bool isBold() const { return fStyle.weight() >= SkFontStyle::kSemiBold_Weight; }
74 bool isItalic() const { return fStyle.slant() != SkFontStyle::kUpright_Slant; }
342 void setFontStyle(SkFontStyle style) { fStyle = style; }
411 SkFontStyle fStyle; member in class:SkTypeface
H A DSkDrawLooper.h86 SkBlurStyle fStyle; member in struct:SkDrawLooper::BlurShadowRec
/external/skia/gm/
H A Ddrawlooper.cpp57 SkPaint::Style fStyle; member in struct:DrawLooperGM::__anon16785
78 paint->setStyle(gParams[i].fStyle);
H A Dblurs.cpp17 SkBlurStyle fStyle; member in struct:__anon16774
38 if (gRecs[i].fStyle != NONE) {
39 paint.setMaskFilter(SkBlurMaskFilter::Make(gRecs[i].fStyle,
/external/skia/src/gpu/text/
H A DGrStencilAndCoverTextContext.cpp332 : fStyle(fontAndStroke)
339 SkASSERT(!fStyle.hasNonDashPathEffect()); // Arbitrary path effects not supported.
340 SkASSERT(!fStyle.isSimpleHairline()); // Hairlines are not supported.
346 if (fFont.isFakeBoldText() && fStyle.isSimpleFill()) {
347 const SkStrokeRec& stroke = fStyle.strokeRec();
358 fStyle = GrStyle(strokeRec, fStyle.refPathEffect());
362 if (!fFont.getPathEffect() && !fStyle.isDashed()) {
363 const SkStrokeRec& stroke = fStyle.strokeRec();
369 if (!fStyle
[all...]
/external/skia/samplecode/
H A DSampleBlur.cpp80 SkBlurStyle fStyle; member in struct:BlurView::__anon16893
100 if (gRecs[i].fStyle != NONE) {
101 paint.setMaskFilter(SkBlurMaskFilter::Make(gRecs[i].fStyle,
H A DSampleFontScalerTest.cpp25 SkTypeface::Style fStyle; member in struct:__anon16899
45 gFaces[i].fName, SkFontStyle::FromOldStyle(gFaces[i].fStyle));
/external/skia/experimental/ChromeUtils/
H A DSkBorder.h64 BlurStyle fStyle; member in struct:SkBorder::ShadowInfo
/external/skia/include/effects/
H A DSk1DPathEffect.h79 Style fStyle; // copied from constructor member in class:SkPath1DPathEffect

Completed in 456 milliseconds

1234