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 69 operator bool() const { return index_x_ != -1 && index_y_ != -1; }
72 int index_y() const { return index_y_; }
74 return std::make_pair(index_x_, index_y_);
81 index_y_ = -1;
86 int index_y_; member in class:cc::TilingData::BaseIterator
117 index_y_ >= ignore_top_ && index_y_ <= ignore_bottom_;
tiling_data.cc 272 index_y_(-1) {
292 index_y_ = tiling_data_->FirstBorderTileYIndexFromSrcCoord(rect.y());
295 top_left_tile = tiling_data_->TileBoundsWithBorder(index_x_, index_y_);
298 index_y_ = tiling_data_->TileYIndexFromSrcCoord(rect.y());
301 top_left_tile = tiling_data_->TileBounds(index_x_, index_y_);
318 index_y_++;
319 if (index_y_ > bottom_)
385 index_y_ = consider_top_;
401 index_y_++;
408 index_y_ = ignore_bottom_ + 1
    [all...]

Completed in 570 milliseconds