OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:index_x_
(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; }
72
int index_x() const { return
index_x_
; }
75
return std::make_pair(
index_x_
, index_y_);
81
index_x_
= -1;
86
int
index_x_
;
member in class:cc::TilingData::BaseIterator
116
return
index_x_
>= ignore_left_ &&
index_x_
<= ignore_right_ &&
144
return
index_x_
>= consider_left_ &&
index_x_
<= consider_right_ &&
148
return
index_x_
>= ignore_left_ && index_x_ <= ignore_right_ &
[
all
...]
tiling_data.cc
298
index_x_
(-1),
319
index_x_
= tiling_data_->FirstBorderTileXIndexFromSrcCoord(rect.x());
323
top_left_tile = tiling_data_->TileBoundsWithBorder(
index_x_
, index_y_);
325
index_x_
= tiling_data_->TileXIndexFromSrcCoord(rect.x());
329
top_left_tile = tiling_data_->TileBounds(
index_x_
, index_y_);
331
left_ =
index_x_
;
343
index_x_
++;
344
if (
index_x_
> right_) {
345
index_x_
= left_;
407
index_x_
= consider_left_
[
all
...]
Completed in 105 milliseconds