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

123

/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) {
H A DPaint.java77 static final Style[] sStyleArray = {
78 Style.FILL, Style.STROKE, Style.FILL_AND_STROKE
231 * The Style specifies if the primitive being drawn is filled, stroked, or
234 public enum Style { enum in class:Paint
254 Style(int nativeInt) { method in class:Paint.Style
668 public Style getStyle() {
679 public void setStyle(Style style) {
/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);
H A DDynamicDrawableSpan.java23 import android.graphics.Paint.Style;
/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 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 DShapesActivity.java53 mNormalPaint.setStyle(Paint.Style.FILL_AND_STROKE);
59 mStrokePaint.setStyle(Paint.Style.STROKE);
64 mFillPaint.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 DClearActivity.java55 mClearPaint.setStyle(Paint.Style.FILL);
H A DPathsCacheActivity.java71 mMediumPaint.setStyle(Paint.Style.STROKE);
/frameworks/base/libs/hwui/font/
H A DFont.h44 enum Style { enum in class:android::uirenderer::Font
68 int flags, uint32_t italicStyle, uint32_t scaleX, SkPaint::Style style,
92 uint32_t scaleX, SkPaint::Style style, uint32_t strokeWidth);
123 SkPaint::Style mStyle;
/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/base/core/jni/android/graphics/
H A DTypeface.cpp31 SkTypeface::Style style) {
35 face = SkTypeface::CreateFromName(NULL, (SkTypeface::Style)style);
45 return SkTypeface::CreateFromTypeface(family, (SkTypeface::Style)style);
H A DPathEffect.cpp46 SkFloatToScalar(phase), (SkPath1DPathEffect::Style)style);
/frameworks/base/graphics/java/android/renderscript/
H A DFont.java78 public enum Style { enum in class:Font
135 static String getFontFileName(String familyName, Style style) {
240 static public Font create(RenderScript rs, Resources res, String familyName, Style fontStyle, float pointSize) {
/frameworks/base/policy/src/com/android/internal/policy/impl/keyguard/
H A DKeyguardCircleFramedDrawable.java85 mPaint.setStyle(Paint.Style.FILL);
122 mPaint.setStyle(Paint.Style.FILL);
130 mPaint.setStyle(Paint.Style.STROKE);
/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/tools/layoutlib/bridge/src/android/graphics/
H A DCanvas_Delegate.java685 if (style == Paint.Style.FILL.nativeInt ||
686 style == Paint.Style.FILL_AND_STROKE.nativeInt) {
691 if (style == Paint.Style.STROKE.nativeInt ||
692 style == Paint.Style.FILL_AND_STROKE.nativeInt) {
710 if (style == Paint.Style.FILL.nativeInt ||
711 style == Paint.Style.FILL_AND_STROKE.nativeInt) {
716 if (style == Paint.Style.STROKE.nativeInt ||
717 style == Paint.Style.FILL_AND_STROKE.nativeInt) {
751 if (style == Paint.Style.FILL.nativeInt ||
752 style == Paint.Style
[all...]
/frameworks/support/v4/java/android/support/v4/app/
H A DNotificationCompat.java179 Style mStyle;
539 public Builder setStyle(Style style) {
570 public static abstract class Style class in class:NotificationCompat
612 public static class BigPictureStyle extends Style {
666 public static class BigTextStyle extends Style {
724 public static class InboxStyle extends Style {
/frameworks/base/docs/html/design/
H A Ddesign_toc.cs13 <div class="nav-section-header"><a href="<?cs var:toroot ?>design/style/index.html">Style</a></div>
22 <li><a href="<?cs var:toroot ?>design/style/writing.html">Writing Style</a></li>
/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/RenderScriptTests/SceneGraph/src/com/android/testapp/
H A DTestAppLoadingScreen.java33 import android.renderscript.Font.Style;

Completed in 2666 milliseconds

123