Home | History | Annotate | Download | only in resources

Lines Matching defs:tiles

116   // Ensure that tiles in NOW_AND_READY_TO_DRAW_BIN aren't sorted.
125 std::vector<scoped_refptr<Tile> > tiles;
131 tiles.push_back(tile);
136 // Tiles should appear in the same order as inserted.
141 EXPECT_TRUE(*it == tiles[i].get());
148 // Ensure that tiles in NOW_BIN are sorted according to BinComparator.
157 std::vector<scoped_refptr<Tile> > tiles;
163 tiles.push_back(tile);
168 // Tiles should appear in BinComparator order.
169 std::sort(tiles.begin(), tiles.end(), BinComparator());
175 EXPECT_TRUE(*it == tiles[i].get());
182 // Ensure that tiles in SOON_BIN are sorted according to BinComparator.
191 std::vector<scoped_refptr<Tile> > tiles;
197 tiles.push_back(tile);
202 // Tiles should appear in BinComparator order.
203 std::sort(tiles.begin(), tiles.end(), BinComparator());
209 EXPECT_TRUE(*it == tiles[i].get());
216 // Ensure that when not using priority iterator, SOON_BIN tiles
226 std::vector<scoped_refptr<Tile> > tiles;
232 tiles.push_back(tile);
241 EXPECT_TRUE(*it == tiles[i].get());
248 // Ensure that EVENTUALLY_AND_ACTIVE_BIN tiles are sorted.
257 std::vector<scoped_refptr<Tile> > tiles;
263 tiles.push_back(tile);
268 // Tiles should appear in BinComparator order.
269 std::sort(tiles.begin(), tiles.end(), BinComparator());
275 EXPECT_TRUE(*it == tiles[i].get());
282 // Ensure that EVENTUALLY_BIN tiles are sorted.
291 std::vector<scoped_refptr<Tile> > tiles;
297 tiles.push_back(tile);
302 // Tiles should appear in BinComparator order.
303 std::sort(tiles.begin(), tiles.end(), BinComparator());
309 EXPECT_TRUE(*it == tiles[i].get());
316 // Ensure that AT_LAST_AND_ACTIVE_BIN tiles are sorted.
325 std::vector<scoped_refptr<Tile> > tiles;
331 tiles.push_back(tile);
336 // Tiles should appear in BinComparator order.
337 std::sort(tiles.begin(), tiles.end(), BinComparator());
343 EXPECT_TRUE(*it == tiles[i].get());
350 // Ensure that AT_LAST_BIN tiles are sorted.
359 std::vector<scoped_refptr<Tile> > tiles;
365 tiles.push_back(tile);
370 // Tiles should appear in BinComparator order.
371 std::sort(tiles.begin(), tiles.end(), BinComparator());
377 EXPECT_TRUE(*it == tiles[i].get());
404 // Tiles should appear in order.
424 // Aggregate test with many tiles in each of the bins of various
534 // Aggregate test with many tilesTiles should
536 // tiles should appear in the order they were inserted.
644 // we just get two tiles from the iterator.
653 // Only two tiles should appear and they should appear in order.
678 // Tiles should appear in order.