Lines Matching refs:shown
41 void SkScrollBarView::setShown(unsigned shown)
43 if ((int)shown < 0)
44 shown = 0;
46 if (fShownLength != shown)
48 fShownLength = shown;
72 if (dom.findS32(node, "shown", &value))
124 int shown = fShownLength;
127 if (total <= 0 || shown <= 0 || shown >= total) // no bar to show
134 if (start + shown > total)
135 start = total - shown;
142 e.setScalar("_shownLength", SkIntToScalar(shown));