Home
last modified time | relevance | path

Searched refs:delRows (Results 1 – 6 of 6) sorted by relevance

/dports/devel/p5-Data-Table/Data-Table-1.78/t/
H A Dtest.t31 ok((@rows = $t->delRows([0,2,3])) && $t->nofRow==6, "delRows()");
37 ok($t->nofRow==9, "delRows() & addRow()");
78 $t->delRows([9..$t->nofRow-1]);
96 $t2->delRows([2,3,4]);
97 $t->delRows([0,8]);
/dports/editors/libreoffice/libreoffice-7.2.6.2/dbaccess/qa/complex/dbaccess/
H A DRowSet.java475 final XDeleteRows delRows = UnoRuntime.queryInterface( XDeleteRows.class, m_resultSet ); in testRowSetEvents() local
485 testCursorMove(delRows, cdelRows.getMethod("deleteRows", ctemp), pRow, moves, temp); in testRowSetEvents()
/dports/editors/libreoffice6/libreoffice-6.4.7.2/dbaccess/qa/complex/dbaccess/
H A DRowSet.java475 final XDeleteRows delRows = UnoRuntime.queryInterface( XDeleteRows.class, m_resultSet ); in testRowSetEvents() local
485 testCursorMove(delRows, cdelRows.getMethod("deleteRows", ctemp), pRow, moves, temp); in testRowSetEvents()
/dports/math/py-PySCIPOpt/PySCIPOpt-3.0.2/src/pyscipopt/
H A Dlp.pxi219 def delRows(self, firstrow, lastrow): member in LP
/dports/devel/p5-Data-Table/Data-Table-1.78/
H A DTable.pm642 sub delRows { subroutine
/dports/math/cbc/Cbc-releases-2.10.5/Cbc/src/
H A DCbcModel.cpp17275 int *delRows = new int[numberToDelete]; local
17278 delRows[i] = i + numberRowsAtContinuous_;
17279 solver_->deleteRows(numberToDelete, delRows);
17280 delete[] delRows;