Home
last modified time | relevance | path

Searched refs:toRow (Results 1 – 25 of 243) sorted by relevance

12345678910

/dports/devel/hs-haskell-language-server/haskell-language-server-1.4.0/_cabal_deps/sqlite-simple-0.4.18.0/Database/SQLite/Simple/
H A DToRow.hs32 toRow :: a -> [SQLData]
36 toRow _ = [] function
39 toRow (Only v) = [toField v] function
52 toRow (a,b,c,d,e) =
57 toRow (a,b,c,d,e,f) =
63 toRow (a,b,c,d,e,f,g) =
70 toRow (a,b,c,d,e,f,g,h) =
77 toRow (a,b,c,d,e,f,g,h,i) =
84 toRow (a,b,c,d,e,f,g,h,i,j) =
89 toRow = map toField function
[all …]
/dports/devel/hs-hoogle/hoogle-5.0.18.2/_cabal_deps/foundation-0.0.25/tests/Test/Foundation/Format/
H A DCSV.hs37 let row = (toRow t)
72 , ( toRow (42 :: Int, "some string" :: String)
73 , toRow ("42" :: String, "some string" :: String)
76 , ( toRow ( 42 :: Int
80 , toRow ( "42" :: String
86 , ( toRow ( 42 :: Int
91 , toRow ( "42" :: String
98 , ( toRow ( 42 :: Int
104 , toRow ( "42" :: String
112 , ( toRow ( 42 :: Int
[all …]
/dports/net-im/ruqola/ruqola-1.6.1/src/widgets/room/delegate/
H A Dtextselection.cpp27 if (ret.fromRow > ret.toRow) { in orderedPositions()
28 std::swap(ret.fromRow, ret.toRow); in orderedPositions()
41 for (int row = ordered.fromRow; row <= ordered.toRow; ++row) { in selectedText()
47 if (row < ordered.toRow) { in selectedText()
62 if (row == ordered.toRow) // single line selection in contains()
65 } else if (row == ordered.toRow) { in contains()
68 return row > ordered.fromRow && row < ordered.toRow; in contains()
89 if (row == ordered.toRow) in selectionForIndex()
91 else if (row < ordered.toRow) in selectionForIndex()
110 if (ordered.toRow > -1) { in clear()
[all …]
/dports/devel/spark/spark-2.1.1/sql/catalyst/src/test/scala/org/apache/spark/sql/catalyst/util/
H A DUnsafeArraySuite.scala57 toRow(booleanArray).getArray(0)
65 toRow(shortArray).getArray(0)
73 toRow(intArray).getArray(0)
81 toRow(longArray).getArray(0)
89 toRow(floatArray).getArray(0)
97 toRow(doubleArray).getArray(0)
105 toRow(stringArray).getArray(0)
113 toRow(dateArray).getArray(0)
121 toRow(timestampArray).getArray(0)
134 val ir = encoder.toRow(externalRow)
[all …]
/dports/devel/hs-haskell-language-server/haskell-language-server-1.4.0/_cabal_deps/hiedb-0.4.0.0/src/HieDb/
H A DTypes.hs70 show = show . toRow
73 toRow (ModuleInfo a b c d e f) = toRow (a,b,c,d,e,f) function
133 show = show . toRow
136 toRow (HieModuleRow a b) =
137 toField a : toRow b
156 toRow (RefRow a b c d e f g h) = toRow ((a,b,c):.(d,e,f):.(g,h)) function
175 toRow (DeclRow a b c d e f g) = toRow ((a,b,c,d):.(e,f,g)) function
198 toRow (TypeRef a b c d e f g) = toRow ((a,b,c,d):.(e,f,g)) function
215 toRow (DefRow a b c d e f) = toRow ((a,b,c,d):.(e,f)) function
232 toRow (ExportRow a b c d e f g h) = toRow (a,b,c,d,e,f,g,h) function
/dports/converters/wkhtmltopdf/qt-5db36ec/src/gui/kernel/
H A Dqgridlayout.h154 …inline QT3_SUPPORT void addMultiCellWidget(QWidget *w, int fromRow, int toRow, int fromCol, int to…
155 …{ addWidget(w, fromRow, fromCol, (toRow < 0) ? -1 : toRow - fromRow + 1, (toCol < 0) ? -1 : toCol …
156 …inline QT3_SUPPORT void addMultiCell(QLayoutItem *l, int fromRow, int toRow, int fromCol, int toCo…
157 …{ addItem(l, fromRow, fromCol, (toRow < 0) ? -1 : toRow - fromRow + 1, (toCol < 0) ? -1 : toCol - …
158 …inline QT3_SUPPORT void addMultiCellLayout(QLayout *layout, int fromRow, int toRow, int fromCol, i…
159 …{ addLayout(layout, fromRow, fromCol, (toRow < 0) ? -1 : toRow - fromRow + 1, (toCol < 0) ? -1 : t…
/dports/sysutils/plasma5-plasma-systemmonitor/plasma-systemmonitor-5.23.5/src/table/
H A DColumnSortModel.cpp51 void ColumnSortModel::move(int fromRow, int toRow) in move() argument
53 …beginMoveRows(QModelIndex(), fromRow, fromRow, QModelIndex(), fromRow < toRow ? toRow + 1 : toRow); in move()
54 m_rowMapping.move(fromRow, toRow); in move()
/dports/devel/spark/spark-2.1.1/sql/catalyst/src/test/scala/org/apache/spark/sql/catalyst/encoders/
H A DRowEncoderSuite.scala146 val row = encoder.toRow(input)
159 val row = encoder.toRow(input)
213 val row = encoder.toRow(Row.fromSeq(input))
230 val row = encoder.toRow(input)
240 val e = intercept[RuntimeException](encoder.toRow(null))
249 encoder.toRow(Row(1.toShort))
256 encoder.toRow(Row(1))
264 encoder.toRow(Row(1 -> "a"))
271 encoder.toRow(Row(Array("a")))
285 val row = encoder.toRow(input)
/dports/x11-toolkits/qt5-uiplugin/kde-qttools-5.15.2p17/src/designer/src/components/taskmenu/
H A Dtablewidgeteditor.cpp296 void TableWidgetEditor::moveRowsDown(int fromRow, int toRow) in moveRowsDown() argument
298 if (fromRow >= toRow) in moveRowsDown()
302 for (int i = toRow; i > fromRow; i--) { in moveRowsDown()
309 QTableWidgetItem *lastItem = ui.tableWidget->takeItem(toRow, i); in moveRowsDown()
310 for (int j = toRow; j > fromRow; j--) in moveRowsDown()
316 void TableWidgetEditor::moveRowsUp(int fromRow, int toRow) in moveRowsUp() argument
318 if (fromRow >= toRow) in moveRowsUp()
322 for (int i = fromRow; i < toRow; i++) { in moveRowsUp()
326 ui.tableWidget->setVerticalHeaderItem(toRow, lastItem); in moveRowsUp()
330 for (int j = fromRow; j < toRow; j++) in moveRowsUp()
[all …]
/dports/converters/wkhtmltopdf/qt-5db36ec/tools/designer/src/components/taskmenu/
H A Dtablewidgeteditor.cpp303 void TableWidgetEditor::moveRowsDown(int fromRow, int toRow) in moveRowsDown() argument
305 if (fromRow >= toRow) in moveRowsDown()
309 for (int i = toRow; i > fromRow; i--) { in moveRowsDown()
316 QTableWidgetItem *lastItem = ui.tableWidget->takeItem(toRow, i); in moveRowsDown()
317 for (int j = toRow; j > fromRow; j--) in moveRowsDown()
323 void TableWidgetEditor::moveRowsUp(int fromRow, int toRow) in moveRowsUp() argument
325 if (fromRow >= toRow) in moveRowsUp()
329 for (int i = fromRow; i < toRow; i++) { in moveRowsUp()
333 ui.tableWidget->setVerticalHeaderItem(toRow, lastItem); in moveRowsUp()
337 for (int j = fromRow; j < toRow; j++) in moveRowsUp()
[all …]
/dports/devel/qt5-qdbus/kde-qttools-5.15.2p17/src/designer/src/components/taskmenu/
H A Dtablewidgeteditor.cpp296 void TableWidgetEditor::moveRowsDown(int fromRow, int toRow) in moveRowsDown() argument
298 if (fromRow >= toRow) in moveRowsDown()
302 for (int i = toRow; i > fromRow; i--) { in moveRowsDown()
309 QTableWidgetItem *lastItem = ui.tableWidget->takeItem(toRow, i); in moveRowsDown()
310 for (int j = toRow; j > fromRow; j--) in moveRowsDown()
316 void TableWidgetEditor::moveRowsUp(int fromRow, int toRow) in moveRowsUp() argument
318 if (fromRow >= toRow) in moveRowsUp()
322 for (int i = fromRow; i < toRow; i++) { in moveRowsUp()
326 ui.tableWidget->setVerticalHeaderItem(toRow, lastItem); in moveRowsUp()
330 for (int j = fromRow; j < toRow; j++) in moveRowsUp()
[all …]
/dports/devel/qt5-uitools/kde-qttools-5.15.2p17/src/designer/src/components/taskmenu/
H A Dtablewidgeteditor.cpp296 void TableWidgetEditor::moveRowsDown(int fromRow, int toRow) in moveRowsDown() argument
298 if (fromRow >= toRow) in moveRowsDown()
302 for (int i = toRow; i > fromRow; i--) { in moveRowsDown()
309 QTableWidgetItem *lastItem = ui.tableWidget->takeItem(toRow, i); in moveRowsDown()
310 for (int j = toRow; j > fromRow; j--) in moveRowsDown()
316 void TableWidgetEditor::moveRowsUp(int fromRow, int toRow) in moveRowsUp() argument
318 if (fromRow >= toRow) in moveRowsUp()
322 for (int i = fromRow; i < toRow; i++) { in moveRowsUp()
326 ui.tableWidget->setVerticalHeaderItem(toRow, lastItem); in moveRowsUp()
330 for (int j = fromRow; j < toRow; j++) in moveRowsUp()
[all …]
/dports/devel/qt5-qdoc/kde-qttools-5.15.2p17/src/designer/src/components/taskmenu/
H A Dtablewidgeteditor.cpp296 void TableWidgetEditor::moveRowsDown(int fromRow, int toRow) in moveRowsDown() argument
298 if (fromRow >= toRow) in moveRowsDown()
302 for (int i = toRow; i > fromRow; i--) { in moveRowsDown()
309 QTableWidgetItem *lastItem = ui.tableWidget->takeItem(toRow, i); in moveRowsDown()
310 for (int j = toRow; j > fromRow; j--) in moveRowsDown()
316 void TableWidgetEditor::moveRowsUp(int fromRow, int toRow) in moveRowsUp() argument
318 if (fromRow >= toRow) in moveRowsUp()
322 for (int i = fromRow; i < toRow; i++) { in moveRowsUp()
326 ui.tableWidget->setVerticalHeaderItem(toRow, lastItem); in moveRowsUp()
330 for (int j = fromRow; j < toRow; j++) in moveRowsUp()
[all …]
/dports/devel/qt5-qdbusviewer/kde-qttools-5.15.2p17/src/designer/src/components/taskmenu/
H A Dtablewidgeteditor.cpp296 void TableWidgetEditor::moveRowsDown(int fromRow, int toRow) in moveRowsDown() argument
298 if (fromRow >= toRow) in moveRowsDown()
302 for (int i = toRow; i > fromRow; i--) { in moveRowsDown()
309 QTableWidgetItem *lastItem = ui.tableWidget->takeItem(toRow, i); in moveRowsDown()
310 for (int j = toRow; j > fromRow; j--) in moveRowsDown()
316 void TableWidgetEditor::moveRowsUp(int fromRow, int toRow) in moveRowsUp() argument
318 if (fromRow >= toRow) in moveRowsUp()
322 for (int i = fromRow; i < toRow; i++) { in moveRowsUp()
326 ui.tableWidget->setVerticalHeaderItem(toRow, lastItem); in moveRowsUp()
330 for (int j = fromRow; j < toRow; j++) in moveRowsUp()
[all …]
/dports/sysutils/qt5-qtplugininfo/kde-qttools-5.15.2p17/src/designer/src/components/taskmenu/
H A Dtablewidgeteditor.cpp296 void TableWidgetEditor::moveRowsDown(int fromRow, int toRow) in moveRowsDown() argument
298 if (fromRow >= toRow) in moveRowsDown()
302 for (int i = toRow; i > fromRow; i--) { in moveRowsDown()
309 QTableWidgetItem *lastItem = ui.tableWidget->takeItem(toRow, i); in moveRowsDown()
310 for (int j = toRow; j > fromRow; j--) in moveRowsDown()
316 void TableWidgetEditor::moveRowsUp(int fromRow, int toRow) in moveRowsUp() argument
318 if (fromRow >= toRow) in moveRowsUp()
322 for (int i = fromRow; i < toRow; i++) { in moveRowsUp()
326 ui.tableWidget->setVerticalHeaderItem(toRow, lastItem); in moveRowsUp()
330 for (int j = fromRow; j < toRow; j++) in moveRowsUp()
[all …]
/dports/sysutils/qt5-qtpaths/kde-qttools-5.15.2p17/src/designer/src/components/taskmenu/
H A Dtablewidgeteditor.cpp296 void TableWidgetEditor::moveRowsDown(int fromRow, int toRow)
298 if (fromRow >= toRow)
302 for (int i = toRow; i > fromRow; i--) {
309 QTableWidgetItem *lastItem = ui.tableWidget->takeItem(toRow, i);
310 for (int j = toRow; j > fromRow; j--)
316 void TableWidgetEditor::moveRowsUp(int fromRow, int toRow)
318 if (fromRow >= toRow)
322 for (int i = fromRow; i < toRow; i++) {
326 ui.tableWidget->setVerticalHeaderItem(toRow, lastItem);
330 for (int j = fromRow; j < toRow; j++)
[all …]
/dports/sysutils/qt5-qtdiag/kde-qttools-5.15.2p17/src/designer/src/components/taskmenu/
H A Dtablewidgeteditor.cpp296 void TableWidgetEditor::moveRowsDown(int fromRow, int toRow) in moveRowsDown() argument
298 if (fromRow >= toRow) in moveRowsDown()
302 for (int i = toRow; i > fromRow; i--) { in moveRowsDown()
309 QTableWidgetItem *lastItem = ui.tableWidget->takeItem(toRow, i); in moveRowsDown()
310 for (int j = toRow; j > fromRow; j--) in moveRowsDown()
316 void TableWidgetEditor::moveRowsUp(int fromRow, int toRow) in moveRowsUp() argument
318 if (fromRow >= toRow) in moveRowsUp()
322 for (int i = fromRow; i < toRow; i++) { in moveRowsUp()
326 ui.tableWidget->setVerticalHeaderItem(toRow, lastItem); in moveRowsUp()
330 for (int j = fromRow; j < toRow; j++) in moveRowsUp()
[all …]
/dports/devel/qt5-help/kde-qttools-5.15.2p17/src/designer/src/components/taskmenu/
H A Dtablewidgeteditor.cpp296 void TableWidgetEditor::moveRowsDown(int fromRow, int toRow) in moveRowsDown() argument
298 if (fromRow >= toRow) in moveRowsDown()
302 for (int i = toRow; i > fromRow; i--) { in moveRowsDown()
309 QTableWidgetItem *lastItem = ui.tableWidget->takeItem(toRow, i); in moveRowsDown()
310 for (int j = toRow; j > fromRow; j--) in moveRowsDown()
316 void TableWidgetEditor::moveRowsUp(int fromRow, int toRow) in moveRowsUp() argument
318 if (fromRow >= toRow) in moveRowsUp()
322 for (int i = fromRow; i < toRow; i++) { in moveRowsUp()
326 ui.tableWidget->setVerticalHeaderItem(toRow, lastItem); in moveRowsUp()
330 for (int j = fromRow; j < toRow; j++) in moveRowsUp()
[all …]
/dports/devel/qt5-linguist/kde-qttools-5.15.2p17/src/designer/src/components/taskmenu/
H A Dtablewidgeteditor.cpp296 void TableWidgetEditor::moveRowsDown(int fromRow, int toRow) in moveRowsDown() argument
298 if (fromRow >= toRow) in moveRowsDown()
302 for (int i = toRow; i > fromRow; i--) { in moveRowsDown()
309 QTableWidgetItem *lastItem = ui.tableWidget->takeItem(toRow, i); in moveRowsDown()
310 for (int j = toRow; j > fromRow; j--) in moveRowsDown()
316 void TableWidgetEditor::moveRowsUp(int fromRow, int toRow) in moveRowsUp() argument
318 if (fromRow >= toRow) in moveRowsUp()
322 for (int i = fromRow; i < toRow; i++) { in moveRowsUp()
326 ui.tableWidget->setVerticalHeaderItem(toRow, lastItem); in moveRowsUp()
330 for (int j = fromRow; j < toRow; j++) in moveRowsUp()
[all …]
/dports/devel/qt5-designer/kde-qttools-5.15.2p17/src/designer/src/components/taskmenu/
H A Dtablewidgeteditor.cpp296 void TableWidgetEditor::moveRowsDown(int fromRow, int toRow) in moveRowsDown() argument
298 if (fromRow >= toRow) in moveRowsDown()
302 for (int i = toRow; i > fromRow; i--) { in moveRowsDown()
309 QTableWidgetItem *lastItem = ui.tableWidget->takeItem(toRow, i); in moveRowsDown()
310 for (int j = toRow; j > fromRow; j--) in moveRowsDown()
316 void TableWidgetEditor::moveRowsUp(int fromRow, int toRow) in moveRowsUp() argument
318 if (fromRow >= toRow) in moveRowsUp()
322 for (int i = fromRow; i < toRow; i++) { in moveRowsUp()
326 ui.tableWidget->setVerticalHeaderItem(toRow, lastItem); in moveRowsUp()
330 for (int j = fromRow; j < toRow; j++) in moveRowsUp()
[all …]
/dports/devel/qt5-linguisttools/kde-qttools-5.15.2p17/src/designer/src/components/taskmenu/
H A Dtablewidgeteditor.cpp296 void TableWidgetEditor::moveRowsDown(int fromRow, int toRow) in moveRowsDown() argument
298 if (fromRow >= toRow) in moveRowsDown()
302 for (int i = toRow; i > fromRow; i--) { in moveRowsDown()
309 QTableWidgetItem *lastItem = ui.tableWidget->takeItem(toRow, i); in moveRowsDown()
310 for (int j = toRow; j > fromRow; j--) in moveRowsDown()
316 void TableWidgetEditor::moveRowsUp(int fromRow, int toRow) in moveRowsUp() argument
318 if (fromRow >= toRow) in moveRowsUp()
322 for (int i = fromRow; i < toRow; i++) { in moveRowsUp()
326 ui.tableWidget->setVerticalHeaderItem(toRow, lastItem); in moveRowsUp()
330 for (int j = fromRow; j < toRow; j++) in moveRowsUp()
[all …]
/dports/devel/qt5-assistant/kde-qttools-5.15.2p17/src/designer/src/components/taskmenu/
H A Dtablewidgeteditor.cpp296 void TableWidgetEditor::moveRowsDown(int fromRow, int toRow) in moveRowsDown() argument
298 if (fromRow >= toRow) in moveRowsDown()
302 for (int i = toRow; i > fromRow; i--) { in moveRowsDown()
309 QTableWidgetItem *lastItem = ui.tableWidget->takeItem(toRow, i); in moveRowsDown()
310 for (int j = toRow; j > fromRow; j--) in moveRowsDown()
316 void TableWidgetEditor::moveRowsUp(int fromRow, int toRow) in moveRowsUp() argument
318 if (fromRow >= toRow) in moveRowsUp()
322 for (int i = fromRow; i < toRow; i++) { in moveRowsUp()
326 ui.tableWidget->setVerticalHeaderItem(toRow, lastItem); in moveRowsUp()
330 for (int j = fromRow; j < toRow; j++) in moveRowsUp()
[all …]
/dports/graphics/qt5-pixeltool/kde-qttools-5.15.2p17/src/designer/src/components/taskmenu/
H A Dtablewidgeteditor.cpp296 void TableWidgetEditor::moveRowsDown(int fromRow, int toRow) in moveRowsDown() argument
298 if (fromRow >= toRow) in moveRowsDown()
302 for (int i = toRow; i > fromRow; i--) { in moveRowsDown()
309 QTableWidgetItem *lastItem = ui.tableWidget->takeItem(toRow, i); in moveRowsDown()
310 for (int j = toRow; j > fromRow; j--) in moveRowsDown()
316 void TableWidgetEditor::moveRowsUp(int fromRow, int toRow) in moveRowsUp() argument
318 if (fromRow >= toRow) in moveRowsUp()
322 for (int i = fromRow; i < toRow; i++) { in moveRowsUp()
326 ui.tableWidget->setVerticalHeaderItem(toRow, lastItem); in moveRowsUp()
330 for (int j = fromRow; j < toRow; j++) in moveRowsUp()
[all …]
/dports/x11/qt5-qev/kde-qttools-5.15.2p17/src/designer/src/components/taskmenu/
H A Dtablewidgeteditor.cpp296 void TableWidgetEditor::moveRowsDown(int fromRow, int toRow) in moveRowsDown() argument
298 if (fromRow >= toRow) in moveRowsDown()
302 for (int i = toRow; i > fromRow; i--) { in moveRowsDown()
309 QTableWidgetItem *lastItem = ui.tableWidget->takeItem(toRow, i); in moveRowsDown()
310 for (int j = toRow; j > fromRow; j--) in moveRowsDown()
316 void TableWidgetEditor::moveRowsUp(int fromRow, int toRow) in moveRowsUp() argument
318 if (fromRow >= toRow) in moveRowsUp()
322 for (int i = fromRow; i < toRow; i++) { in moveRowsUp()
326 ui.tableWidget->setVerticalHeaderItem(toRow, lastItem); in moveRowsUp()
330 for (int j = fromRow; j < toRow; j++) in moveRowsUp()
[all …]
/dports/devel/spark/spark-2.1.1/sql/core/src/test/scala/org/apache/spark/sql/execution/benchmark/
H A DUnsafeArrayDataBenchmark.scala48 val intUnsafeArray = intEncoder.toRow(intPrimitiveArray).getArray(0)
65 val doubleUnsafeArray = doubleEncoder.toRow(doublePrimitiveArray).getArray(0)
105 len += intEncoder.toRow(intPrimitiveArray).getArray(0).numElements()
118 len += doubleEncoder.toRow(doublePrimitiveArray).getArray(0).numElements()
145 val intUnsafeArray = intEncoder.toRow(intPrimitiveArray).getArray(0)
159 val doubleUnsafeArray = doubleEncoder.toRow(doublePrimitiveArray).getArray(0)

12345678910