Home | History | Annotate | Download | only in views

Lines Matching refs:total

53 void SkScrollBarView::setTotal(unsigned total)
55 if ((int)total < 0)
56 total = 0;
58 if (fTotalLength != total)
60 fTotalLength = total;
70 if (dom.findS32(node, "total", &value))
122 int total = fTotalLength;
127 if (total <= 0 || shown <= 0 || shown >= total) // no bar to show
129 total = 1; // avoid divide-by-zero. should be done by skin/script
134 if (start + shown > total)
135 start = total - shown;
140 e.setScalar("_totalLength", SkIntToScalar(total));