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

1 2 3 4 5 67 8 91011>>

  /frameworks/base/packages/Keyguard/src/com/android/keyguard/
KeyguardCircleFramedDrawable.java 85 mPaint.setStyle(Paint.Style.FILL);
127 mPaint.setStyle(Paint.Style.FILL);
135 mPaint.setStyle(Paint.Style.STROKE);
  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
ShapesActivity.java 55 mNormalPaint.setStyle(Paint.Style.FILL_AND_STROKE);
61 mStrokePaint.setStyle(Paint.Style.STROKE);
66 mFillPaint.setStyle(Paint.Style.FILL);
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/info/
HistogramView.java 100 mPaint.setStyle(Paint.Style.STROKE);
105 mPaint.setStyle(Paint.Style.FILL);
133 mPaint.setStyle(Paint.Style.STROKE);
  /packages/apps/Settings/src/com/android/settings/applications/
LinearColorBar.java 65 mPaint.setStyle(Paint.Style.FILL);
66 mColorGradientPaint.setStyle(Paint.Style.FILL);
68 mEdgeGradientPaint.setStyle(Paint.Style.STROKE);
  /packages/apps/Settings/src/com/android/settings/users/
CircleFramedDrawable.java 106 mPaint.setStyle(Paint.Style.FILL);
141 mPaint.setStyle(Paint.Style.FILL);
149 mPaint.setStyle(Paint.Style.STROKE);
  /packages/apps/Settings/src/com/android/settings/widget/
PieChartView.java 25 import android.graphics.Paint.Style;
89 mPaintOutline.setStyle(Style.STROKE);
102 paint.setStyle(Style.FILL_AND_STROKE);
  /frameworks/base/tests/RenderScriptTests/MiscSamples/src/com/example/android/rs/miscsamples/
RsRenderStatesRS.java 23 import android.renderscript.Font.Style;
328 mFontSans = Font.create(mRS, mRes, "sans-serif", Font.Style.NORMAL, 8);
329 mFontSerif = Font.create(mRS, mRes, "serif", Font.Style.NORMAL, 8);
330 // Create fonts by family and style
331 mFontSerifBold = Font.create(mRS, mRes, "serif", Font.Style.BOLD, 8);
332 mFontSerifItalic = Font.create(mRS, mRes, "serif", Font.Style.ITALIC, 8);
333 mFontSerifBoldItalic = Font.create(mRS, mRes, "serif", Font.Style.BOLD_ITALIC, 8);
334 mFontMono = Font.create(mRS, mRes, "mono", Font.Style.NORMAL, 8);
  /packages/apps/Settings/src/com/android/settings/fuelgauge/
BatteryHistoryChart.java 56 mPaints[i].setStyle(Paint.Style.FILL);
182 mBatteryBackgroundPaint.setStyle(Paint.Style.FILL);
184 mBatteryGoodPaint.setStyle(Paint.Style.STROKE);
186 mBatteryWarnPaint.setStyle(Paint.Style.STROKE);
188 mBatteryCriticalPaint.setStyle(Paint.Style.STROKE);
190 mChargingPaint.setStyle(Paint.Style.STROKE);
191 mScreenOnPaint.setStyle(Paint.Style.STROKE);
192 mGpsOnPaint.setStyle(Paint.Style.STROKE);
193 mWifiRunningPaint.setStyle(Paint.Style.STROKE);
194 mWakeLockPaint.setStyle(Paint.Style.STROKE)
    [all...]
  /external/chromium_org/third_party/skia/src/ports/
SkFontConfigInterface_direct.cpp 4 * Use of this source code is governed by a BSD-style license that can be
107 SkTypeface::Style requested,
110 SkTypeface::Style* outStyle) SK_OVERRIDE;
383 SkTypeface::Style GetFontStyle(FcPattern* font) {
412 return (SkTypeface::Style)styleBits;
433 SkTypeface::Style style,
436 SkTypeface::Style* outStyle) {
450 (style & SkTypeface::kBold) ? FC_WEIGHT_BOLD
453 (style & SkTypeface::kItalic) ? FC_SLANT_ITALI
    [all...]
  /external/skia/src/ports/
SkFontConfigInterface_direct.cpp 4 * Use of this source code is governed by a BSD-style license that can be
107 SkTypeface::Style requested,
110 SkTypeface::Style* outStyle) SK_OVERRIDE;
383 SkTypeface::Style GetFontStyle(FcPattern* font) {
412 return (SkTypeface::Style)styleBits;
433 SkTypeface::Style style,
436 SkTypeface::Style* outStyle) {
450 (style & SkTypeface::kBold) ? FC_WEIGHT_BOLD
453 (style & SkTypeface::kItalic) ? FC_SLANT_ITALI
    [all...]
  /frameworks/opt/datetimepicker/src/com/android/datetimepicker/date/
SimpleMonthView.java 24 import android.graphics.Paint.Style;
260 * Sets up the text and style properties for painting. Override this if you
271 mMonthTitlePaint.setStyle(Style.FILL);
278 mMonthTitleBGPaint.setStyle(Style.FILL);
285 mSelectedCirclePaint.setStyle(Style.FILL);
293 mMonthDayLabelPaint.setStyle(Style.FILL);
300 mMonthNumPaint.setStyle(Style.FILL);
  /external/chromium_org/third_party/skia/src/animator/
SkDrawPaint.cpp 5 * Use of this source code is governed by a BSD-style license that can be
55 SK_MEMBER(style, Style),
73 strokeWidth(SK_ScalarNaN), style((SkPaint::Style) -1),
224 // stroke is legacy; style setting if present overrides stroke
227 if (style != -1)
228 paint->setStyle((SkPaint::Style) style);
  /external/skia/src/animator/
SkDrawPaint.cpp 5 * Use of this source code is governed by a BSD-style license that can be
55 SK_MEMBER(style, Style),
73 strokeWidth(SK_ScalarNaN), style((SkPaint::Style) -1),
224 // stroke is legacy; style setting if present overrides stroke
227 if (style != -1)
228 paint->setStyle((SkPaint::Style) style);
  /packages/apps/Calendar/src/com/android/calendar/month/
MonthWeekEventsView.java 34 import android.graphics.Paint.Style;
341 * Sets up the text and style properties for painting. Override this if you
403 mMonthNumPaint.setStyle(Style.FILL);
435 mEventExtrasPaint.setStyle(Style.FILL);
447 mEventDeclinedExtrasPaint.setStyle(Style.FILL);
455 mWeekNumPaint.setStyle(Style.FILL);
463 mDNATimePaint.setStyle(Style.FILL_AND_STROKE);
467 mDNAAllDayPaint.setStyle(Style.FILL_AND_STROKE);
563 p.setStyle(Style.STROKE);
570 p.setStyle(Style.FILL)
    [all...]
  /packages/apps/Camera2/src/com/android/camera/crop/
CropDrawingUtils.java 32 p.setStyle(Paint.Style.STROKE);
51 p.setStyle(Paint.Style.STROKE);
61 p.setStyle(Paint.Style.FILL);
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/crop/
CropDrawingUtils.java 32 p.setStyle(Paint.Style.STROKE);
51 p.setStyle(Paint.Style.STROKE);
61 p.setStyle(Paint.Style.FILL);
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/
GradControl.java 189 paint.setStyle(Paint.Style.FILL);
202 paint.setStyle(Paint.Style.FILL);
215 mPaint.setStyle(Paint.Style.STROKE);
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);
  /cts/tests/tests/graphics/src/android/graphics/cts/
EmbossMaskFilterTest.java 45 paint.setStyle(Paint.Style.STROKE);
PathDashPathEffectTest.java 43 PathDashPathEffect.Style.TRANSLATE);
  /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/chromium_org/third_party/skia/include/core/
SkDraw.h 5 * Use of this source code is governed by a BSD-style license that can be
80 SkPaint::Style style);
90 * Based on the paint's style, strokeWidth, and the matrix, classify how
  /external/chromium_org/ui/app_list/
search_result.h 2 // Use of this source code is governed by a BSD-style license that can be
28 // default style.
33 // Similar to ACMatchClassification::Style, the style values are not
35 enum Style {
  /external/chromium_org/ui/views/controls/
glow_hover_controller.cc 2 // Use of this source code is governed by a BSD-style license that can be
43 void GlowHoverController::Show(Style style) {
44 switch (style) {

Completed in 800 milliseconds

1 2 3 4 5 67 8 91011>>