Home | History | Annotate | Download | only in keyboard

Lines Matching defs:rows_

68   if (width() == 0 || height() == 0 || rows_.empty() ||
78 (height() - (static_cast<int>(rows_.size() - 1) * kVerticalPadding)) /
79 static_cast<int>(rows_.size());
82 for (size_t i = 0; i < rows_.size(); ++i) {
83 LayoutRow(*(rows_[i]), static_cast<int>(i), initial_x, button_width,
141 rows_ = rows;
144 for (size_t i = 0; i < rows_.size(); ++i) {
146 static_cast<int>(rows_[i]->num_keys));
147 ConfigureButtonsInRow(static_cast<int>(i), *rows_[i]);
193 offset += static_cast<int>(rows_[i]->num_keys);
201 while (index >= static_cast<int>(rows_[row]->num_keys)) {
202 index -= static_cast<int>(rows_[row]->num_keys);
205 return rows_[row]->keys[index];
210 for (size_t i = 0; i < rows_.size(); ++i) {
211 for (size_t j = 0; j < rows_[i]->num_keys; ++j) {