Home | History | Annotate | Download | only in js

Lines Matching refs:rows_

1278   this.rows_ = [];
1298 return this.firstRowIndex_ + this.rows_.length;
1323 for (var r = 0; r < this.rows_.length; r++) {
1324 if (this.rows_[r].coversY(y))
1325 return this.rows_[r].getEdgeTileIndex_(direction);
1335 for (var r = 0; r !== this.rows_.length; r++)
1336 if (this.rows_[r].hasTile(index))
1337 return this.rows_[r];
1357 this.rows_.push(this.newRow_);
1371 this.rows_.push(this.newRow_);
1375 if (this.rows_.length === 0)
1379 null, this.rows_.map(function(row) { return row.getMaxWidth() }));
1384 for (var r = 0; r !== this.rows_.length; r++) {
1385 var rowHeight = this.rows_[r].getHeightForWidth(this.width_);
1438 for (var r = 0; r !== this.rows_.length; r++) {
1439 this.rows_[r].layout(
1455 this.rows_.map(function(row) { return row.getTileCount() });