HomeSort by relevance Sort by last modified time
    Searched refs:index_y_ (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/cc/base/
tiling_data.h 70 operator bool() const { return index_x_ != -1 && index_y_ != -1; }
73 int index_y() const { return index_y_; }
75 return std::make_pair(index_x_, index_y_);
82 index_y_ = -1;
87 int index_y_; member in class:cc::TilingData::BaseIterator
118 index_y_ >= ignore_top_ && index_y_ <= ignore_bottom_;
146 index_y_ >= consider_top_ && index_y_ <= consider_bottom_;
150 index_y_ >= ignore_top_ && index_y_ <= ignore_bottom_
    [all...]
tiling_data.cc 311 index_y_(-1) {
331 index_y_ = tiling_data_->FirstBorderTileYIndexFromSrcCoord(rect.y());
334 top_left_tile = tiling_data_->TileBoundsWithBorder(index_x_, index_y_);
337 index_y_ = tiling_data_->TileYIndexFromSrcCoord(rect.y());
340 top_left_tile = tiling_data_->TileBounds(index_x_, index_y_);
357 index_y_++;
358 if (index_y_ > bottom_)
425 index_y_ = consider_top_;
441 index_y_++;
448 index_y_ = ignore_bottom_ + 1
    [all...]

Completed in 46 milliseconds