Lines Matching defs:length
197 int16_t length;
202 length = GetCurrentPos(progressWidth_ + 1);
207 right = left + length;
212 length = GetCurrentPos(progressWidth_ + 1);
217 left = right - length;
222 length = GetCurrentPos(progressHeight_ + 1);
227 bottom = top + length;
232 length = GetCurrentPos(progressHeight_ + 1);
237 top = bottom - length;
264 int32_t UISlider::CalculateCurrentValue(int16_t length, int16_t totalLength)
267 return static_cast<int32_t>(rangeMin_ + (static_cast<int64_t>(rangeMax_) - rangeMin_) * length / totalLength);