Home | History | Annotate | Download | only in widget

Lines Matching refs:bounds

142     protected void onBoundsChange(Rect bounds) {
143 super.onBoundsChange(bounds);
147 protected void drawTrack(Canvas canvas, Rect bounds, boolean vertical) {
156 track.setBounds(bounds);
162 protected void drawThumb(Canvas canvas, Rect bounds, int offset, int length, boolean vertical) {
167 thumbRect.set(bounds.left, bounds.top + offset,
168 bounds.right, bounds.top + offset + length);
170 thumbRect.set(bounds.left + offset, bounds.top,
171 bounds.left + offset + length, bounds.bottom);