Lines Matching refs:iterator

3343 	for (RecursiveOutlineIterator iterator(&fRows); iterator.CurrentRow();
3344 line += iterator.CurrentRow()->Height() + 1, iterator.GoToNext()) {
3346 BRow* row = iterator.CurrentRow();
3391 destRect.left += iterator.CurrentLevel() * kOutlineLevelIndent
3393 sourceRect.left += iterator.CurrentLevel() * kOutlineLevelIndent
3490 for (RecursiveOutlineIterator iterator(&fRows); iterator.CurrentRow();
3491 iterator.GoToNext()) {
3492 BRow* row = iterator.CurrentRow();
3540 destRect.left += iterator.CurrentLevel()
3661 for (RecursiveOutlineIterator iterator(&fRows); iterator.CurrentRow();
3662 iterator.GoToNext()) {
3664 BRow* row = iterator.CurrentRow();
3671 *_rowIndent = iterator.CurrentLevel();
4302 for (RecursiveOutlineIterator iterator(parentRow->fChildList);
4303 iterator.CurrentRow();
4304 iterator.GoToNext()
4307 subTreeHeight += iterator.CurrentRow()->Height()+1;
4310 for (RecursiveOutlineIterator iterator(parentRow->fChildList);
4311 iterator.CurrentRow();
4312 iterator.GoToNext()
4315 subTreeHeight -= iterator.CurrentRow()->Height()+1;
4352 // (By default, the iterator follows open branches only.)
4353 for (RecursiveOutlineIterator iterator(row->fChildList);
4354 iterator.CurrentRow(); iterator.GoToNext())
4355 subTreeHeight += iterator.CurrentRow()->Height() + 1;
4696 for (RecursiveOutlineIterator iterator(&fRows); iterator.CurrentRow();
4697 iterator.GoToNext()) {
4699 if (iterator.CurrentRow() == row) {
4705 line += iterator.CurrentRow()->Height() + 1;
4716 for (RecursiveOutlineIterator iterator(&fRows); iterator.CurrentRow();
4717 iterator.GoToNext()) {
4718 if (iterator.CurrentRow() == row) {
4724 line += iterator.CurrentRow()->Height() + 1;
4750 for (RecursiveOutlineIterator iterator(&fRows); iterator.CurrentRow();
4751 iterator.GoToNext()) {
4755 BRow* row = iterator.CurrentRow();
4970 RecursiveOutlineIterator iterator(&fRows, false);
4971 while (iterator.CurrentRow() != 0) {
4972 if (iterator.CurrentRow() == end) {
4978 } else if (iterator.CurrentRow() == start)
4981 iterator.GoToNext();
4985 BRow* row = iterator.CurrentRow();
4999 iterator.GoToNext();
5059 for (RecursiveOutlineIterator iterator(&fRows); BRow* row =
5060 iterator.CurrentRow(); iterator.GoToNext()) {
5064 + iterator.CurrentLevel() * kOutlineLevelIndent;