Home
last modified time | relevance | path

Searched defs:row (Results 1 – 25 of 116) sorted by relevance

12345

/AOO41X/main/connectivity/qa/complex/connectivity/dbase/
H A DDBaseNumericFunctions.java261 final XRow row = execute(xRowRes, "ABS(2),ABS(-32) "); in abs() local
268 final XRow row = execute(xRowRes, "SIGN(-32),SIGN(0),SIGN(234) "); in sign() local
276 final XRow row = execute(xRowRes, "MOD(234, 10) "); in mod() local
282 final XRow row = execute(xRowRes, "FLOOR(1.23),FLOOR(-1.23) "); in floor() local
289 final XRow row = execute(xRowRes, "CEILING(1.23),CEILING(-1.23) "); in ceiling() local
296 final XRow row = execute(xRowRes, "ROUND(-1.23),ROUND(1.298, 1) "); in round() local
303 final XRow row = execute(xRowRes, "EXP(2),EXP(-2) "); in exp() local
310 final XRow row = execute(xRowRes, "LOG(2),LOG(-2) "); in log() local
318 final XRow row = execute(xRowRes, "LOG10(100) "); in log10() local
324 final XRow row = execute(xRowRes, "POWER(2,2) "); in pow() local
[all …]
H A DDBaseStringFunctions.java214 final XRow row = execute(xRowRes, "upper('test'),UCASE('test') "); in upper() local
221 final XRow row = execute(xRowRes, "lower('TEST'),LCASE('TEST') "); in lower() local
232 final XRow row = execute(xRowRes, "ASCII('2') "); in acsii() local
238 …final XRow row = execute(xRowRes, "char_length('test'),character_length('test'),OCTET_LENGTH('test… in char_length() local
246 final XRow row = execute(xRowRes, "CONCAT('Hello',' ','World') "); in concat() local
252 final XRow row = execute(xRowRes, "LOCATE('bar', 'foobarbar') "); in locate() local
258 final XRow row = execute(xRowRes, "SUBSTRING('Quadratically',5) "); in substring() local
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
[all …]
H A DDBaseDateFunctions.java207 final XRow row = execute(xRowRes, "DAYOFWEEK('1998-02-03') "); in dayofweek() local
213 final XRow row = execute(xRowRes, "DAYOFMONTH('1998-02-03') "); in dayofmonth() local
219 final XRow row = execute(xRowRes, "DAYOFYEAR('1998-02-03') "); in dayofyear() local
225 final XRow row = execute(xRowRes, "month('1998-02-03') "); in month() local
231 final XRow row = execute(xRowRes, "DAYNAME('1998-02-05') "); in dayname() local
237 final XRow row = execute(xRowRes, "MONTHNAME('1998-02-05') "); in monthname() local
243 …final XRow row = execute(xRowRes, "QUARTER('98-01-01'),QUARTER('98-04-01'),QUARTER('98-07-01'),QUA… in quarter() local
252 final XRow row = execute(xRowRes, "WEEK('1998-02-20') "); in week() local
258 final XRow row = execute(xRowRes, "YEAR('98-02-03') "); in year() local
264 final XRow row = execute(xRowRes, "HOUR('10:05:03') "); in hour() local
[all …]
/AOO41X/test/testcommon/source/org/openoffice/test/vcl/widgets/
H A DVclTreeListBox.java51 public String getItemText(int row, int col) { in getItemText()
236 public boolean isChecked(int row) { in isChecked()
240 public boolean isChecked(int row, int col) { in isChecked()
264 public boolean isTristate(int row) { in isTristate()
268 public boolean isTristate(int row, int col) { in isTristate()
292 public int getState(int row) { in getState()
296 public int getState(int row, int col) { in getState()
308 public void check(int row) { in check()
312 public void check(int row, int col) { in check()
324 public void unCheck(int row) { in unCheck()
[all …]
/AOO41X/test/testuno/source/testlib/uno/
H A DCellInfo.java30 private int row; field in CellInfo
36 public CellInfo(int col, int row) { in CellInfo()
50 public void setRow(int row) { in setRow()
/AOO41X/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
258 short row = (short)15; in checkStringCheckBoxBinding() local
289 short row = (short)18; in checkListBoxBinding() local
331 short row = (short)21; in checkListBoxIndexBinding() local
393 …private boolean verifyVoidCell( short col, short row, String failErrorMessage ) throws com.sun.sta… in verifyVoidCell()
410 …private boolean verifyNumericCellContent( short col, short row, double value, String failErrorMess… in verifyNumericCellContent()
426 …private boolean verifyStringCellContent( short col, short row, String text, String failErrorMessag… in verifyStringCellContent()
442 private void setCellText( short col, short row, String text ) throws com.sun.star.uno.Exception in setCellText()
[all …]
H A DSpreadsheetDocument.java83 …c com.sun.star.form.binding.XValueBinding createCellBinding( short sheet, short column, short row ) in createCellBinding()
91 ….sun.star.form.binding.XValueBinding createListIndexBinding( short sheet, short column, short row ) in createListIndexBinding()
99 …orm.binding.XValueBinding createCellBinding( short sheet, short column, short row, boolean support… in createCellBinding()
/AOO41X/main/odk/examples/DevelopersGuide/Database/
H A DSales.java99 XRow row = (XRow)UnoRuntime.queryInterface(XRow.class, rs); in retrieveSalesData() local
118 XRow row = (XRow)UnoRuntime.queryInterface(XRow.class,srs); in retrieveSalesData2() local
155 XRow row = (XRow)UnoRuntime.queryInterface(XRow.class,rs); in insertRow() local
179 XRow row = (XRow)UnoRuntime.queryInterface(XRow.class,rs); in deleteRow() local
199 XRow row = (XRow)UnoRuntime.queryInterface(XRow.class, rs); in refreshRow() local
/AOO41X/main/scripting/workben/installer/
H A DIdeVersion.java297 ArrayList row = new ArrayList(); in MyTableModelIDE() local
327 public Object getValueAt(int row, int col) { in getValueAt()
340 public boolean isCellEditable(int row, int col) { in isCellEditable()
348 public void setValueAt(Object value, int row, int col) { in setValueAt()
361 ArrayList row = (ArrayList)iter.next(); in isAnySelected() local
H A DVersion.java287 ArrayList row = new ArrayList(); in MyTableModel() local
318 public Object getValueAt(int row, int col) { in getValueAt()
331 public boolean isCellEditable(int row, int col) { in isCellEditable()
339 public void setValueAt(Object value, int row, int col) { in setValueAt()
352 ArrayList row = (ArrayList)iter.next(); in isAnySelected() local
/AOO41X/main/wizards/com/sun/star/wizards/agenda/
H A DCGTopic.java57 public CGTopic( Object row) { in CGTopic()
72 public void setDataToRow(Object row) { in setDataToRow()
/AOO41X/main/connectivity/source/drivers/adabas/
H A DBResultSet.cxx114 sal_Bool SAL_CALL OAdabasResultSet::absolute( sal_Int32 row ) throw(SQLException, RuntimeException) in absolute()
138 sal_Bool SAL_CALL OAdabasResultSet::relative( sal_Int32 row ) throw(SQLException, RuntimeException) in relative()
/AOO41X/main/xmlsecurity/tools/uno/
H A DUnsolvedReferenceTableModel.java60 public Object getValueAt(int row, int col) in getValueAt()
80 public boolean isCellEditable(int row, int col) in isCellEditable()
/AOO41X/main/odk/examples/DevelopersGuide/Forms/
H A DSpreadsheetDocument.java66 …c com.sun.star.form.binding.XValueBinding createCellBinding( short sheet, short column, short row ) in createCellBinding()
73 ….sun.star.form.binding.XValueBinding createListIndexBinding( short sheet, short column, short row ) in createListIndexBinding()
80 …orm.binding.XValueBinding createCellBinding( short sheet, short column, short row, boolean support… in createCellBinding()
/AOO41X/main/scripting/java/org/openoffice/idesupport/ui/
H A DScriptPanel.java159 public void remove(int row) { in remove()
175 public Object getValueAt(int row, int col) { in getValueAt()
189 public boolean isCellEditable(int row, int col) { in isCellEditable()
196 public void setValueAt(Object value, int row, int col) { in setValueAt()
/AOO41X/main/winaccessibility/source/UAccCOM/
H A DAccTable.cpp47 STDMETHODIMP CAccTable::get_accessibleAt(long row, long column, IUnknown * * accessible) in get_accessibleAt()
153 STDMETHODIMP CAccTable::get_columnExtentAt(long row, long column, long * nColumnsSpanned) in get_columnExtentAt()
349 STDMETHODIMP CAccTable::get_rowDescription(long row, BSTR * description) in get_rowDescription()
384 STDMETHODIMP CAccTable::get_rowExtentAt(long row, long column, long * nRowsSpanned) in get_rowExtentAt()
620 STDMETHODIMP CAccTable::get_isRowSelected(long row, unsigned char * isSelected) in get_isRowSelected()
649 STDMETHODIMP CAccTable::get_isSelected(long row, long column, unsigned char * isSelected) in get_isSelected()
676 STDMETHODIMP CAccTable::selectRow(long row) in selectRow()
769 STDMETHODIMP CAccTable::unselectRow(long row) in unselectRow()
/AOO41X/main/vcl/unx/gtk/a11y/
H A Datktable.cxx91 gint row, in table_wrapper_ref_at()
121 gint row, in table_wrapper_get_index_at()
245 gint row, in table_wrapper_get_column_extent_at()
271 gint row, in table_wrapper_get_row_extent_at()
321 gint row ) in table_wrapper_get_row_description()
371 gint row ) in table_wrapper_get_row_header()
552 gint row ) in table_wrapper_is_row_selected()
577 gint row, in table_wrapper_is_selected()
/AOO41X/main/xmerge/source/xmerge/java/org/openoffice/xmerge/converter/xml/sxc/
H A DSpreadsheetEncoder.java69 public abstract void setCellFormat(int row, int column, Format fmt); in setCellFormat()
81 public abstract void addCell(int row, int column, in addCell()
/AOO41X/main/reportbuilder/java/com/sun/star/report/
H A DReportFunction.java39 public ReportFunction advance(DataRow row); in advance()
H A DDataSource.java39 boolean absolute(int row) throws DataSourceException; in absolute()
H A DReportExpression.java46 Object getValue(DataRow row); in getValue()
/AOO41X/main/l10ntools/java/receditor/java/transex3/view/
H A DSdfTable.java32 public boolean isCellEditable(int row, int col) { in isCellEditable()
/AOO41X/main/reportbuilder/java/com/sun/star/report/pentaho/expressions/
H A DSumExpression.java42 public Object getValue(final DataRow row) in getValue()
/AOO41X/main/xmerge/source/pexcel/java/org/openoffice/xmerge/converter/xml/sxc/pexcel/
H A DPocketExcelEncoder.java192 public void addCell(int row, int column, Format fmt, String cellContents) throws IOException { in addCell()
261 public void setCellFormat(int row, int column, Format fmt) { in setCellFormat()
/AOO41X/main/qadevOOo/tests/java/ifc/frame/
H A D_XDocumentTemplates.java200 XRow row = (XRow)UnoRuntime.queryInterface(XRow.class, statRes); in getContentList() local
253 XRow row = (XRow)UnoRuntime.queryInterface(XRow.class, statRes); in getSubContent() local

12345