Lines Matching defs:height
32 void UIChart::SetHeight(int16_t height)
34 if (GetHeight() == height) {
38 if (height > 0) {
42 UIView::SetHeight(height);
43 xAxis_.SetHeight(height);
45 yAxis_.SetHeight(height);
500 int16_t height = GetHeight();
505 if (height <= 0) {
508 if (height > COORD_MAX) {
509 height = COORD_MAX;
511 mixData_ = static_cast<uint8_t*>(UIMalloc(height));
516 for (int16_t y = 0; y < height; y++) {
517 mixData_[y] = static_cast<uint8_t>(y * opa / height + minOpa_);