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

  /external/chromium_org/cc/base/
tiling_data.h 42 bool has_empty_bounds() const { return !num_tiles_x_ || !num_tiles_y_; }
43 int num_tiles_x() const { return num_tiles_x_; }
189 DCHECK_LT(i, num_tiles_x_);
201 int num_tiles_x_; member in class:cc::TilingData
tiling_data.cc 70 if (num_tiles_x_ <= 1)
78 return std::min(std::max(x, 0), num_tiles_x_ - 1);
94 if (num_tiles_x_ <= 1)
102 return std::min(std::max(x, 0), num_tiles_x_ - 1);
118 if (num_tiles_x_ <= 1)
126 return std::min(std::max(x, 0), num_tiles_x_ - 1);
184 if (i + 1 == num_tiles_x_)
236 DCHECK_LT(x_index, num_tiles_x_);
262 DCHECK_LT(x_index, num_tiles_x_);
264 if (!x_index && num_tiles_x_ == 1
    [all...]

Completed in 49 milliseconds