HomeSort by relevance Sort by last modified time
    Searched refs:Style (Results 176 - 200 of 550) sorted by null

1 2 3 4 5 6 78 91011>>

  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/
ImageDraw.java 86 mBorderPaint.setStyle(Paint.Style.STROKE);
88 mShadowPaint.setStyle(Paint.Style.FILL);
125 public void setStyle(byte style) {
126 mType = (byte) (style % ImageFilterDraw.NUMBER_OF_STYLES);
265 mIconPaint.setStyle(Paint.Style.STROKE);
  /packages/apps/Settings/src/com/android/settings/sim/
SimPreferenceDialog.java 226 holder.swatch.getPaint().setStyle(Paint.Style.FILL_AND_STROKE);
238 holder.swatch.getPaint().setStyle(Paint.Style.FILL_AND_STROKE);
240 holder.swatch.getPaint().setStyle(Paint.Style.STROKE);
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/projection/touch/
TouchPointView.java 58 mPaint.setStyle(Paint.Style.FILL);
  /cts/tests/tests/graphics/src/android/graphics/cts/
EmbossMaskFilterTest.java 45 paint.setStyle(Paint.Style.STROKE);
PathDashPathEffectTest.java 43 PathDashPathEffect.Style.TRANSLATE);
  /cts/tests/tests/view/src/android/view/cts/util/
DrawingUtils.java 58 goldenPaint.setStyle(Paint.Style.FILL_AND_STROKE);
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
Compass.java 102 paint.setStyle(Paint.Style.FILL);
ScaleToFit.java 66 mHairPaint.setStyle(Paint.Style.STROKE);
  /external/skia/gm/
cubicpaths.cpp 4 * Use of this source code is governed by a BSD-style license that can be
141 SkPaint::Style style, SkPath::FillType fill,
149 paint.setStyle(style);
168 SkPaint::Style fStyle;
203 "Indicated Style, Fill and Linecaps, with stroke width 10";
224 for (size_t style = 0; style < SK_ARRAY_COUNT(gStyles); ++style) {
225 if (0 < style) {
    [all...]
nonclosedpaths.cpp 4 * Use of this source code is governed by a BSD-style license that can be
72 // 0(may use hairline rendering), 10(common case for stroke-style)
77 static const SkPaint::Style kStyle[] = {
97 // For stroke style painter and fill-and-stroke style painter
99 for (size_t style = 0; style < SK_ARRAY_COUNT(kStyle); ++style) {
109 paint.setStyle(kStyle[style]);
123 // For fill style painte
    [all...]
scaledstrokes.cpp 4 * Use of this source code is governed by a BSD-style license that can be
41 paint.setStyle(SkPaint::Style::kStroke_Style);
  /external/skia/samplecode/
SampleFontScalerTest.cpp 5 * Use of this source code is governed by a BSD-style license that can be
26 SkTypeface::Style fStyle;
  /external/skia/src/ports/
SkFontConfigInterface_direct.cpp 4 * Use of this source code is governed by a BSD-style license that can be
307 SkTypeface::Style GetFontStyle(FcPattern* font) {
336 return (SkTypeface::Style)styleBits;
421 SkTypeface::Style style,
424 SkTypeface::Style* outStyle) {
438 (style & SkTypeface::kBold) ? FC_WEIGHT_BOLD
441 (style & SkTypeface::kItalic) ? FC_SLANT_ITALIC
  /external/skia/tools/
test_font_index.cpp 4 * Use of this source code is governed by a BSD-style license that can be
65 SkTypeface::Style fStyle;
  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
ClearActivity.java 55 mClearPaint.setStyle(Paint.Style.FILL);
  /frameworks/base/tools/aapt2/
ResourceParser.h 94 bool parseStyleItem(xml::XmlPullParser* parser, Style* style);
  /frameworks/opt/bitmap/src/com/android/bitmap/drawable/
StyledCornersBitmapDrawable.java 23 import android.graphics.Paint.Style;
92 mFlapPaint.setStyle(Style.FILL);
96 mBorderPaint.setStyle(Style.STROKE);
101 mCompatibilityModeBackgroundPaint.setStyle(Style.FILL);
147 * Get the flap color for all corners that have style {@link #CORNER_STYLE_SHARP}.
154 * Set the flap color for all corners that have style {@link #CORNER_STYLE_SHARP}.
  /frameworks/opt/chips/src/com/android/ex/chips/
CircularImageView.java 53 borderPaint.setStyle(Paint.Style.STROKE);
  /packages/apps/PackageInstaller/src/android/support/wearable/view/
CircledImageView.java 29 import android.graphics.Paint.Style;
222 mPaint.setStyle(Style.FILL);
241 mPaint.setStyle(Style.STROKE);
262 mPaint.setStyle(Style.FILL);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/setup/
SetupStartIndicatorView.java 93 mIndicatorPaint.setStyle(Paint.Style.FILL);
  /prebuilts/gdb/darwin-x86/lib/python2.7/lib-tk/test/test_ttk/
test_style.py 13 self.style = ttk.Style()
17 style = self.style
18 style.configure('TButton', background='yellow')
19 self.assertEqual(style.configure('TButton', 'background'),
21 self.assertTrue(isinstance(style.configure('TButton'), dict))
25 style = self.style
26 style.map('TButton', background=[('active', 'background', 'blue')]
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/lib-tk/test/test_ttk/
test_style.py 13 self.style = ttk.Style()
17 style = self.style
18 style.configure('TButton', background='yellow')
19 self.assertEqual(style.configure('TButton', 'background'),
21 self.assertTrue(isinstance(style.configure('TButton'), dict))
25 style = self.style
26 style.map('TButton', background=[('active', 'background', 'blue')]
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/test/test_ttk/
test_style.py 13 self.style = ttk.Style()
17 style = self.style
18 style.configure('TButton', background='yellow')
19 self.assertEqual(style.configure('TButton', 'background'),
21 self.assertTrue(isinstance(style.configure('TButton'), dict))
25 style = self.style
26 style.map('TButton', background=[('active', 'background', 'blue')]
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/test/test_ttk/
test_style.py 13 self.style = ttk.Style()
17 style = self.style
18 style.configure('TButton', background='yellow')
19 self.assertEqual(style.configure('TButton', 'background'),
21 self.assertTrue(isinstance(style.configure('TButton'), dict))
25 style = self.style
26 style.map('TButton', background=[('active', 'background', 'blue')]
    [all...]
  /packages/apps/Settings/src/com/android/settings/fuelgauge/
BatteryHistoryChart.java 72 mPaints[i].setStyle(Paint.Style.FILL);
302 public void setTypeface(TextPaint paint, Typeface tf, int style) {
303 if (style > 0) {
305 tf = Typeface.defaultFromStyle(style);
307 tf = Typeface.create(tf, style);
313 int need = style & ~typefaceStyle;
366 mBatteryBackgroundPaint.setStyle(Paint.Style.FILL);
368 mBatteryGoodPaint.setStyle(Paint.Style.STROKE);
370 mBatteryWarnPaint.setStyle(Paint.Style.STROKE);
372 mBatteryCriticalPaint.setStyle(Paint.Style.STROKE)
    [all...]

Completed in 3425 milliseconds

1 2 3 4 5 6 78 91011>>