Home
last modified time | relevance | path

Searched refs:first_selected_row (Results 1 – 11 of 11) sorted by relevance

/dports/audio/picard/picard-release-2.6.2/picard/ui/widgets/
H A Deditablelistview.py97 first_selected_row = rows[0]
98 self.select_row(first_selected_row)
104 first_selected_row = min(rows)
105 if first_selected_row > 0:
/dports/databases/pear-MDB/MDB-1.3.0/MDB/
H A Dibase.php553 $first = $this->first_selected_row;
555 $this->first_selected_row = $this->selected_row_limit = 0;
593 $first = $this->first_selected_row;
595 $this->first_selected_row = $this->selected_row_limit = 0;
H A Doci8.php561 $first = $this->first_selected_row;
563 $this->first_selected_row = $this->selected_row_limit = 0;
598 $first = $this->first_selected_row;
600 $this->first_selected_row = $this->selected_row_limit = 0;
H A DCommon.php227 var $first_selected_row = 0; variable in MDB_Common
1588 $this->first_selected_row = $first;
1859 $this->prepared_queries[$prepared_query-1]['First'] = $this->first_selected_row;
1987 $this->prepared_queries[$index]['First'] = $this->first_selected_row;
1993 $this->first_selected_row = $this->prepared_queries[$index]['First'];
1996 $this->first_selected_row = $this->selected_row_limit = 0;
H A Dfbsql.php382 $first = $this->first_selected_row;
384 $this->first_selected_row = $this->selected_row_limit = 0;
H A Dmssql.php432 $first = $this->first_selected_row;
434 $this->first_selected_row = $this->selected_row_limit = 0;
H A Dpgsql.php460 $first = $this->first_selected_row;
462 $this->first_selected_row = $this->selected_row_limit = 0;
H A Dmysql.php468 $first = $this->first_selected_row;
470 $this->first_selected_row = $this->selected_row_limit = 0;
H A Dquerysim.php407 $first = $this->first_selected_row;
/dports/x11-toolkits/open-motif/motif-2.3.8/lib/Xm/
H A DI18List.c3172 int first_selected_row = FirstSelectedRow(w); in XmI18ListDoSearch() local
3182 if ( first_selected_row == -1 ) first_selected_row = 0; in XmI18ListDoSearch()
3185 first_selected_row, search_column, in XmI18ListDoSearch()
3219 int first_selected_row = FirstSelectedRow(w); in XmI18ListFindRow() local
3230 if (first_selected_row == -1) in XmI18ListFindRow()
3231 first_selected_row = 0; in XmI18ListFindRow()
3233 foundit = Search(ilist, xms, first_selected_row, in XmI18ListFindRow()
/dports/databases/sqlitebrowser/sqlitebrowser-3.12.1/src/
H A DTableBrowser.cpp1250 … int first_selected_row = ui->dataTable->selectionModel()->selectedIndexes().first().row(); in deleteRecord() local
1252 int selected_rows_count = last_selected_row - first_selected_row + 1; in deleteRecord()
1253 if(!m_model->removeRows(first_selected_row, selected_rows_count)) in deleteRecord()