Searched defs:style (Results 26 - 50 of 133) sorted by relevance

123456

/frameworks/base/core/java/android/text/style/
H A DSubscriptSpan.java17 package android.text.style;
H A DSuperscriptSpan.java17 package android.text.style;
H A DUnderlineSpan.java17 package android.text.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...]
H A DAccessibilityURLSpan.java16 package android.text.style;
H A DBackgroundColorSpan.java17 package android.text.style;
H A DForegroundColorSpan.java17 package android.text.style;
H A DImageSpan.java17 package android.text.style;
H A DRelativeSizeSpan.java17 package android.text.style;
H A DReplacementSpan.java17 package android.text.style;
H A DScaleXSpan.java17 package android.text.style;
H A DSuggestionRangeSpan.java17 package android.text.style;
H A DTypefaceSpan.java17 package android.text.style;
H A DURLSpan.java17 package android.text.style;
H A DAbsoluteSizeSpan.java17 package android.text.style;
H A DAccessibilityClickableSpan.java16 package android.text.style;
/frameworks/base/graphics/java/android/graphics/
H A DBlurMaskFilter.java58 * @param style The Blur to use
61 public BlurMaskFilter(float radius, Blur style) { argument
62 native_instance = nativeConstructor(radius, style.native_int);
65 private static native long nativeConstructor(float radius, int style); argument
H A DPathDashPathEffect.java34 * applies to drawings when the paint's style is STROKE or STROKE_AND_FILL.
35 * If the paint's style is FILL, then this effect is ignored. The paint's
40 * @param style how to transform the shape at each position as it is stamped
43 Style style) {
45 style.native_style);
42 PathDashPathEffect(Path shape, float advance, float phase, Style style) argument
/frameworks/base/libs/hwui/tests/unit/
H A DSkiaRenderPropertiesTests.cpp54 void onClipRRect(const SkRRect& rrect, SkClipOp op, ClipEdgeStyle style) { argument
55 SkCanvas::onClipRRect(rrect, op, style);
/frameworks/base/tools/layoutlib/bridge/tests/res/testApp/MyApplication/build/intermediates/classes/debug/com/android/layoutlib/test/myapplication/
H A DR$style.class ... android.layoutlib.test.myapplication.R$style extends java.lang.Object { public static final int ...
/frameworks/base/libs/androidfw/tests/data/basic/
H A DR.h64 struct style { struct
/frameworks/base/libs/androidfw/tests/data/styles/
H A DR.h46 struct style { struct in namespace:com::android
/frameworks/base/tools/aapt2/link/
H A DTableMerger_test.cpp311 .AddValue("com.app.a:style/Theme",
313 .SetParent("com.app.a:style/Parent")
326 .AddValue("com.app.a:style/Theme",
328 .SetParent("com.app.a:style/OverlayParent")
353 Style* style = test::GetValue<Style>(&final_table, "com.app.a:style/Theme"); local
354 ASSERT_THAT(style, NotNull());
357 for (const auto& entry : style->entries) {
363 EXPECT_THAT(style->entries, Contains(Field(&Style::Entry::value, Pointee(ValueEq(*expected)))));
364 EXPECT_THAT(style
[all...]
/frameworks/support/compat/java/android/support/v4/graphics/
H A DTypefaceCompatBaseImpl.java96 FontFamilyFilesResourceEntry entry, Resources resources, int style) {
98 entry, ((style & Typeface.BOLD) == 0) ? 400 : 700, (style & Typeface.ITALIC) != 0);
103 context, resources, best.getResourceId(), style);
95 createFromFontFamilyFilesResourceEntry(Context context, FontFamilyFilesResourceEntry entry, Resources resources, int style) argument
/frameworks/base/core/java/android/gesture/
H A DGestureLibrary.java43 public void setOrientationStyle(int style) { argument
44 mStore.setOrientationStyle(style);

Completed in 3976 milliseconds

123456