Searched refs:style (Results 51 - 75 of 172) sorted by relevance

1234567

/frameworks/base/core/java/android/text/style/
H A DRelativeSizeSpan.java17 package android.text.style;
H A DScaleXSpan.java17 package android.text.style;
H A DAbsoluteSizeSpan.java17 package android.text.style;
H A DIconMarginSpan.java17 package android.text.style;
H A DLeadingMarginSpan.java17 package android.text.style;
27 * A paragraph style affecting the leading margin. There can be multiple leading
H A DLocaleSpan.java17 package android.text.style;
H A DTypefaceSpan.java17 package android.text.style;
H A DURLSpan.java17 package android.text.style;
H A DDrawableMarginSpan.java17 package android.text.style;
/frameworks/base/core/java/com/android/internal/app/
H A DMediaRouteDialogPresenter.java77 context, android.R.style.Theme_DeviceDefault_Dialog);
83 context, android.R.style.Theme_DeviceDefault_Dialog);
H A DMediaRouteChooserDialogFragment.java48 setStyle(STYLE_NORMAL, android.R.style.Theme_DeviceDefault_Dialog);
/frameworks/base/core/java/com/android/internal/widget/
H A DSubtitleView.java113 // TODO: Move these to a default style.
261 final CaptionStyle style;
263 style = CaptionStyle.getCustomStyle(cr);
265 style = CaptionStyle.PRESETS[styleId];
268 mForegroundColor = style.foregroundColor;
269 mBackgroundColor = style.backgroundColor;
270 mEdgeType = style.edgeType;
271 mEdgeColor = style.edgeColor;
274 final Typeface typeface = style.getTypeface();
H A DDialogTitle.java60 android.R.style.TextAppearance_Medium);
/frameworks/base/core/java/android/text/
H A DTextUtils.java24 import android.text.style.AbsoluteSizeSpan;
25 import android.text.style.AlignmentSpan;
26 import android.text.style.BackgroundColorSpan;
27 import android.text.style.BulletSpan;
28 import android.text.style.CharacterStyle;
29 import android.text.style.EasyEditSpan;
30 import android.text.style.ForegroundColorSpan;
31 import android.text.style.LeadingMarginSpan;
32 import android.text.style.LocaleSpan;
33 import android.text.style
[all...]
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DCanvas_Delegate.java676 int style = paintDelegate.getStyle();
679 if (style == Paint.Style.FILL.nativeInt ||
680 style == Paint.Style.FILL_AND_STROKE.nativeInt) {
685 if (style == Paint.Style.STROKE.nativeInt ||
686 style == Paint.Style.FILL_AND_STROKE.nativeInt) {
701 int style = paintDelegate.getStyle();
704 if (style == Paint.Style.FILL.nativeInt ||
705 style == Paint.Style.FILL_AND_STROKE.nativeInt) {
710 if (style == Paint.Style.STROKE.nativeInt ||
711 style
[all...]
/frameworks/base/core/jni/android/graphics/
H A DPathEffect.cpp43 const SkPath* shape, float advance, float phase, int style) {
46 SkFloatToScalar(phase), (SkPath1DPathEffect::Style)style);
42 OneD_constructor(JNIEnv* env, jobject, const SkPath* shape, float advance, float phase, int style) argument
/frameworks/base/packages/Keyguard/src/com/android/keyguard/
H A DNumPadKey.java22 import android.text.style.TextAppearanceSpan;
94 new TextAppearanceSpan(context, R.style.TextAppearance_NumPadKey_Klondike),
/frameworks/base/core/java/com/google/android/util/
H A DSmileyParser.java22 import android.text.style.ImageSpan;
/frameworks/base/services/java/com/android/server/am/
H A DBaseErrorDialog.java31 super(context, com.android.internal.R.style.Theme_Dialog_AppError);
/frameworks/ex/chips/src/com/android/ex/chips/recipientchip/
H A DInvisibleRecipientChip.java22 import android.text.style.ReplacementSpan;
/frameworks/base/tools/aapt/
H A DResourceTable.h125 const Vector<StringPool::entry_style_span>* style = NULL,
148 const Vector<StringPool::entry_style_span>* style = NULL,
215 const Vector<StringPool::entry_style_span>* style = NULL,
265 isId(o.isId), value(o.value), style(o.style),
275 style = o.style;
285 Vector<StringPool::entry_style_span> style; member in class:ResourceTable::Item
318 const Vector<StringPool::entry_style_span>* style = NULL,
324 const Vector<StringPool::entry_style_span>* style
[all...]
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
H A DFontLoader.java42 * The fonts are loaded from the SDK directory. Family/style mapping is done by parsing the
138 * Returns a {@link Font} object given a family name and a style value (constant in
141 * @param style a 1-item array containing the requested style. Based on the font being read
142 * the actual style may be different. The array contains the actual style after
146 public synchronized List<Font> getFont(String family, int style) { argument
157 result.add(info.font[style]);
162 // add all the fallback fonts for the given style
164 result.add(info.font[style]);
171 getFallbackFonts(int style) argument
[all...]
/frameworks/ex/common/java/com/android/ex/editstyledtext/
H A DEditStyledText.java62 import android.text.style.AbsoluteSizeSpan;
63 import android.text.style.AlignmentSpan;
64 import android.text.style.BackgroundColorSpan;
65 import android.text.style.CharacterStyle;
66 import android.text.style.DynamicDrawableSpan;
67 import android.text.style.ForegroundColorSpan;
68 import android.text.style.ImageSpan;
69 import android.text.style.ParagraphStyle;
70 import android.text.style.QuoteSpan;
71 import android.text.style
[all...]
/frameworks/base/graphics/java/android/renderscript/
H A DFont.java136 static String getFontFileName(String familyName, Style style) { argument
139 switch(style) {
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DClock.java27 import android.text.style.CharacterStyle;
28 import android.text.style.RelativeSizeSpan;
189 CharacterStyle style = new RelativeSizeSpan(0.7f);
190 formatted.setSpan(style, magic1, magic2,

Completed in 621 milliseconds

1234567