Home | History | Annotate | Download | only in style

Lines Matching defs:MetricAffectingSpan

25 public abstract class MetricAffectingSpan
34 * returns the underlying MetricAffectingSpan.
37 public MetricAffectingSpan getUnderlying() {
42 * A Passthrough MetricAffectingSpan is one that
44 * calls through to the specified MetricAffectingSpan
47 * to which the specified MetricAffectingSpan is already attached.
49 /* package */ static class Passthrough extends MetricAffectingSpan {
50 private MetricAffectingSpan mStyle;
53 * Creates a new Passthrough of the specfied MetricAffectingSpan.
55 public Passthrough(MetricAffectingSpan cs) {
60 * Passes updateDrawState through to the underlying MetricAffectingSpan.
68 * Passes updateMeasureState through to the underlying MetricAffectingSpan.
76 * Returns the MetricAffectingSpan underlying this one, or the one
80 public MetricAffectingSpan getUnderlying() {