HomeSort by relevance Sort by last modified time
    Searched refs:Style (Results 101 - 125 of 396) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/skia/gm/
emptypath.cpp 5 * Use of this source code is governed by a BSD-style license that can be
29 SkPaint::Style style,
35 paint.setStyle(style);
54 SkPaint::Style fStyle;
69 "Indicated Style and Fill";
81 for (size_t style = 0; style < SK_ARRAY_COUNT(gStyles); ++style) {
96 gStyles[style].fStyle, gFills[fill].fFill)
    [all...]
blurrect.cpp 4 * Use of this source code is governed by a BSD-style license that can be
141 SkBlurMask::Style fStyle;
143 BlurRectCompareGM(const char name[], unsigned int rectWidth, unsigned int rectHeight, float radius, SkBlurMask::Style style)
148 , fStyle(style)
160 SkBlurMask::Style style() const { function in class:BlurRectCompareGM
213 SkBlurMask::Style style) :
214 INHERITED(name, rect_width, rect_height, blur_radius, style)
    [all...]
  /frameworks/base/core/java/android/text/style/
BulletSpan.java 17 package android.text.style;
85 Paint.Style style = p.getStyle(); local
93 p.setStyle(Paint.Style.FILL);
114 p.setStyle(style);
  /packages/apps/Calendar/src/com/android/calendar/
ColorChipView.java 22 import android.graphics.Paint.Style;
37 // Style of drawing
69 mPaint.setStyle(Style.FILL_AND_STROKE);
73 public void setDrawStyle(int style) {
74 if (style != DRAW_FULL && style != DRAW_BORDER && style != DRAW_FADED) {
77 mDrawStyle = style;
  /external/skia/src/ports/
SkFontConfigInterface_android.cpp 5 * Use of this source code is governed by a BSD-style license that can be
57 SkTypeface::Style fStyle;
82 SkTypeface::Style requested,
85 SkTypeface::Style* outStyle) SK_OVERRIDE;
102 SkTypeface* getTypefaceForChar(SkUnichar uni, SkTypeface::Style style,
199 SkTypeface::Style* style, bool* isFixedWidth);
281 DEBUG_FONT(("Overwriting familyRec for style[%d] old,new:(%d,%d)",
371 static FontRecID find_best_style(const FamilyRec& family, SkTypeface::Style style)
863 SkTypeface::Style style; member in struct:TypefaceLookupStruct
    [all...]
SkFontHost_FreeType_common.h 5 * Use of this source code is governed by a BSD-style license that can be
50 SkTypeface_FreeType(Style style, SkFontID uniqueID, bool isFixedPitch)
51 : INHERITED(style, uniqueID, isFixedPitch)
  /development/samples/devbytes/animation/ListViewCellInsertion/src/com/example/android/insertingcells/
RoundView.java 61 mPaint.setStyle(Paint.Style.STROKE);
  /external/chromium_org/third_party/skia/include/core/
SkMaskFilter.h 5 * Use of this source code is governed by a BSD-style license that can be
174 SkPaint::Style style) const;
SkPaint.h 6 * Use of this source code is governed by a BSD-style license that can be
50 The SkPaint class holds the style and color information about how to draw
332 enum Style {
341 /** Return the paint's style, used for controlling how primitives'
344 @return the paint's Style
346 Style getStyle() const { return (Style)fStyle; }
348 /** Set the paint's style, used for controlling how primitives'
351 @param style The new style to set in the pain
954 SkPaint::Style style = this->getStyle(); local
    [all...]
  /external/chromium_org/third_party/skia/src/core/
SkStrokeRec.cpp 4 * Use of this source code is governed by a BSD-style license that can be
47 SkASSERT(!"unknown paint style");
54 // copy these from the paint, regardless of our "style"
60 SkStrokeRec::Style SkStrokeRec::getStyle() const {
  /external/chromium_org/third_party/skia/src/ports/
SkFontHost_FreeType_common.h 5 * Use of this source code is governed by a BSD-style license that can be
50 SkTypeface_FreeType(Style style, SkFontID uniqueID, bool isFixedPitch)
51 : INHERITED(style, uniqueID, isFixedPitch)
SkFontConfigInterface_android.cpp 5 * Use of this source code is governed by a BSD-style license that can be
57 SkTypeface::Style fStyle;
82 SkTypeface::Style requested,
85 SkTypeface::Style* outStyle) SK_OVERRIDE;
102 SkTypeface* getTypefaceForChar(SkUnichar uni, SkTypeface::Style style,
196 SkTypeface::Style* style, bool* isFixedWidth);
268 DEBUG_FONT(("Overwriting familyRec for style[%d] old,new:(%d,%d)",
363 static FontRecID find_best_style(const FamilyRec& family, SkTypeface::Style style)
756 SkTypeface::Style style; member in struct:TypefaceLookupStruct
    [all...]
  /external/skia/src/core/
SkStrokeRec.cpp 4 * Use of this source code is governed by a BSD-style license that can be
47 SkASSERT(!"unknown paint style");
54 // copy these from the paint, regardless of our "style"
60 SkStrokeRec::Style SkStrokeRec::getStyle() const {
  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
PathOffsetActivity.java 46 mPaint.setStyle(Paint.Style.STROKE);
PathsActivity.java 62 mSmallPaint.setStyle(Paint.Style.STROKE);
68 mLinePaint.setStyle(Paint.Style.STROKE);
74 mMediumPaint.setStyle(Paint.Style.STROKE);
80 mLargePaint.setStyle(Paint.Style.FILL);
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/colorpicker/
ColorRectView.java 80 mDotPaint.setStyle(Paint.Style.FILL);
83 mWheelPaint1.setStyle(Paint.Style.FILL);
84 mWheelPaint2.setStyle(Paint.Style.FILL);
85 mWheelPaint3.setStyle(Paint.Style.FILL);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/setup/
SetupStepIndicatorView.java 37 mIndicatorPaint.setStyle(Paint.Style.FILL);
  /frameworks/base/tools/layoutlib/bridge/src/android/graphics/
Canvas_Delegate.java 676 int style = paintDelegate.getStyle();
679 if (style == Paint.Style.FILL.nativeInt ||
680 style == Paint.Style.FILL_AND_STROKE.nativeInt) {
685 if (style == Paint.Style.STROKE.nativeInt ||
686 style == Paint.Style.FILL_AND_STROKE.nativeInt) {
701 int style = paintDelegate.getStyle()
    [all...]
  /packages/apps/Settings/src/com/android/settings/widget/
ChartNetworkSeriesView.java 28 import android.graphics.Paint.Style;
116 mPaintStroke.setStyle(Style.STROKE);
121 mPaintFill.setStyle(Style.FILL);
126 mPaintFillSecondary.setStyle(Style.FILL);
132 mPaintEstimate.setStyle(Style.STROKE);
  /external/skia/include/core/
SkPaint.h 6 * Use of this source code is governed by a BSD-style license that can be
50 The SkPaint class holds the style and color information about how to draw
332 enum Style {
341 /** Return the paint's style, used for controlling how primitives'
344 @return the paint's Style
346 Style getStyle() const { return (Style)fStyle; }
348 /** Set the paint's style, used for controlling how primitives'
351 @param style The new style to set in the pain
954 SkPaint::Style style = this->getStyle(); local
    [all...]
  /frameworks/support/v4/java/android/support/v4/app/
NotificationCompat.java 127 BigTextStyle style = (BigTextStyle) b.mStyle; local
128 jbBuilder.addBigTextStyle(style.mBigContentTitle,
129 style.mSummaryTextSet,
130 style.mSummaryText,
131 style.mBigText);
133 InboxStyle style = (InboxStyle) b.mStyle; local
134 jbBuilder.addInboxStyle(style.mBigContentTitle,
135 style.mSummaryTextSet,
136 style.mSummaryText,
137 style.mTexts)
139 BigPictureStyle style = (BigPictureStyle) b.mStyle; local
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/month/
SimpleWeekView.java 28 import android.graphics.Paint.Style;
315 * Sets up the text and style properties for painting. Override this if you
322 p.setStyle(Style.FILL);
329 mMonthNumPaint.setStyle(Style.FILL);
409 p.setStyle(Style.FILL);
437 p.setStyle(Style.FILL);
480 p.setStyle(Style.STROKE);
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/
EclipseControl.java 198 paint.setStyle(Paint.Style.FILL);
215 paint.setStyle(Paint.Style.FILL);
233 paint.setStyle(Paint.Style.STROKE);
249 paint.setStyle(Paint.Style.STROKE);
269 paint.setStyle(Paint.Style.FILL);
277 paint.setStyle(Paint.Style.STROKE);
  /cts/tests/tests/graphics/src/android/graphics/drawable/shapes/cts/
ShapeTest.java 25 import android.graphics.Paint.Style;
100 paint.setStyle(Style.FILL);
  /external/chromium_org/third_party/skia/src/pathops/
SkReduceOrder.cpp 4 * Use of this source code is governed by a BSD-style license that can be
31 static int vertical_line(const SkDQuad& quad, SkReduceOrder::Style reduceStyle,
52 static int horizontal_line(const SkDQuad& quad, SkReduceOrder::Style reduceStyle,
73 static int check_linear(const SkDQuad& quad, SkReduceOrder::Style reduceStyle,
140 int SkReduceOrder::reduce(const SkDQuad& quad, Style reduceStyle) {
204 static int vertical_line(const SkDCubic& cubic, SkReduceOrder::Style reduceStyle,
228 static int horizontal_line(const SkDCubic& cubic, SkReduceOrder::Style reduceStyle,
279 static int check_linear(const SkDCubic& cubic, SkReduceOrder::Style reduceStyle,
370 Style reduceStyle) {

Completed in 3038 milliseconds

1 2 3 45 6 7 8 91011>>