Searched refs:style (Results 26 - 50 of 360) sorted by relevance

1234567891011>>

/frameworks/base/docs/html/distribute/googleplay/
H A Dgoogleplay_toc.cs4 <div class="nav-section-header empty" style="font-weight:normal"><a href="<?cs var:toroot?>distribute/googleplay/about.html"
16 <div class="nav-section-header empty" style="font-weight:normal"><a href="<?cs var:toroot?>distribute/googleplay/start.html"
29 <div class="nav-section-header empty" style="font-weight:normal"><a href="<?cs var:toroot?>distribute/googleplay/developer-console.html"
42 <div class="nav-section-header empty" style="font-weight:normal"><a href="<?cs var:toroot?>distribute/googleplay/wear.html"
50 <span class="en">Distribute to <br /><span style="white-space:nowrap">Android Wear</span></span>
55 <div class="nav-section-header empty" style="font-weight:normal"><a href="<?cs var:toroot?>distribute/googleplay/tv.html"
63 <span class="en">Distribute to <br /><span style="white-space:nowrap">Android TV</span></span>
68 <div class="nav-section-header empty" style="font-weight:normal"><a href="<?cs var:toroot?>distribute/googleplay/auto.html"
76 <span class="en">Distribute to <br /><span style="white-space:nowrap">Android Auto</span></span>
81 <div class="nav-section-header empty" style
[all...]
/frameworks/minikin/include/minikin/
H A DFontFamily.h33 // FontStyle represents all style information needed to select an actual font
78 inline hash_t hash_type(const FontStyle &style) { argument
79 return style.hash();
116 // Add font to family, extracting style information from the font
119 void addFont(MinikinFont* typeface, FontStyle style);
120 FakedFont getClosestMatch(FontStyle style) const;
143 void addFontLocked(MinikinFont* typeface, FontStyle style);
147 Font(MinikinFont* typeface, FontStyle style) : argument
148 typeface(typeface), style(style) { }
150 FontStyle style; member in class:android::FontFamily::Font
[all...]
H A DFontCollection.h40 void itemize(const uint16_t *string, size_t string_length, FontStyle style,
48 // Get the base font for the given style, useful for font-wide metrics.
49 MinikinFont* baseFont(FontStyle style);
52 FakedFont baseFontFaked(FontStyle style);
/frameworks/base/core/java/android/text/style/
H A DStyleSpan.java17 package android.text.style;
28 * Describes a style in a span.
30 * separate spans, or if the base style is bold and a span calls for italic,
31 * you get bold italic. You can't turn off a style from the base style.
40 * @param style An integer constant describing the style for this span. Examples
44 public StyleSpan(int style) { argument
45 mStyle = style;
75 * Returns the style constan
91 apply(Paint paint, int style) argument
[all...]
H A DClickableSpan.java17 package android.text.style;
H A DLineBackgroundSpan.java17 package android.text.style;
H A DMaskFilterSpan.java17 package android.text.style;
H A DRasterizerSpan.java17 package android.text.style;
H A DLineHeightSpan.java17 package android.text.style;
H A DQuoteSpan.java17 package android.text.style;
82 Paint.Style style = p.getStyle();
90 p.setStyle(style);
H A DTextAppearanceSpan.java17 package android.text.style;
29 * Sets the text color, size, style, and typeface to match a TextAppearance
42 * <code>android.R.style.TextAppearance_Small</code>.
52 * for example, <code>android.R.style.TextAppearance_Small</code>,
99 a = context.obtainStyledAttributes(com.android.internal.R.style.Theme,
110 * Makes text be drawn with the specified typeface, size, style,
113 public TextAppearanceSpan(String family, int style, int size, argument
116 mStyle = style;
207 * Returns the text style specified by this span, or <code>0</code>
231 int style
[all...]
/frameworks/base/core/jni/
H A Dandroid_view_PointerIcon.h70 int32_t style; member in struct:android::PointerIcon
78 return style == POINTER_ICON_STYLE_NULL;
82 style = POINTER_ICON_STYLE_NULL;
91 /* Gets a system pointer icon with the specified style. */
93 jobject contextObj, int32_t style);
105 /* Loads the bitmap associated with a pointer icon by style.
108 jobject contextObj, int32_t style, PointerIcon* outPointerIcon);
/frameworks/support/v7/appcompat/src/android/support/v7/app/
H A DAppCompatDialogFragment.java45 public void setupDialog(Dialog dialog, int style) { argument
49 switch (style) {
61 super.setupDialog(dialog, style);
/frameworks/base/core/java/android/service/wallpaper/
H A DWallpaperSettingsActivity.java42 theme.applyStyle(com.android.internal.R.style.PreviewWallpaperSettings, true);
44 theme.applyStyle(com.android.internal.R.style.ActiveWallpaperSettings, true);
/frameworks/support/compat/api24/android/support/v4/view/
H A DPointerIconCompatApi24.java25 public static Object getSystemIcon(Context context, int style) { argument
26 return PointerIcon.getSystemIcon(context, style);
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DBlurMaskFilter_Delegate.java58 /*package*/ static long nativeConstructor(float radius, int style) { argument
/frameworks/base/tools/aapt2/link/
H A DAutoVersioner.cpp78 if (Style* style = valueCast<Style>(configValue->value.get())) {
82 auto iter = style->entries.begin();
83 while (iter != style->entries.end()) {
92 // We use the smallest SDK level to generate the new style.
99 // Erase this from this style.
100 iter = style->entries.erase(iter);
117 std::unique_ptr<Style> newStyle(style->clone(&table->stringPool));
118 newStyle->setComment(style->getComment());
119 newStyle->setSource(style->getSource());
121 // Move the previously stripped attributes into this style
[all...]
H A DReferenceLinker_test.cpp69 .addValue(u"@com.app.test:style/Theme", test::StyleBuilder()
70 .setParent(u"@android:style/Theme.Material")
79 Style* style = test::getValue<Style>(table.get(), u"@com.app.test:style/Theme"); local
80 ASSERT_NE(style, nullptr);
81 style->entries.back().value = util::make_unique<RawString>(
90 .addPublicSymbol(u"@android:style/Theme.Material",
108 Style* style = test::getValue<Style>(table.get(), u"@com.app.test:style/Theme"); local
109 ASSERT_NE(style, nullpt
150 Style* style = test::getValue<Style>(table.get(), u"@com.app.test:style/Theme"); local
[all...]
/frameworks/base/core/java/android/text/
H A DHtml.java36 import android.text.style.AbsoluteSizeSpan;
37 import android.text.style.AlignmentSpan;
38 import android.text.style.BackgroundColorSpan;
39 import android.text.style.BulletSpan;
40 import android.text.style.CharacterStyle;
41 import android.text.style.ForegroundColorSpan;
42 import android.text.style.ImageSpan;
43 import android.text.style.ParagraphStyle;
44 import android.text.style.QuoteSpan;
45 import android.text.style
[all...]
/frameworks/opt/setupwizard/library/eclair-mr1/src/com/android/setupwizardlib/view/
H A DRichTextView.java25 import android.text.style.ClickableSpan;
26 import android.text.style.TextAppearanceSpan;
57 * {@link android.text.style.TextAppearanceSpan} with @style/TextAppearance.FooBar</li>
68 final int style = context.getResources()
69 .getIdentifier(textAppearance, "style", context.getPackageName());
70 if (style == 0) {
71 Log.w(TAG, "Cannot find resource: " + style);
74 new TextAppearanceSpan(context, style);
/frameworks/support/compat/java/android/support/v4/view/
H A DPointerIconCompat.java117 Object getSystemIcon(Context context, int style); argument
124 public Object getSystemIcon(Context context, int style) { argument
141 public Object getSystemIcon(Context context, int style) { argument
142 return PointerIconCompatApi24.getSystemIcon(context, style);
166 * Gets a system pointer icon for the given style.
167 * If style is not recognized, returns the default pointer icon.
170 * @param style The pointer icon style.
175 public static PointerIconCompat getSystemIcon(Context context, int style) { argument
176 return new PointerIconCompat(IMPL.getSystemIcon(context, style));
[all...]
/frameworks/support/frameworks/support/samples/SupportLeanbackShowcase/app/src/main/java/android/support/v17/leanback/supportleanbackshowcase/cards/presenters/
H A DCardPresenterSelector.java56 int themeResId = R.style.MovieCardSimpleTheme;
58 themeResId = R.style.MovieCardBasicTheme;
60 themeResId = R.style.MovieCardCompleteTheme;
62 themeResId = R.style.SquareBigCardTheme;
64 themeResId = R.style.GridCardTheme;
66 themeResId = R.style.GameCardTheme;
/frameworks/support/samples/SupportLeanbackShowcase/app/src/main/java/android/support/v17/leanback/supportleanbackshowcase/cards/presenters/
H A DCardPresenterSelector.java56 int themeResId = R.style.MovieCardSimpleTheme;
58 themeResId = R.style.MovieCardBasicTheme;
60 themeResId = R.style.MovieCardCompleteTheme;
62 themeResId = R.style.SquareBigCardTheme;
64 themeResId = R.style.GridCardTheme;
66 themeResId = R.style.GameCardTheme;
/frameworks/minikin/libs/minikin/
H A DFontFamily.cpp89 FontStyle style(weight, italic);
90 addFontLocked(typeface, style);
93 ALOGD("failed to analyze style");
98 void FontFamily::addFont(MinikinFont* typeface, FontStyle style) { argument
100 addFontLocked(typeface, style);
103 void FontFamily::addFontLocked(MinikinFont* typeface, FontStyle style) { argument
105 mFonts.push_back(Font(typeface, style));
129 FakedFont FontFamily::getClosestMatch(FontStyle style) const {
134 int match = computeMatch(font.style, style);
[all...]
/frameworks/support/v7/mediarouter/src/android/support/v7/app/
H A DMediaRouterThemeHelper.java46 * Creates a themed context based on the explicit style resource or the parent context's default
50 * by the primary color defined in the given {@code style}, or in the parent {@code context}.
53 * @param style the resource ID of the style against which to inflate this context, or
57 public static Context createThemedContext(Context context, int style) { argument
60 if (getControllerColor(context, style) == COLOR_DARK_ON_LIGHT_BACKGROUND) {
61 theme = R.style.Theme_MediaRouter_Light;
63 theme = R.style.Theme_MediaRouter_Light_DarkControlPanel;
66 if (getControllerColor(context, style) == COLOR_DARK_ON_LIGHT_BACKGROUND) {
67 theme = R.style
86 getControllerColor(Context context, int style) argument
159 getThemeColor(Context context, int style, int attr) argument
[all...]

Completed in 1676 milliseconds

1234567891011>>