Lines Matching refs:y
65 start_.y = enableReverse_ ? current.GetTop() : current.GetBottom(); in UpdateAxisPoints()
66 end_.y = start_.y; in UpdateAxisPoints()
107 start.y = start_.y; in DrawAxisMark()
109 …end.y = enableReverse_ ? (start.y + AXIS_DEFAULT_MARK_LENGTH) : (start.y - AXIS_DEFAULT_MARK_LENGT… in DrawAxisMark()
147 start_.y = top; in UpdateAxisPoints()
148 end_.y = bottom; in UpdateAxisPoints()
150 start_.y = bottom; in UpdateAxisPoints()
151 end_.y = top; in UpdateAxisPoints()
159 value = start_.y + static_cast<int16_t>((maxRange_ - value + minRange_) * minYStep); in TranslateToPixel()
161 value = start_.y - static_cast<int16_t>((value - minRange_) * minYStep); in TranslateToPixel()
168 int16_t yAxisLength = enableReverse_ ? (end_.y - start_.y + 1) : (start_.y - end_.y + 1); in UpdateAxis()
190 start.y = enableReverse_ ? (start_.y + static_cast<int16_t>(index * markInterval_)) in DrawAxisMark()
191 : (start_.y - static_cast<int16_t>(index * markInterval_)); in DrawAxisMark()
193 end.y = start.y; in DrawAxisMark()