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

<<11121314151617181920>>

  /frameworks/base/libs/hwui/font/
Font.h 50 enum Style {
  /frameworks/base/libs/hwui/hwui/
Typeface.cpp 108 Typeface* Typeface::createFromTypeface(Typeface* src, SkTypeface::Style style) {
114 result->fSkiaStyle = style;
146 // TODO: probably better to query more precise style from family, will be important
148 result->fSkiaStyle = skTypeface->style();
  /frameworks/base/libs/hwui/tests/common/scenes/
ShapeAnimation.cpp 71 // each combination of strokeWidth + style gets a column
75 SkPaint::Style styles[] = {
77 for (auto style : styles) {
78 paint.setStyle(style);
  /frameworks/base/packages/SettingsLib/src/com/android/settingslib/drawable/
CircleFramedDrawable.java 81 mPaint.setStyle(Paint.Style.FILL);
  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
PathsCacheActivity.java 85 mMediumPaint.setStyle(Paint.Style.STROKE);
TextOnPathActivity.java 89 mPathPaint.setStyle(Paint.Style.STROKE);
  /frameworks/base/tools/aapt2/flatten/
TableFlattener.cpp 55 static bool cmpStyleEntries(const Style::Entry& a, const Style::Entry& b) {
108 void visit(Style* style) override {
109 if (style->parent) {
110 const Reference& parentRef = style->parent.value();
115 // Sort the style.
116 std::sort(style->entries.begin(), style->entries.end(), cmpStyleEntries);
118 for (Style::Entry& entry : style->entries)
    [all...]
  /frameworks/base/tools/aapt2/proto/
TableProtoDeserializer.cpp 249 const pb::Style& pbStyle = pbCompoundValue.style();
250 std::unique_ptr<Style> style = util::make_unique<Style>(); local
252 style->parent = Reference();
253 if (!deserializeReferenceFromPb(pbStyle.parent(), &style->parent.value())) {
261 style->parent.value().setSource(std::move(parentSource));
266 Style::Entry entry;
278 style->entries.push_back(std::move(entry))
    [all...]
  /frameworks/base/tools/aapt2/unflatten/
BinaryResourceParser.cpp 395 // Check if the string has a valid style associated with it.
464 std::unique_ptr<Style> BinaryResourceParser::parseStyle(const ResourceNameRef& name,
467 std::unique_ptr<Style> style = util::make_unique<Style>(); local
470 style->parent = Reference(util::deviceToHost32(map->parent.ident));
478 Style::Entry styleEntry;
484 style->entries.push_back(std::move(styleEntry));
486 return style;
  /frameworks/rs/java/tests/RsTest_11/src/com/android/rs/test/
RSTestCore.java 99 mFont = Font.create(mRS, mRes, "serif", Font.Style.BOLD, 8);
  /frameworks/rs/java/tests/RsTest_14/src/com/android/rs/test/
RSTestCore.java 103 mFont = Font.create(mRS, mRes, "serif", Font.Style.BOLD, 8);
  /frameworks/rs/java/tests/RsTest_16/src/com/android/rs/test/
RSTestCore.java 103 mFont = Font.create(mRS, mRes, "serif", Font.Style.BOLD, 8);
  /frameworks/support/design/base/android/support/design/widget/
CircularBorderDrawable.java 63 mPaint.setStyle(Paint.Style.STROKE);
  /packages/apps/PackageInstaller/src/android/support/wearable/view/
ProgressDrawable.java 59 /** How many different sections are there, five gives us the material style star. **/
81 mPaint.setStyle(Paint.Style.STROKE);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
GestureTrailsDrawingPreview.java 99 paint.setStyle(Paint.Style.FILL);
  /packages/services/Car/car-support-lib/src/android/support/car/ui/
DrawerArrowDrawable.java 72 R.style.CarDrawerArrowDrawable);
93 mPaint.setStyle(Paint.Style.STROKE);
  /external/chromium-trace/catapult/third_party/Paste/paste/evalexception/media/
MochiKit.packed.js     [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/spritetext/
LabelMaker.java 23 import android.graphics.Paint.Style;
70 mClearPaint.setStyle(Style.FILL);
  /external/skia/src/gpu/
GrBlurUtils.cpp 4 * Use of this source code is governed by a BSD-style license that can be
57 SkPaint::Style style) {
61 SkMask::kComputeBoundsAndRenderImage_CreateMode, style)) {
244 SkPaint::Style style = strokeInfo.isHairlineStyle() ? SkPaint::kStroke_Style : local
248 maskFilter, clipBounds, paint, style);
  /frameworks/base/core/java/android/gesture/
Gesture.java 195 paint.setStyle(Paint.Style.STROKE);
229 paint.setStyle(Paint.Style.STROKE);
  /frameworks/base/graphics/java/android/graphics/
Paint.java 36 * The Paint class holds the style and color information about how to draw
88 static final Style[] sStyleArray = {
89 Style.FILL, Style.STROKE, Style.FILL_AND_STROKE
340 * The Style specifies if the primitive being drawn is filled, stroked, or
343 public enum Style {
345 * Geometry and text drawn with this style will be filled, ignoring all
350 * Geometry and text drawn with this style will be stroked, respecting
355 * Geometry and text drawn with this style will be both filled an
    [all...]
  /frameworks/base/tools/aapt2/link/
ReferenceLinker.cpp 61 * We visit the Style specially because during this phase, values of attributes are
65 void visit(Style* style) override {
66 if (style->parent) {
67 visit(&style->parent.value());
70 for (Style::Entry& entry : style->entries) {
84 // Assign our style key the correct ID.
112 msg << "style attribute '";
  /external/llvm/include/llvm/Analysis/
RegionInfoImpl.h 475 PrintStyle Style) const {
483 if (Style != PrintNone) {
487 if (Style == PrintBB) {
490 } else if (Style == PrintRN) {
502 (*RI)->print(OS, print_tree, level + 1, Style);
505 if (Style != PrintNone)
  /external/skia/samplecode/
SampleFilterFuzz.cpp 4 * Use of this source code is governed by a BSD-style license that can be
174 static SkPaint::Style make_paint_style() {
175 return static_cast<SkPaint::Style>(R(SkPaint::kStrokeAndFill_Style+1));
202 static SkTypeface::Style make_typeface_style() {
203 return static_cast<SkTypeface::Style>(R(SkTypeface::kBoldItalic+1));
206 static SkPath1DPathEffect::Style make_path_1d_path_effect_style() {
207 return static_cast<SkPath1DPathEffect::Style>(R((int)SkPath1DPathEffect::kLastEnum_Style + 1));
  /external/sl4a/ScriptingLayerForAndroid/src/org/connectbot/util/
UberColorPickerDialog.java 300 mSwatchOld.setStyle(Paint.Style.FILL);
304 mSwatchNew.setStyle(Paint.Style.FILL);
312 mOvalHueSat.setStyle(Paint.Style.FILL);
324 mValDimmer.setStyle(Paint.Style.FILL);
339 mOvalHueSatSmall.setStyle(Paint.Style.FILL);
343 mPosMarker.setStyle(Paint.Style.STROKE);

Completed in 872 milliseconds

<<11121314151617181920>>