HomeSort by relevance Sort by last modified time
    Searched refs:updateDrawState (Results 1 - 25 of 45) sorted by null

1 2

  /frameworks/base/core/java/android/text/style/
CharacterStyle.java 27 public abstract void updateDrawState(TextPaint tp);
55 * passes {@link #updateDrawState} calls through to the
71 * Passes updateDrawState through to the underlying CharacterStyle.
74 public void updateDrawState(TextPaint tp) {
75 mStyle.updateDrawState(tp);
MetricAffectingSpan.java 44 * passes {@link #updateDrawState} and {@link #updateMeasureState}
61 * Passes updateDrawState through to the underlying MetricAffectingSpan.
64 public void updateDrawState(TextPaint tp) {
65 mStyle.updateDrawState(tp);
ClickableSpan.java 39 public void updateDrawState(TextPaint ds) {
MaskFilterSpan.java 35 public void updateDrawState(TextPaint ds) {
RasterizerSpan.java 35 public void updateDrawState(TextPaint ds) {
StrikethroughSpan.java 44 public void updateDrawState(TextPaint ds) {
UnderlineSpan.java 44 public void updateDrawState(TextPaint ds) {
BackgroundColorSpan.java 54 public void updateDrawState(TextPaint ds) {
ForegroundColorSpan.java 54 public void updateDrawState(TextPaint ds) {
ReplacementSpan.java 42 public void updateDrawState(TextPaint ds) { }
SubscriptSpan.java 43 public void updateDrawState(TextPaint tp) {
SuggestionRangeSpan.java 62 public void updateDrawState(TextPaint tp) {
SuperscriptSpan.java 43 public void updateDrawState(TextPaint tp) {
RelativeSizeSpan.java 53 public void updateDrawState(TextPaint ds) {
ScaleXSpan.java 53 public void updateDrawState(TextPaint ds) {
  /cts/tests/tests/text/src/android/text/style/cts/
ClickableSpanTest.java 35 notes = "Test {@link ClickableSpan#updateDrawState(TextPaint)}",
36 method = "updateDrawState",
40 "ClickableSpan#updateDrawState(TextPaint) when the input TextPaint is null")
49 clickableSpan.updateDrawState(tp);
54 clickableSpan.updateDrawState(tp);
59 clickableSpan.updateDrawState(null);
MaskFilterSpanTest.java 47 notes = "Test {@link MaskFilterSpan#updateDrawState(TextPaint)}",
48 method = "updateDrawState",
59 maskFilterSpan.updateDrawState(tp);
63 maskFilterSpan.updateDrawState(null);
RasterizerSpanTest.java 65 notes = "Test {@link RasterizerSpan#updateDrawState(TextPaint)}",
66 method = "updateDrawState",
77 rasterizerSpan.updateDrawState(tp);
81 rasterizerSpan.updateDrawState(null);
MetricAffectingSpanTest.java 59 public void updateDrawState(TextPaint tp) {
StrikethroughSpanTest.java 60 method = "updateDrawState",
71 strikethroughSpan.updateDrawState(tp);
75 strikethroughSpan.updateDrawState(null);
UnderlineSpanTest.java 61 notes = "Test {@link UnderlineSpan#updateDrawState(TextPaint)}",
62 method = "updateDrawState",
74 underlineSpan.updateDrawState(tp);
78 underlineSpan.updateDrawState(null);
AbsoluteSizeSpanTest.java 107 notes = "Test {@link AbsoluteSizeSpan#updateDrawState(TextPaint)}",
108 method = "updateDrawState",
112 "AbsoluteSizeSpan#updateDrawState(TextPaint) when the input TextPaint is null")
118 absoluteSizeSpan.updateDrawState(tp);
123 absoluteSizeSpan.updateDrawState(tp);
127 absoluteSizeSpan.updateDrawState(null);
BackgroundColorSpanTest.java 64 notes = "Test {@link BackgroundColorSpan#updateDrawState(TextPaint)}",
65 method = "updateDrawState",
69 "BackgroundColorSpan#updateDrawState(TextPaint) when the input TextPaint is null")
74 backgroundColorSpan.updateDrawState(tp);
78 backgroundColorSpan.updateDrawState(tp);
82 backgroundColorSpan.updateDrawState(null);
ForegroundColorSpanTest.java 79 notes = "Test {@link ForegroundColorSpan#updateDrawState(TextPaint)}",
80 method = "updateDrawState",
90 foregroundColorSpan.updateDrawState(tp);
94 foregroundColorSpan.updateDrawState(tp);
98 foregroundColorSpan.updateDrawState(null);
RelativeSizeSpanTest.java 105 method = "updateDrawState",
116 relativeSizeSpan.updateDrawState(tp);
122 relativeSizeSpan.updateDrawState(tp);
126 relativeSizeSpan.updateDrawState(null);

Completed in 125 milliseconds

1 2