Home
last modified time | relevance | path

Searched refs:activeRow (Results 1 – 25 of 98) sorted by relevance

1234

/dports/audio/amarok/amarok-3e11ccdd1417e70486eaaa84d8475182eec44c20/src/playlist/navigators/
H A DDynamicTrackNavigator.cpp62 int updateRow = m_model->activeRow() + 1; in appendUpcoming()
73 int activeRow = m_model->activeRow(); in removePlayed() local
74 if( activeRow > AmarokConfig::previousTracks() ) in removePlayed()
75 The::playlistController()->removeRows( 0, activeRow - AmarokConfig::previousTracks() ); in removePlayed()
119 int activeRow = m_model->activeRow(); in repopulate() local
121 if( activeRow < rowCount ) in repopulate()
122 The::playlistController()->removeRows( activeRow + 1, rowCount - activeRow - 1); in repopulate()
H A DStandardTrackNavigator.cpp40 int lastRow = m_model->activeRow() - 1; in likelyLastTrack()
100 …for( nextRow = m_model->activeRow() + 1 ; nextRow < m_model->qaim()->rowCount() ; nextRow++ ) // … in chooseNextTrack()
114 for( nextRow = 0 ; nextRow <= m_model->activeRow() ; nextRow++) in chooseNextTrack()
/dports/www/joomla3/joomla3-3.9.24/libraries/joomla/grid/
H A Dgrid.php32 protected $activeRow = 0; variable in JGrid
196 $this->activeRow = count($this->rows) - 1;
202 $this->specialRows['header'][] = $this->activeRow;
222 return $this->rows[$this->activeRow]['_row'];
236 $this->rows[$this->activeRow]['_row'] = $options;
250 return $this->activeRow;
264 $this->activeRow = (int) $id;
289 $this->rows[$this->activeRow][$name] = $cell;
313 $id = $this->activeRow;
375 if ($this->activeRow == $id)
[all …]
/dports/www/phalcon/cphalcon-3.4.5/ext/phalcon/mvc/model/resultset/
H A Dcomplex.zep.c92 ZEPHIR_OBS_VAR(activeRow); in PHP_METHOD()
94 if (Z_TYPE_P(activeRow) != IS_NULL) { in PHP_METHOD()
95 RETURN_CCTOR(activeRow); in PHP_METHOD()
116 ZEPHIR_INIT_NVAR(activeRow); in PHP_METHOD()
117 object_init_ex(activeRow, phalcon_mvc_model_row_ce); in PHP_METHOD()
118 if (zephir_has_constructor(activeRow TSRMLS_CC)) { in PHP_METHOD()
125 ZEPHIR_INIT_NVAR(activeRow); in PHP_METHOD()
126 array_init(activeRow); in PHP_METHOD()
129 ZEPHIR_INIT_NVAR(activeRow); in PHP_METHOD()
130 object_init(activeRow); in PHP_METHOD()
[all …]
H A Dsimple.zep.c85 …zval *row = NULL, *hydrateMode = NULL, *columnMap = NULL, *activeRow = NULL, *modelName = NULL, *_… in PHP_METHOD() local
91 ZEPHIR_OBS_VAR(activeRow); in PHP_METHOD()
92 zephir_read_property_this(&activeRow, this_ptr, SL("_activeRow"), PH_NOISY_CC); in PHP_METHOD()
93 if (Z_TYPE_P(activeRow) != IS_NULL) { in PHP_METHOD()
94 RETURN_CCTOR(activeRow); in PHP_METHOD()
128 …ZEPHIR_CALL_CE_STATIC(&activeRow, _5$$6, "cloneresultmap", NULL, 0, _2$$6, row, columnMap, _4$$6, … in PHP_METHOD()
135 …ZEPHIR_CALL_CE_STATIC(&activeRow, phalcon_mvc_model_ce, "cloneresultmap", &_6, 390, _7$$9, row, co… in PHP_METHOD()
140 …ZEPHIR_CALL_CE_STATIC(&activeRow, phalcon_mvc_model_ce, "cloneresultmaphydrate", &_10, 391, row, c… in PHP_METHOD()
145 zephir_update_property_this(getThis(), SL("_activeRow"), activeRow TSRMLS_CC); in PHP_METHOD()
146 RETURN_CCTOR(activeRow); in PHP_METHOD()
/dports/www/phalcon4/cphalcon-4.1.1/phalcon/Mvc/Model/Resultset/
H A DComplex.zep70 let activeRow = this->activeRow;
72 if activeRow !== null {
73 return activeRow;
85 let this->activeRow = row;
94 let this->activeRow = false;
109 let activeRow = new Row();
113 let activeRow = [];
118 let activeRow = new stdClass();
247 let activeRow[attribute] = value;
260 let this->activeRow = activeRow;
[all …]
H A DSimple.zep67 var row, hydrateMode, columnMap, activeRow, modelName;
69 let activeRow = this->activeRow;
71 if activeRow !== null {
72 return activeRow;
84 let this->activeRow = false;
115 let activeRow = {modelName}::cloneResultMap(
123 let activeRow = Model::cloneResultMap(
138 let activeRow = Model::cloneResultMapHydrate(
147 let this->activeRow = activeRow;
149 return activeRow;
/dports/biology/jalview/jalview/src/jalview/appletgui/
H A DAnnotationPanel.java62 int activeRow = -1; field in AnnotationPanel
160 aa[activeRow].annotations = anot; in actionPerformed()
192 aa[activeRow].hasText = true; in actionPerformed()
258 if (!aa[activeRow].hasIcons) in actionPerformed()
260 aa[activeRow].hasIcons = true; in actionPerformed()
272 aa[activeRow].hasText = true; in actionPerformed()
331 activeRow = -1; in mousePressed()
344 activeRow = i; in mousePressed()
359 && activeRow != -1) in mousePressed()
582 if (activeRow == -1) in addEditableColumn()
[all …]
/dports/www/phalcon4/cphalcon-4.1.1/ext/phalcon/mvc/model/resultset/
H A Dcomplex.zep.c114 ZVAL_UNDEF(&activeRow); in PHP_METHOD()
156 ZEPHIR_CPY_WRT(&activeRow, &_0); in PHP_METHOD()
157 if (Z_TYPE_P(&activeRow) != IS_NULL) { in PHP_METHOD()
158 RETURN_CCTOR(&activeRow); in PHP_METHOD()
179 ZEPHIR_INIT_NVAR(&activeRow); in PHP_METHOD()
181 if (zephir_has_constructor(&activeRow)) { in PHP_METHOD()
188 ZEPHIR_INIT_NVAR(&activeRow); in PHP_METHOD()
189 array_init(&activeRow); in PHP_METHOD()
192 ZEPHIR_INIT_NVAR(&activeRow); in PHP_METHOD()
193 object_init(&activeRow); in PHP_METHOD()
[all …]
H A Dsimple.zep.c114 …zval __$true, __$false, row, hydrateMode, columnMap, activeRow, modelName, _0, _1$$6, _3$$6, _4$$6… in PHP_METHOD() local
122 ZVAL_UNDEF(&activeRow); in PHP_METHOD()
137 ZEPHIR_CPY_WRT(&activeRow, &_0); in PHP_METHOD()
138 if (Z_TYPE_P(&activeRow) != IS_NULL) { in PHP_METHOD()
139 RETURN_CCTOR(&activeRow); in PHP_METHOD()
172 …ZEPHIR_CALL_CE_STATIC(&activeRow, _6$$6, "cloneresultmap", NULL, 0, &_3$$6, &row, &columnMap, &_5$… in PHP_METHOD()
178 …ZEPHIR_CALL_CE_STATIC(&activeRow, phalcon_mvc_model_ce, "cloneresultmap", &_7, 0, &_8$$9, &row, &c… in PHP_METHOD()
183 …ZEPHIR_CALL_CE_STATIC(&activeRow, phalcon_mvc_model_ce, "cloneresultmaphydrate", &_11, 0, &row, &c… in PHP_METHOD()
188 zephir_update_property_zval(this_ptr, ZEND_STRL("activeRow"), &activeRow); in PHP_METHOD()
189 RETURN_CCTOR(&activeRow); in PHP_METHOD()
/dports/www/phalcon/cphalcon-3.4.5/phalcon/mvc/model/resultset/
H A Dcomplex.zep68 dirtyState, alias, activeRow, type, column, columnValue,
72 let activeRow = this->_activeRow;
73 if activeRow !== null {
74 return activeRow;
109 let activeRow = new Row();
113 let activeRow = [];
118 let activeRow = new \stdClass();
233 let activeRow[attribute] = value;
237 let activeRow->{attribute} = value;
246 let this->_activeRow = activeRow;
[all …]
H A Dsimple.zep69 var row, hydrateMode, columnMap, activeRow, modelName;
71 let activeRow = this->_activeRow;
72 if activeRow !== null {
73 return activeRow;
118 let activeRow = {modelName}::cloneResultMap(
126 let activeRow = Model::cloneResultMap(
140 let activeRow = Model::cloneResultMapHydrate(row, columnMap, hydrateMode);
144 let this->_activeRow = activeRow;
145 return activeRow;
/dports/www/grafana8/grafana-8.3.6/packages/grafana-ui/src/components/Logs/
H A DLogLabelStats.tsx61 let activeRow = topRows.find((row) => row.value === value);
63 const insertActiveRow = !activeRow;
67 activeRow = otherRows.find((row) => row.value === value);
87 … {insertActiveRow && activeRow && <LogLabelStatsRow key={activeRow.value} {...activeRow} active />}
/dports/multimedia/musique/musique-1.10.1/src/
H A Dplaylistmodel.cpp30 activeRow = -1; in PlaylistModel()
59 const int oldActiveRow = activeRow; in setActiveRow()
65 activeRow = row; in setActiveRow()
66 if (rowExists(activeRow)) { in setActiveRow()
67 activeTrack = trackAt(activeRow); in setActiveRow()
71 QModelIndex newIndex = index(activeRow, 0, QModelIndex()); in setActiveRow()
89 int prevRow = activeRow - 1; in skipBackward()
157 int nextRow = activeRow + 1; in getNextTrack()
215 activeRow = -1; in clear()
341 activeRow = tracks.indexOf(activeTrack); in dropMimeData()
/dports/biology/jalview/jalview/src/jalview/gui/
H A DAnnotationPanel.java111 public int activeRow = -1; field in AnnotationPanel
301 aa[activeRow].annotations = anot; in actionPerformed()
328 aa[activeRow].hasText = true; in actionPerformed()
393 if (!aa[activeRow].hasIcons) in actionPerformed()
395 aa[activeRow].hasIcons = true; in actionPerformed()
408 aa[activeRow].hasText = true; in actionPerformed()
411 aa[activeRow].showAllColLabels = true; in actionPerformed()
531 activeRow = -1; in mousePressed()
545 activeRow = i; in mousePressed()
562 if (evt.isPopupTrigger() && activeRow != -1) in mousePressed()
[all …]
/dports/www/kf5-khtml/khtml-5.89.0/src/ecma/debugger/
H A Dcallstackdock.cpp74 int activeRow = m_view->currentRow(); in displayStack() local
103 if (!dirty && activeRow != -1) { in displayStack()
104 m_view->setCurrentCell(activeRow, 0); in displayStack()
105 slotViewItem(m_view->item(activeRow, 0)); in displayStack()
/dports/misc/jbidwatcher/jbidwatcher-2.5.6/src/com/jbidwatcher/ui/table/
H A DAuctionTable.java95 int activeRow = currentRow == null ? 0 : currentRow.intValue(); in messageAction() local
109 activeRow = currentRow == null ? activeRow : currentRow.intValue(); in messageAction()
110 …tableChanged(new TableModelEvent(getModel(), activeRow, activeRow, TableModelEvent.ALL_COLUMNS, Ta… in messageAction()
/dports/x11/plasma5-plasma-workspace/plasma-workspace-5.23.5/libnotificationmanager/
H A Djobsmodel_p.cpp376 const int activeRow = m_jobViews.indexOf(job); in remove() local
381 if (activeRow > -1) { in remove()
382 emit jobViewAboutToBeRemoved(activeRow); in remove()
383 jobToBeRemoved = m_jobViews.takeAt(activeRow); in remove()
396 if (activeRow > -1) { in remove()
397 emit jobViewRemoved(activeRow); in remove()
/dports/audio/amarok/amarok-3e11ccdd1417e70486eaaa84d8475182eec44c20/src/playlist/
H A DPlaylistController.cpp151 int activeRow = m_bottomModel->activeRow(); in insertOptioned() local
155 if( activeRow >= 0 ) in insertOptioned()
156 bottomModelInsertRow = activeRow + 1; // right after active track in insertOptioned()
166 else if( activeRow >= 0 ) in insertOptioned()
167 bottomModelInsertRow = activeRow + 1; // after active track in insertOptioned()
/dports/audio/amarok/amarok-3e11ccdd1417e70486eaaa84d8475182eec44c20/src/dbus/mpris2/
H A DMediaPlayer2Player.cpp106 int activeRow = The::playlist()->activeRow(); in CanGoNext() local
107 return activeRow < The::playlist()->qaim()->rowCount() - 1; in CanGoNext()
124 return The::playlist()->activeRow() > 0; in CanGoPrevious()
/dports/audio/amarok/amarok-3e11ccdd1417e70486eaaa84d8475182eec44c20/src/playlist/view/listview/
H A DPrettyListView.cpp270 QModelIndex activeIndex = model()->index( The::playlist()->activeRow(), 0, QModelIndex() ); in scrollToActiveTrack()
1010 int activeRow = The::playlist()->activeRow(); in redrawActive() local
1011 QModelIndex index = model()->index( activeRow, 0, QModelIndex() ); in redrawActive()
1035 for (int activeRow = 0; activeRow < item.rows(); activeRow++) in playlistLayoutChanged() local
1037 for (int activeElement = 0; activeElement < item.row(activeRow).count();activeElement++) in playlistLayoutChanged()
1039 … Playlist::Column column = (Playlist::Column)item.row(activeRow).element(activeElement).value(); in playlistLayoutChanged()
/dports/x11-toolkits/tktable/Tktable2.10/generic/
H A DtkTableCmds.c49 tablePtr->activeRow = -1; in Table_ActivateCmd()
67 tablePtr->activeRow+tablePtr->rowOffset, in Table_ActivateCmd()
71 if (row != tablePtr->activeRow || col != tablePtr->activeCol) { in Table_ActivateCmd()
73 TableMakeArrayIndex(tablePtr->activeRow+tablePtr->rowOffset, in Table_ActivateCmd()
81 tablePtr->activeRow = row; in Table_ActivateCmd()
93 row = tablePtr->activeRow+tablePtr->rowOffset; in Table_ActivateCmd()
607 (row-tablePtr->rowOffset == tablePtr->activeRow && in Table_ClearCmd()
672 if (row == tablePtr->activeRow && col == tablePtr->activeCol) { in Table_CurselectionCmd()
733 tablePtr->activeRow+tablePtr->rowOffset, in Table_CurvalueCmd()
746 TableRefresh(tablePtr, tablePtr->activeRow, tablePtr->activeCol, CELL); in Table_CurvalueCmd()
/dports/audio/py-music21/music21-7.1.0/music21/search/
H A Dserial.py117 activeRow = self.activeSegment
119 activeRow = pcToToneRow(self.activeSegment)
125 return(activeRow, matchedRow)
136 (activeRow, matchedRow) = self.getActiveMatchedRows()
137 return matchedRow.findZeroCenteredTransformations(activeRow)
148 (activeRow, matchedRow) = self.getActiveMatchedRows()
149 return matchedRow.findOriginalCenteredTransformations(activeRow)
/dports/www/getleft/Getleft-v1.2/scripts/tablelist4.8/scripts/
H A DtablelistBind.tcl55 set line [expr {$data(activeRow) + 1}]
1057 set row $data(activeRow)
1083 set row $data(activeRow)
1129 set row $data(activeRow)
1134 set row $data(activeRow)
1170 set row $data(activeRow)
1219 set row $data(activeRow)
1267 set row $data(activeRow)
1282 set row $data(activeRow)
1318 set row $data(activeRow)
[all …]
/dports/net-im/coccinella/Coccinella-0.96.20Src/contrib/tablelist/scripts/
H A DtablelistBind.tcl55 set line [expr {$data(activeRow) + 1}]
1107 set row $data(activeRow)
1133 set row $data(activeRow)
1179 set row $data(activeRow)
1184 set row $data(activeRow)
1220 set row $data(activeRow)
1269 set row $data(activeRow)
1317 set row $data(activeRow)
1332 set row $data(activeRow)
1368 set row $data(activeRow)
[all …]

1234