Home | History | Annotate | Download | only in views

Lines Matching refs:shown

34 void SkScrollBarView::setShown(unsigned shown)
36 if ((int)shown < 0)
37 shown = 0;
39 if (fShownLength != shown)
41 fShownLength = shown;
65 if (dom.findS32(node, "shown", &value))
117 int shown = fShownLength;
120 if (total <= 0 || shown <= 0 || shown >= total) // no bar to show
127 if (start + shown > total)
128 start = total - shown;
135 e.setScalar("_shownLength", SkIntToScalar(shown));