/packages/apps/Camera2/src/com/android/camera/ui/ |
ProgressRenderer.java | 123 paint.setStyle(Paint.Style.STROKE);
|
/packages/apps/Camera2/src/com/android/camera/widget/ |
SettingsCling.java | 48 mClingPaint.setStyle(Paint.Style.FILL);
|
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/ |
ImageFilterDraw.java | 25 import android.graphics.Paint.Style; 81 public void setStyle(byte style) { 82 mCurrentStyle = style % mDrawingsTypes.length; 119 paint.setStyle(Style.STROKE); 165 paint.setStyle(Style.STROKE); 228 paint.setStyle(Style.STROKE);
|
/packages/apps/Launcher3/src/com/android/launcher3/ |
LauncherRootView.java | 26 mOpaquePaint.setStyle(Paint.Style.FILL);
|
/development/samples/ApiDemos/src/com/example/android/apis/graphics/ |
ColorPickerDialog.java | 52 mPaint.setStyle(Paint.Style.STROKE); 74 mCenterPaint.setStyle(Paint.Style.STROKE); 85 mCenterPaint.setStyle(Paint.Style.FILL);
|
/device/google/accessory/demokit/app/src/com/google/android/DemoKit/ |
ColorWheel.java | 26 /* This class was masterfully pilfered, Carmen-Sandiego style, from our awesome sample app 65 mPaint.setStyle(Paint.Style.STROKE); 90 mCenterPaint.setStyle(Paint.Style.STROKE); 101 mCenterPaint.setStyle(Paint.Style.FILL);
|
/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);
|
/frameworks/base/tools/aapt2/ |
ResourceValues.h | 277 struct Style : public BaseValue<Style> { 287 * style's name. 293 Style* clone(StringPool* newPool) const override;
|
ResourceValues.cpp | 448 Style* Style::clone(StringPool* newPool) const { 449 Style* style = new Style(); local 450 style->parent = parent; 451 style->parentInferred = parentInferred; 452 style->mComment = mComment; 453 style->mSource = mSource; 455 style->entries.push_back(Entry [all...] |
Debug.cpp | 53 void visit(Style* style) override { 54 std::cout << "(style)"; 55 if (style->parent) { 56 const Reference& parentRef = style->parent.value(); 70 for (const auto& entry : style->entries) { 194 // We've already visited this style. 202 if (Style* style = valueCast<Style>(value->value.get())) [all...] |
/frameworks/rs/java/tests/HealingBrush/src/rs/example/android/com/healingbrush/ |
Region.java | 81 paint1.setStyle(Paint.Style.STROKE);
82 paint2.setStyle(Paint.Style.STROKE);
132 paint.setStyle(Paint.Style.STROKE);
|
/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);
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/util/ |
TrieMap.java | 34 public enum Style { 57 static public <K extends CharSequence, V> Builder<V> with(Style style, Map<K, V> keyValuePairs) { 58 return with(style, Option.SMALL, keyValuePairs); 61 static public <K extends CharSequence, V> Builder<V> with(Style style, Option option, Map<K, V> keyValuePairs) { 62 Builder<V> result = style == Style.BYTES ? new BytesTrieMap.BytesBuilder<V>() 68 static public <K extends CharSequence, V> Builder<V> with(Style style, K key, V value) [all...] |
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/ |
TrieMap.java | 33 public enum Style { 56 static public <K extends CharSequence, V> Builder<V> with(Style style, Map<K, V> keyValuePairs) { 57 return with(style, Option.SMALL, keyValuePairs); 60 static public <K extends CharSequence, V> Builder<V> with(Style style, Option option, Map<K, V> keyValuePairs) { 61 Builder<V> result = style == Style.BYTES ? new BytesTrieMap.BytesBuilder<V>() 67 static public <K extends CharSequence, V> Builder<V> with(Style style, K key, V value) [all...] |
/external/icu/android_icu4j/src/main/java/android/icu/text/ |
TimeZoneFormat.java | 73 * Time zone display format style enum used by format/parse APIs in <code>TimeZoneFormat</code>. 75 * @see TimeZoneFormat#format(Style, TimeZone, long) 76 * @see TimeZoneFormat#format(Style, TimeZone, long, Output) 77 * @see TimeZoneFormat#parse(Style, String, ParsePosition, Output) 79 public enum Style { 82 * This style is equivalent to the LDML date format pattern "VVVV". 87 * This style is equivalent to the LDML date format pattern "vvvv". 92 * This style is equivalent to the LDML date format pattern "v". 97 * This style is equivalent to the LDML date format pattern "zzzz". 102 * This style is equivalent to the LDML date format pattern "z" [all...] |
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
TimeZoneFormat.java | 73 * Time zone display format style enum used by format/parse APIs in <code>TimeZoneFormat</code>. 75 * @see TimeZoneFormat#format(Style, TimeZone, long) 76 * @see TimeZoneFormat#format(Style, TimeZone, long, Output) 77 * @see TimeZoneFormat#parse(Style, String, ParsePosition, Output) 80 public enum Style { 83 * This style is equivalent to the LDML date format pattern "VVVV". 89 * This style is equivalent to the LDML date format pattern "vvvv". 95 * This style is equivalent to the LDML date format pattern "v". 101 * This style is equivalent to the LDML date format pattern "zzzz". 107 * This style is equivalent to the LDML date format pattern "z" [all...] |
/frameworks/opt/datetimepicker/src/com/android/datetimepicker/date/ |
MonthView.java | 24 import android.graphics.Paint.Style; 277 * Sets up the text and style properties for painting. Override this if you 288 mMonthTitlePaint.setStyle(Style.FILL); 295 mMonthTitleBGPaint.setStyle(Style.FILL); 302 mSelectedCirclePaint.setStyle(Style.FILL); 310 mMonthDayLabelPaint.setStyle(Style.FILL); 317 mMonthNumPaint.setStyle(Style.FILL);
|
/external/clang/tools/clang-format/ |
ClangFormat.cpp | 64 Style("style", 68 FallbackStyle("fallback-style", 69 cl::desc("The name of the predefined style used as a\n" 71 "-style=file, but can not find the .clang-format\n" 73 "Use -fallback-style=none to skip formatting."), 79 "filename to look for a style config file (with\n" 80 "-style=file) and to determine the language."), 93 "Can be used with -style option."), 104 "SortIncludes style flag") [all...] |
/external/skia/samplecode/ |
SampleDraw.cpp | 5 * Use of this source code is governed by a BSD-style license that can be 163 enum Style { 170 RDraw(const SkRect& r, Style s) : fRect(r), fStyle(s) {} 223 Style fStyle;
|
/external/skia/src/animator/ |
SkDrawPaint.cpp | 4 * Use of this source code is governed by a BSD-style license that can be 53 SK_MEMBER(style, Style), 71 strokeWidth(SK_ScalarNaN), style((SkPaint::Style) -1), 222 // stroke is legacy; style setting if present overrides stroke 225 if (style != -1) 226 paint->setStyle((SkPaint::Style) style);
|
/frameworks/base/tests/VoiceInteraction/src/com/android/test/voiceinteraction/ |
AssistVisualizer.java | 76 mFramePaint.setStyle(Paint.Style.STROKE); 79 mFrameBaselinePaint.setStyle(Paint.Style.STROKE); 84 mFrameNoTransformPaint.setStyle(Paint.Style.STROKE);
|
/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/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);
|