Home
last modified time | relevance | path

Searched refs:row (Results 1 – 25 of 524) sorted by relevance

12345678910>>...21

/trunk/main/toolkit/qa/complex/toolkit/awtgrid/
H A DTMutableGridDataModel.java85 for ( int row=0; row<m_rowValues.length; ++row ) in testAddRows()
90 m_rowValues[row][col], m_dataModel.getCellData( col, row ) ); in testAddRows()
120 for ( int row=0; row<expectedRowCount; ++row ) in testInsertRow()
189 for ( int row=0; row<expectedRowCount; ++row ) in testInsertRows()
195 : ( row >= insertionPos ) && ( row < insertionPos + insertedRowCount ) in testInsertRows()
252 for ( int row = rowToRemove; row<m_rowValues.length-1; ++row ) in testRemoveRow()
257 m_rowValues[row+1][col], m_dataModel.getCellData( col, row ) ); in testRemoveRow()
415 for ( int row=0; row<rowCount; ++row ) in impl_getCurrentData()
419 data[row][col] = m_dataModel.getCellData( col, row ); in impl_getCurrentData()
429 for ( int row=0; row<rowCount; ++row ) in impl_getCurrentRowHeadings()
[all …]
/trunk/main/sal/textenc/generate/
H A Dbig5hkscs2001.tab29 /* row 0: --- */
30 /* row 1: --- */
31 /* row 2: --- */
32 /* row 3: --- */
33 /* row 4: --- */
34 /* row 5: --- */
35 /* row 6: --- */
36 /* row 7: --- */
37 /* row 8: --- */
165 /* row 136 */
[all …]
H A Dcns116431992.tab29 /* plane 1, row 1 */
41 /* plane 1, row 2 */
53 /* plane 1, row 3 */
60 /* plane 1, row 4 */
72 /* plane 1, row 5 */
83 /* plane 1, row 6 */
89 /* plane 1, row 7 */
120 /* plane 1, row 34 */
127 /* plane 1, row 36 */
139 /* plane 1, row 37 */
[all …]
/trunk/main/connectivity/qa/complex/connectivity/dbase/
H A DDBaseNumericFunctions.java262 assure("ABS(2) failed!", row.getInt(1) == 2); in abs()
263 assure("ABS(-32) failed!", row.getInt(2) == 32); in abs()
270 assure("SIGN(0) failed!", row.getInt(2) == 0); in sign()
312 row.getDouble(2); in log()
313 assure("LOG(-2) failed!", row.wasNull()); in log()
330 final XRow row = execute(xRowRes, "SQRT(4) "); in sqrt() local
336 final XRow row = execute(xRowRes, "PI() "); in pi() local
348 final XRow row = execute(xRowRes, "SIN(2) "); in sin() local
360 final XRow row = execute(xRowRes, "ACOS(1) "); in acos() local
366 final XRow row = execute(xRowRes, "ASIN(0) "); in asin() local
[all …]
H A DDBaseStringFunctions.java232 final XRow row = execute(xRowRes, "ASCII('2') "); in acsii() local
233 assure("acsii('2') failed!", row.getInt(1) == 50); in acsii()
239 assure("char_length('test') failed!", row.getInt(1) == 4); in char_length()
241 assure("OCTET_LENGTH('test') failed!", row.getInt(3) == 4); in char_length()
264 final XRow row = execute(xRowRes, "LTRIM(' barbar') "); in ltrim() local
270 final XRow row = execute(xRowRes, "RTRIM('barbar ') "); in rtrim() local
276 final XRow row = execute(xRowRes, "space(6) "); in space() local
277 assure("space(6) failed!", row.getString(1).equals(" ")); in space()
288 final XRow row = execute(xRowRes, "REPEAT('OOo', 3) "); in repeat() local
300 final XRow row = execute(xRowRes, "LEFT('foobarbar', 5) "); in left() local
[all …]
H A DDBaseDateFunctions.java252 final XRow row = execute(xRowRes, "WEEK('1998-02-20') "); in week() local
253 assure("WEEK('1998-02-20') failed!", row.getInt(1) == 7); in week()
258 final XRow row = execute(xRowRes, "YEAR('98-02-03') "); in year() local
259 assure("YEAR('98-02-03') failed!", row.getInt(1) == 98); in year()
264 final XRow row = execute(xRowRes, "HOUR('10:05:03') "); in hour() local
265 assure("HOUR('10:05:03') failed!", row.getInt(1) == 10); in hour()
282 final XRow row = execute(xRowRes, "CURDATE() "); in curdate() local
283 final com.sun.star.util.Date aDate = row.getDate(1); in curdate()
289 final XRow row = execute(xRowRes, "CURTIME() "); in curtime() local
290 final com.sun.star.util.Time aTime = row.getTime(1); in curtime()
[all …]
/trunk/main/forms/qa/integration/forms/
H A DCellBinding.java118 final short row = 2; in checkTextFieldBinding() local
198 short row = (short)10; in checkStringRadioBinding() local
227 short row = (short)13; in checkBooleanCheckBoxBinding() local
228 bindToCell( checkBox, col, row ); in checkBooleanCheckBoxBinding()
258 short row = (short)15; in checkStringCheckBoxBinding() local
259 bindToCell( checkBox, col, row ); in checkStringCheckBoxBinding()
289 short row = (short)18; in checkListBoxBinding() local
304 bindToCell( listBox, col, row ); in checkListBoxBinding()
331 short row = (short)21; in checkListBoxIndexBinding() local
356 setCellValue( col, row, 3 ); in checkListBoxIndexBinding()
[all …]
H A DListBox.java89 for ( int row=0; row<2; ++row ) in checkForeignKeys()
98 if ( !listBoxControl.getSelectedItem().equals( displayValues[row] ) ) in checkForeignKeys()
216 for ( int row=0; row<displayValues.length; ++row ) in impl_createDatabase()
218 statementParameters.setString( 1, keyValues[row] ); in impl_createDatabase()
219 statementParameters.setString( 2, displayValues[row] ); in impl_createDatabase()
238 for ( int row=0; row<2; ++row ) in impl_createDatabase()
240 statementParameters.setInt( 1, row ); in impl_createDatabase()
243 statementParameters.setString( i+2, foreignKeyValues.get(i)[row] ); in impl_createDatabase()
/trunk/main/offapi/com/sun/star/sdbc/
H A DXResultSet.idl61 first call to next makes the first row the current row; the
62 second call makes the second row the current row, and so on.
117 to determine whether the current row is the last row in the result set.
161 /** retrieves the current row number. The first row is number 1, the
177 beginning of the result set. The first row is row 1, the second
178 is row 2, and so on.
186 cursor on the last row,
193 row, respectively.
215 the first/last row. Calling
227 the first row or after the last row of the result set.
[all …]
H A DXResultSetUpdate.idl44 /** inserts the contents of the insert row into the result set and
45 the database. Must be on the insert row when this method is called.
53 current row. Cannot be called when on the insert row.
60 /** deletes the current row from the result set and the underlying
61 database. Cannot be called when on the insert row.
68 /** cancels the updates made to a row.
88 remembered while the cursor is positioned on the insert row.
92 The insert row is a special row associated with an updatable
93 result set. It is essentially a buffer where a new row may
97 inserting the row into the result set.
[all …]
/trunk/main/qadevOOo/java/OOoRunner/src/main/java/ifc/sdbc/
H A D_XRowUpdate.java102 private XRow row = null ; field in _XRowUpdate
144 row.getTimestamp(i + 1) ; in _updateNull()
151 if (!row.wasNull()) { in _updateNull()
216 byte getVal = row.getByte(idx) ; in _updateByte()
245 short getVal = row.getShort(idx) ; in _updateShort()
274 int getVal = row.getInt(idx) ; in _updateInt()
303 long getVal = row.getLong(idx) ; in _updateLong()
453 Date newVal = row.getDate(idx) ; in _updateDate()
456 Date getVal = row.getDate(idx) ; in _updateDate()
483 Time newVal = row.getTime(idx) ; in _updateTime()
[all …]
/trunk/main/sc/source/core/tool/
H A Dinterpr5.cxx1850 for (SCSIZE row = 0; row < n; row++) in lcl_MFastMult() local
1877 for (SCSIZE row=nR; row<nN; row++) in lcl_GetColumnEuclideanNorm() local
1898 for (SCSIZE row=nR; row<nN; row++) in lcl_GetColumnMaximumNorm() local
1922 for (SCSIZE row=nR; row<nN; row++) in lcl_GetColumnSumProduct() local
1974 for (SCSIZE row = col; row <nN; row++) in lcl_CalculateQRdecomposition() local
2005 for (SCSIZE row = 0; row <nK; row++) in lcl_TCalculateQRdecomposition() local
2048 for (SCSIZE row = nC; row < nN; row++) in lcl_ApplyHouseholderTransformation() local
2105 for (SCSIZE row = 0; row < nK; row++) in lcl_SolveWithLowerLeftTriangle() local
2131 for (SCSIZE row = 0; row < nK; row++) in lcl_ApplyUpperRightTriangle() local
2737 for (SCSIZE row = 0; row < K; row++) in CalulateRGPRKP() local
[all …]
/trunk/test/testcommon/source/org/openoffice/test/vcl/widgets/
H A DVclTreeListBox.java51 public String getItemText(int row, int col) { in getItemText() argument
236 public boolean isChecked(int row) { in isChecked() argument
264 public boolean isTristate(int row) { in isTristate() argument
292 public int getState(int row) { in getState() argument
296 public int getState(int row, int col) { in getState() argument
308 public void check(int row) { in check() argument
312 public void check(int row, int col) { in check() argument
324 public void unCheck(int row) { in unCheck() argument
328 public void unCheck(int row, int col) { in unCheck() argument
341 public void triState(int row) { in triState() argument
[all …]
/trunk/main/vcl/unx/gtk/a11y/
H A Datktable.cxx91 gint row, in table_wrapper_ref_at() argument
121 gint row, in table_wrapper_get_index_at() argument
130 row, column, pTable->getAccessibleIndex( row, column ) ); in table_wrapper_get_index_at()
254 row, column, pTable->getAccessibleColumnExtentAt( row, column ) ); in table_wrapper_get_column_extent_at()
280 row, column, pTable->getAccessibleRowExtentAt( row, column ) ); in table_wrapper_get_row_extent_at()
329 row, getAsConst( pTable->getAccessibleRowDescription( row ) ) ); in table_wrapper_get_row_description()
371 gint row ) in table_wrapper_get_row_header() argument
382 row, row ); in table_wrapper_get_row_header()
560 row, pTable->isAccessibleRowSelected( row ) ? "true" : "false" ); in table_wrapper_is_row_selected()
577 gint row, in table_wrapper_is_selected() argument
[all …]
/trunk/main/connectivity/java/sdbc_postgresql/src/com/sun/star/sdbcx/comp/postgresql/
H A DPostgresqlDatabaseMetadata.java97 String tableCat = row.getString(1); in getColumns()
101 short dataType = row.getShort(5); in getColumns()
102 String typeName = row.getString(6); in getColumns()
103 int columnSize = row.getInt(7); in getColumns()
105 int decimalDigits = row.getInt(9); in getColumns()
106 int numPrecRadix = row.getInt(10); in getColumns()
107 int nullable = row.getInt(11); in getColumns()
108 String remarks = row.getString(12); in getColumns()
110 int sqlDataType = row.getInt(14); in getColumns()
348 short dataType = row.getShort(2); in getTypeInfo()
[all …]
/trunk/main/connectivity/java/dbtools/src/org/apache/openoffice/comp/sdbc/dbtools/sdbcx/
H A DSqlTableHelper.java97 columnDescription.type = row.getInt(5); in collectColumnDescriptions()
99 columnDescription.columnSize = row.getInt(7); in collectColumnDescriptions()
101 columnDescription.nullable = row.getInt(11); in collectColumnDescriptions()
165 pkName = row.getString(6); in readPrimaryKey()
188 if (row != null) { in readForeignKeys()
193 if (row.wasNull()) { in readForeignKeys()
200 int updateRule = row.getInt(10); in readForeignKeys()
201 int deleteRule = row.getInt(11); in readForeignKeys()
202 String fkName = row.getString(12); in readForeignKeys()
250 String name = row.getString(5); in readIndexes()
[all …]
H A DOKeyColumnContainer.java65 XRow row = UnoRuntime.queryInterface(XRow.class, results); in createObject() local
67 if (row.getString(8).equals(name) && key.getName().equals(row.getString(12))) { in createObject()
68 refColumnName = row.getString(4); in createObject()
78 XRow row = UnoRuntime.queryInterface(XRow.class, results); in createObject() local
80 if (row.getString(4).equals(name)) { in createObject()
81 int dataType = row.getInt(5); in createObject()
82 String typeName = row.getString(6); in createObject()
83 int size = row.getInt(7); in createObject()
84 int dec = row.getInt(9); in createObject()
85 int nul = row.getInt(11); in createObject()
[all …]
/trunk/main/scripting/workben/installer/
H A DIdeVersion.java130 Object o = getValueAt(row, col); in initComponents()
148 Object o = getValueAt(row,col); in initComponents()
297 ArrayList row = new ArrayList(); in MyTableModelIDE() local
298 row.add(0, new Boolean(false)); in MyTableModelIDE()
300 row.add(1, key); in MyTableModelIDE()
305 row.add(2, path); in MyTableModelIDE()
310 data.add(row); in MyTableModelIDE()
328 if (row < 0 || row > getRowCount() || in getValueAt()
349 ArrayList aRow = (ArrayList)data.get(row); in setValueAt()
351 fireTableCellUpdated(row, col); in setValueAt()
[all …]
H A DVersion.java103 Object o = getValueAt(row, col); in initComponents()
121 Object o = getValueAt(row,col); in initComponents()
288 row.add(0, new Boolean(false)); in MyTableModel()
290 row.add(1, key); in MyTableModel()
295 row.add(2, path); in MyTableModel()
300 data.add(row); in MyTableModel()
318 public Object getValueAt(int row, int col) { in getValueAt() argument
319 if (row < 0 || row > getRowCount() || in getValueAt()
323 ArrayList aRow = (ArrayList)data.get(row); in getValueAt()
340 ArrayList aRow = (ArrayList)data.get(row); in setValueAt()
[all …]
/trunk/main/offapi/com/sun/star/accessibility/
H A DXAccessibleTable.idl55 including) used row or column as returned by
87 /** Returns the description text of the specified row in the
125 specified row and column in the table.
139 Returns the row extent of the specified cell.
150 specified row and column in the table.
174 /** Returns the row headers as an <type>XAccessibleTable</type>
204 order. If no row is selected then the sequence is empty.
266 The row index for which to retrieve the cell.
303 specified row and column is selected.
343 /** Translate the given child index into the corresponding row
[all …]
/trunk/main/offapi/com/sun/star/awt/grid/
H A DXMutableGridDataModel.idl41 /** appends a row to the model.
44 denotes the heading of the row.
46 specifies the content of the row.
61 /** inserts a row into the set of data rows
66 denotes the heading of the row.
68 specifies the content of the row.
93 /** removes a row of data from the model
111 the row index of the to-be-updated cell
120 /** updates the content of a given row.
142 /** sets a new title for a given row.
[all …]
/trunk/main/winaccessibility/source/UAccCOM/
H A DAccTable.cpp169 long lExt = pXAccTable->getAccessibleColumnExtentAt(row,column); in get_columnExtentAt()
349 STDMETHODIMP CAccTable::get_rowDescription(long row, BSTR * description) in get_rowDescription() argument
400 long lExt = GetXInterface()->getAccessibleRowExtentAt(row,column); in get_rowExtentAt()
636 *isSelected = GetXInterface()->isAccessibleRowSelected(row); in get_isRowSelected()
664 *isSelected = GetXInterface()->isAccessibleSelected(row,column); in get_isSelected()
676 STDMETHODIMP CAccTable::selectRow(long row) in selectRow() argument
690 pRTableExtent.get()->selectRow(row); in selectRow()
705 lChildIndex = GetXInterface()->getAccessibleIndex(row, lCol); in selectRow()
769 STDMETHODIMP CAccTable::unselectRow(long row) in unselectRow() argument
783 if(pRTableExtent.get()->unselectRow(row)) in unselectRow()
[all …]
/trunk/main/offapi/com/sun/star/sdb/
H A DXColumn.idl64 /** is used to access data which is collected in a row.
83 /** gets the value of a column in the current row as a String.
92 /** gets the value of a column in the current row as boolean.
101 /** gets the value of a column in the current row as a byte.
110 /** gets the value of a column in the current row as a short.
119 /** gets the value of a column in the current row as a long.
128 /** gets the value of a column in the current row as a hyper.
137 /** gets the value of a column in the current row as a float.
146 /** gets the value of a column in the current row as a double.
267 /** gets a BLOB (Binary Large OBject) value in the current row.
[all …]
H A DRowSet.idl77 working with a row set:
101 <tr><td valign="top"><em>row state</em></td>
106 <tr><td valign="top"><em>row count</em></td>
177 still is on row 15, since the deleted row vanished with the move operation.</dd>
199 row after the deleted row.</dd>
231 /** is the interface for updating row data to the database.
260 If the row set is not alive (i.e., it was not executed before),
336 /** additional having clause for the row set
340 /** additional group by for the row set
355 /** indicates that the current row is modified.
[all …]
/trunk/main/sc/source/ui/vba/
H A Dvbafont.cxx89 for ( sal_Int32 row = 0; row < nRows; ++row ) in setSuperscript() local
91 …uno::Reference< beans::XPropertySet > xProps( xCellRange->getCellByPosition( col, row ) , uno::UNO… in setSuperscript()
129 for ( sal_Int32 row = 0; row < nRows; ++row ) in getSuperscript() local
131 …uno::Reference< beans::XPropertySet > xProps( xCellRange->getCellByPosition( col, row ), uno::UNO_… in getSuperscript()
133 if ( !col && !row ) in getSuperscript()
161 for ( sal_Int32 row = 0; row < nRows; ++row ) in setSubscript() local
163 …uno::Reference< beans::XPropertySet > xProps( xCellRange->getCellByPosition( col, row ) , uno::UNO… in setSubscript()
203 for ( sal_Int32 row = 0; row < nRows; ++row ) in getSubscript() local
205 …uno::Reference< beans::XPropertySet > xProps( xCellRange->getCellByPosition( col, row ), uno::UNO_… in getSubscript()
207 if ( !col && !row ) in getSubscript()

Completed in 463 milliseconds

12345678910>>...21