Searched refs:Style (Results 1 - 25 of 93) sorted by relevance

1234

/frameworks/base/graphics/java/android/graphics/
H A DPathDashPathEffect.java21 public enum Style { enum in class:PathDashPathEffect
26 Style(int value) { method in class:PathDashPathEffect.Style
43 Style style) {
/frameworks/base/core/jni/android/graphics/
H A DTypefaceImpl.h33 SkTypeface::Style fSkiaStyle;
49 TypefaceImpl* TypefaceImpl_createFromTypeface(TypefaceImpl* src, SkTypeface::Style style);
H A DTypeface.cpp32 TypefaceImpl* face = TypefaceImpl_createFromTypeface(family, (SkTypeface::Style)style);
36 face = TypefaceImpl_createFromTypeface(family, (SkTypeface::Style)(style ^ SkTypeface::kItalic));
39 face = TypefaceImpl_createFromTypeface(family, (SkTypeface::Style)i);
/frameworks/base/core/java/android/text/style/
H A DQuoteSpan.java70 Paint.Style style = p.getStyle();
73 p.setStyle(Paint.Style.FILL);
H A DBulletSpan.java85 Paint.Style style = p.getStyle();
93 p.setStyle(Paint.Style.FILL);
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
H A DPathDestructionActivity.java53 strokePaint.setStyle(Paint.Style.STROKE);
54 fillPaint.setStyle(Paint.Style.FILL);
55 fillAndStrokePaint.setStyle(Paint.Style.FILL_AND_STROKE);
H A DScaledPathsActivity.java49 mPathPaint.setStyle(Paint.Style.FILL);
66 mPathPaint.setStyle(Paint.Style.FILL);
75 mPathPaint.setStyle(Paint.Style.STROKE);
H A DTextActivity.java89 mMediumPaint.setStyle(Paint.Style.FILL_AND_STROKE);
93 mMediumPaint.setStyle(Paint.Style.FILL);
97 mMediumPaint.setStyle(Paint.Style.STROKE);
102 mMediumPaint.setStyle(Paint.Style.FILL);
H A DPathOffsetActivity.java46 mPaint.setStyle(Paint.Style.STROKE);
H A DPathsActivity.java62 mSmallPaint.setStyle(Paint.Style.STROKE);
68 mLinePaint.setStyle(Paint.Style.STROKE);
74 mMediumPaint.setStyle(Paint.Style.STROKE);
80 mLargePaint.setStyle(Paint.Style.FILL);
H A DCirclePropActivity.java24 import android.graphics.Paint.Style;
81 p.setStyle(Style.STROKE);
H A DPathOpsActivity.java49 mPaint.setStyle(Paint.Style.FILL);
H A DShapesActivity.java55 mNormalPaint.setStyle(Paint.Style.FILL_AND_STROKE);
61 mStrokePaint.setStyle(Paint.Style.STROKE);
66 mFillPaint.setStyle(Paint.Style.FILL);
/frameworks/base/tests/RenderScriptTests/PerfTest/src/com/android/perftest/
H A DTextTest.java89 Font.Style.NORMAL, 8.0f / metrics.density));
91 Font.Style.NORMAL, 8.0f / metrics.density));
/frameworks/opt/datetimepicker/src/com/android/datetimepicker/date/
H A DTextViewWithCircularIndicator.java24 import android.graphics.Paint.Style;
60 mCirclePaint.setStyle(Style.FILL);
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DCanvas_Delegate.java580 if (style == Paint.Style.FILL.nativeInt ||
581 style == Paint.Style.FILL_AND_STROKE.nativeInt) {
586 if (style == Paint.Style.STROKE.nativeInt ||
587 style == Paint.Style.FILL_AND_STROKE.nativeInt) {
606 if (style == Paint.Style.FILL.nativeInt ||
607 style == Paint.Style.FILL_AND_STROKE.nativeInt) {
612 if (style == Paint.Style.STROKE.nativeInt ||
613 style == Paint.Style.FILL_AND_STROKE.nativeInt) {
648 if (style == Paint.Style.FILL.nativeInt ||
649 style == Paint.Style
[all...]
/frameworks/base/rs/java/android/renderscript/
H A DFont.java76 public enum Style { enum in class:Font
133 static String getFontFileName(String familyName, Style style) {
238 static public Font create(RenderScript rs, Resources res, String familyName, Style fontStyle, float pointSize) {
/frameworks/base/media/java/android/media/
H A DTimedText.java66 private static final int KEY_STRUCT_STYLE_LIST = 13; // List<Style>
102 private List<Style> mStyleList = null;
171 public static final class Style { class in class:TimedText
225 public Style(int startChar, int endChar, int fontId, method in class:TimedText.Style
529 * To parse and store the Style list.
574 // End of the Style parsing. Reset the data position back
583 Style style = new Style(startChar, endChar, fontId, isBold,
586 mStyleList = new ArrayList<Style>();
724 * List of CharPos, Karaoke, Font, Style, an
[all...]
/frameworks/base/docs/html/design/
H A Ddesign_toc.cs28 <li><a href="<?cs var:toroot ?>design/wear/style.html">Style</a></li>
38 <li><a href="<?cs var:toroot ?>design/tv/style.html">Style</a></li>
46 <div class="nav-section-header"><a href="<?cs var:toroot ?>design/style/index.html">Style</a></div>
56 <li><a href="<?cs var:toroot ?>design/style/writing.html" zh-cn-lang="写作风格">Writing Style</a></li>
/frameworks/base/core/java/com/android/internal/widget/
H A DSubtitleView.java27 import android.graphics.Paint.Style;
311 paint.setStyle(Style.FILL);
329 textPaint.setStyle(Style.FILL_AND_STROKE);
344 textPaint.setStyle(Style.FILL);
355 textPaint.setStyle(Style.FILL);
/frameworks/opt/bitmap/src/com/android/bitmap/drawable/
H A DCircularBitmapDrawable.java27 import android.graphics.Paint.Style;
62 mBorderPaint.setStyle(Style.STROKE);
/frameworks/base/tests/RenderScriptTests/MiscSamples/src/com/example/android/rs/miscsamples/
H A DRsListRS.java132 mItalic = Font.create(mRS, mRes, "serif", Font.Style.BOLD_ITALIC, 8);
H A DRsRenderStatesRS.java23 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);
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);
/frameworks/base/tests/TransitionTests/src/com/android/transitiontests/
H A DHitRectBug.java53 mPaint.setStyle(Paint.Style.STROKE);
/frameworks/base/packages/Keyguard/src/com/android/keyguard/
H A DKeyguardCircleFramedDrawable.java83 mPaint.setStyle(Paint.Style.FILL);
125 mPaint.setStyle(Paint.Style.FILL);
133 mPaint.setStyle(Paint.Style.STROKE);

Completed in 794 milliseconds

1234