HomeSort by relevance Sort by last modified time
    Searched refs:updateDrawState (Results 1 - 25 of 40) 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) {
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 56 method = "updateDrawState",
67 strikethroughSpan.updateDrawState(tp);
71 strikethroughSpan.updateDrawState(null);
UnderlineSpanTest.java 58 notes = "Test {@link UnderlineSpan#updateDrawState(TextPaint)}",
59 method = "updateDrawState",
71 underlineSpan.updateDrawState(tp);
75 underlineSpan.updateDrawState(null);
AbsoluteSizeSpanTest.java 104 notes = "Test {@link AbsoluteSizeSpan#updateDrawState(TextPaint)}",
105 method = "updateDrawState",
109 "AbsoluteSizeSpan#updateDrawState(TextPaint) when the input TextPaint is null")
115 absoluteSizeSpan.updateDrawState(tp);
120 absoluteSizeSpan.updateDrawState(tp);
124 absoluteSizeSpan.updateDrawState(null);
BackgroundColorSpanTest.java 61 notes = "Test {@link BackgroundColorSpan#updateDrawState(TextPaint)}",
62 method = "updateDrawState",
66 "BackgroundColorSpan#updateDrawState(TextPaint) when the input TextPaint is null")
71 backgroundColorSpan.updateDrawState(tp);
75 backgroundColorSpan.updateDrawState(tp);
79 backgroundColorSpan.updateDrawState(null);
ForegroundColorSpanTest.java 76 notes = "Test {@link ForegroundColorSpan#updateDrawState(TextPaint)}",
77 method = "updateDrawState",
87 foregroundColorSpan.updateDrawState(tp);
91 foregroundColorSpan.updateDrawState(tp);
95 foregroundColorSpan.updateDrawState(null);
RelativeSizeSpanTest.java 101 method = "updateDrawState",
112 relativeSizeSpan.updateDrawState(tp);
118 relativeSizeSpan.updateDrawState(tp);
122 relativeSizeSpan.updateDrawState(null);
ScaleXSpanTest.java 58 method = "updateDrawState",
68 scaleXSpan.updateDrawState(tp);
72 scaleXSpan.updateDrawState(tp);
76 scaleXSpan.updateDrawState(null);

Completed in 380 milliseconds

1 2