Lines Matching refs:loop
282 for ( ModellListeners::const_iterator loop = aListeners.begin(); in insertColumn() local
283 loop != aListeners.end(); in insertColumn()
284 ++loop in insertColumn()
287 (*loop)->columnInserted( i_position ); in insertColumn()
305 for ( ModellListeners::const_iterator loop = aListeners.begin(); in removeColumn() local
306 loop != aListeners.end(); in removeColumn()
307 ++loop in removeColumn()
310 (*loop)->columnRemoved( i_position ); in removeColumn()
341 for ( ModellListeners::const_iterator loop = aListeners.begin(); in removeAllColumns() local
342 loop != aListeners.end(); in removeAllColumns()
343 ++loop in removeAllColumns()
346 (*loop)->allColumnsRemoved(); in removeAllColumns()
354 for ( ModellListeners::const_iterator loop = aListeners.begin(); in impl_notifyTableMetricsChanged() local
355 loop != aListeners.end(); in impl_notifyTableMetricsChanged()
356 ++loop in impl_notifyTableMetricsChanged()
359 (*loop)->tableMetricsChanged(); in impl_notifyTableMetricsChanged()
878 for ( ModellListeners::const_iterator loop = aListeners.begin(); in notifyColumnChange() local
879 loop != aListeners.end(); in notifyColumnChange()
880 ++loop in notifyColumnChange()
883 (*loop)->columnChanged( i_columnPos, i_attributeGroup ); in notifyColumnChange()
915 for ( ModellListeners::const_iterator loop = aListeners.begin(); in notifyRowsInserted() local
916 loop != aListeners.end(); in notifyRowsInserted()
917 ++loop in notifyRowsInserted()
920 (*loop)->rowsInserted( i_event.FirstRow, i_event.LastRow ); in notifyRowsInserted()
928 for ( ModellListeners::const_iterator loop = aListeners.begin(); in notifyRowsRemoved() local
929 loop != aListeners.end(); in notifyRowsRemoved()
930 ++loop in notifyRowsRemoved()
933 (*loop)->rowsRemoved( i_event.FirstRow, i_event.LastRow ); in notifyRowsRemoved()
946 for ( ModellListeners::const_iterator loop = aListeners.begin(); in notifyDataChanged() local
947 loop != aListeners.end(); in notifyDataChanged()
948 ++loop in notifyDataChanged()
951 (*loop)->cellsUpdated( firstCol, lastCol, firstRow, lastRow ); in notifyDataChanged()
959 for ( ModellListeners::const_iterator loop = aListeners.begin(); in notifyAllDataChanged() local
960 loop != aListeners.end(); in notifyAllDataChanged()
961 ++loop in notifyAllDataChanged()
964 (*loop)->cellsUpdated( 0, getColumnCount() - 1, 0, getRowCount() - 1 ); in notifyAllDataChanged()