Lines Matching refs:col_count

99 	else if (column < eth->col_count)  in dequeue_idle()
152 sizeof (ETableCol *) * (eth->col_count - idx - 1)); in eth_do_remove()
153 eth->col_count--; in eth_do_remove()
160 const gint cols = eth->col_count; in eth_finalize()
190 eth->col_count = 0; in eth_finalize()
351 eth->col_count = 0; in e_table_header_init()
383 for (i = 0; i < eth->col_count; i++) { in eth_update_offsets()
398 sizeof (ETableCol *) * (eth->col_count - pos)); in eth_do_insert()
400 eth->col_count++; in eth_do_insert()
426 g_return_if_fail (pos >= -1 && pos <= eth->col_count); in e_table_header_add_column()
429 pos = eth->col_count; in e_table_header_add_column()
431 eth->columns, sizeof (ETableCol *) * (eth->col_count + 1)); in e_table_header_add_column()
461 if (column >= eth->col_count) in e_table_header_get_column()
486 for (ii = 0; ii < eth->col_count; ii++) { in e_table_header_get_column_by_spec()
514 for (i = 0; i < eth->col_count; i++) { in e_table_header_get_column_by_col_idx()
535 return eth->col_count; in e_table_header_count()
556 g_return_val_if_fail (col >= 0 && col < eth->col_count, -1); in e_table_header_index()
582 for (i = 0; i < eth->col_count; i++) { in e_table_header_get_index_at()
611 ret = g_new (ETableCol *, eth->col_count + 1); in e_table_header_get_columns()
612 memcpy (ret, eth->columns, sizeof (ETableCol *) * eth->col_count); in e_table_header_get_columns()
613 ret[eth->col_count] = NULL; in e_table_header_get_columns()
615 for (i = 0; i < eth->col_count; i++) { in e_table_header_get_columns()
637 for (i = 0; i < eth->col_count; i++) { in e_table_header_get_selected()
661 for (i = 0; i < eth->col_count; i++) in e_table_header_total_width()
682 for (i = 0; i < eth->col_count; i++) in e_table_header_min_width()
709 g_return_if_fail (source_index < eth->col_count); in e_table_header_move()
712 g_return_if_fail (target_index < eth->col_count + 1); in e_table_header_move()
741 g_return_if_fail (idx < eth->col_count); in e_table_header_remove()
775 g_return_if_fail (idx < eth->col_count); in eth_set_size()
800 for (; i < eth->col_count; i++) { in eth_set_size()
816 for (i = idx + 1; i < eth->col_count; i++) { in eth_set_size()
827 for (i = idx; i < eth->col_count; i++) { in eth_set_size()
844 for (i = idx + 1; i < eth->col_count; i++) { in eth_set_size()
868 for (i = idx + 1; i < eth->col_count; i++) { in eth_set_size()
878 for (i = idx + 1; i < eth->col_count; i++) { in eth_set_size()
911 if (end_col > eth->col_count) in e_table_header_col_diff()
912 end_col = eth->col_count; in e_table_header_col_diff()
935 widths = g_new0 (int, eth->col_count + 1); in eth_calc_widths()
939 for (i = 0; i < eth->col_count; i++) { in eth_calc_widths()
962 for (i = 0; i < eth->col_count; i++) { in eth_calc_widths()
980 cols = eth->col_count; in e_table_header_update_horizontal()