Home
last modified time | relevance | path

Searched refs:row (Results 101 – 125 of 525) sorted by relevance

12345678910>>...21

/trunk/main/offapi/com/sun/star/form/
H A DXGrid.idl40 <p>Note that a grid control does not allow free control over the current row:
41 In such a control, every line represents a row of data of the underlying
43 row</em> of the grid control always equals the current row of the
/trunk/main/svtools/source/dialogs/
H A Daddresstemplate.src108 #define DECLARE_FIELD( row, column ) \
109 FixedText FT_FIELD_BASE + row * 2 + column \
112 Pos = MAP_APPFONT ( 3 + column * 134, RSC_SP_CTRL_GROUP_Y + 2 + row * FIELD_ROW_HEIGHT ) ; \
116 ListBox LB_FIELD_BASE + row * 2 + column \
119 Pos = MAP_APPFONT ( 89 + column * 134, RSC_SP_CTRL_GROUP_Y + row * FIELD_ROW_HEIGHT ) ; \
/trunk/main/solenv/bin/modules/installer/windows/
H A Dfile.pm647 foreach my $row (@$missing_items)
649 … $installer::logger::Info->printf("creating new file item for '%s'\n", $row->GetValue('File'));
650 …my $file_item = create_script_item_for_deleted_file($row, $source_msi, $component_to_features_map);
752 foreach my $row (@{$feature_component_table->GetAllRows()})
754 my $feature = $row->GetValue($feature_column_index);
755 my $component = $row->GetValue($component_column_index);
/trunk/main/offapi/com/sun/star/sdbc/
H A DXDatabaseMetaData.idl1045 /** return the maximum length of a single row.
1245 each row is a procedure description
1396 each row is a table description
1554 each row is a column description
1609 each row is a column privilege description
1662 each row is a table privilege description
1731 each row is a column description
1789 each row is a column description
2283 each row is a SQL type description
2371 each row is an index column description
[all …]
H A DXArray.idl180 The result set contains one row for each array element, with
181 two columns in each row. The second column stores the element
191 …a ResultSet object containing one row for each of the elements in the array designated by this Arr…
220 The result set contains one row for each array element, with
221 two columns in each row. The second column stores the element
/trunk/main/offapi/com/sun/star/accessibility/
H A DAccessibleTableModelChange.idl55 /** The lowest index of a row that has changed.
57 <p>The first row that has been changed or that contains
62 /** The highest index of a row that has changed.
64 <p>The last row that has been changed or that contains modified
/trunk/main/svtools/source/table/
H A Dtablecontrol_impl.cxx122 virtual bool isCellEditable( ColPos col, RowPos row ) const in isCellEditable()
125 (void)row; in isCellEditable()
594 for ( sal_Int32 row = i_first; row <= i_last; ++row ) in rowsRemoved() local
596 if ( markRowAsDeselected( row ) ) in rowsRemoved()
2543 long const row = m_nTopRow + abscissa / m_nRowHeightPixel; in impl_getRowForAbscissa() local
2544 return row < m_pModel->getRowCount() ? row : ROW_INVALID; in impl_getRowForAbscissa()
2613 for ( TableSize row = 0; row < m_pModel->getRowCount(); ++row ) in markAllRowsAsSelected() local
2615 …OSL_ENSURE( isRowSelected( row ), "TableControl_Impl::markAllRowsAsSelected: inconsistency in the … in markAllRowsAsSelected()
/trunk/main/offapi/com/sun/star/chart2/data/
H A DLabelOrigin.idl41 /** If a range spans a single row over more than one column, this
43 single column over more than one row, this is the same as
46 <p>In case of a range spanning more than one column and row,
84 <p>If a range consists of more than one row the result of
H A DXDatabaseDataProvider.idl81 Each time the parent report changes it's current row, the subreport requires
148 row set are to be additionally filtered, the Filter property can be used.</p>
163 /** additional having clause for the row set
170 /** additional group by for the row set
177 /** is a additional sort order definition for a row set.
/trunk/main/qadevOOo/java/OOoRunner/src/main/java/ifc/frame/
H A D_XDocumentTemplates.java200 XRow row = (XRow)UnoRuntime.queryInterface(XRow.class, statRes); in getContentList() local
202 ret += "\n " + row.getString(1); in getContentList()
253 XRow row = (XRow)UnoRuntime.queryInterface(XRow.class, statRes); in getSubContent() local
260 if ( subName.equals(row.getString(1)) ) { in getSubContent()
/trunk/main/sal/textenc/generate/
H A Dcns116431992.pl65 my $row = $_[1];
68 && $row >= 1 && $row <= 94
75 my $row = $_[1];
77 return sprintf("%d-%02d/%02d", $plane, $row, $column);
/trunk/main/toolkit/workben/layout/
H A Dtpsort.cxx454 SCROW row; in FillFieldLists() local
456 for ( row=nFirstSortRow; row<=nMaxRow && i<SC_MAXFIELDS; row++ ) in FillFieldLists()
458 pDoc->GetString( nFirstSortCol, row, nTab, aFieldName ); in FillFieldLists()
463 aFieldName += String::CreateFromInt32( row+1 ); in FillFieldLists()
465 nFieldArr[i] = row; in FillFieldLists()
/trunk/main/sc/source/ui/dbgui/
H A Dtpsort.cxx449 SCROW row; in FillFieldLists() local
451 for ( row=nFirstSortRow; row<=nMaxRow && i<SC_MAXFIELDS; row++ ) in FillFieldLists()
453 pDoc->GetString( nFirstSortCol, row, nTab, aFieldName ); in FillFieldLists()
458 aFieldName += String::CreateFromInt32( row+1 ); in FillFieldLists()
460 nFieldArr[i] = row; in FillFieldLists()
/trunk/main/filter/qa/complex/filter/detection/typeDetection/
H A DHelper.java125 for (int row = 1; row < content.size(); row++){ in getToDoList()
127 String[] tokens = content.get(row).split(";"); in getToDoList()
/trunk/main/xmerge/java/pexcel/src/main/java/org/openoffice/xmerge/converter/xml/sxc/pexcel/
H A DPocketExcelDecoder.java241 int row = -1; in getRowNumber() local
244 row = cell.getRow(); in getRowNumber()
245 Debug.log(Debug.TRACE,"cell row is " + row); in getRowNumber()
247 return (row); in getRowNumber()
H A DPocketExcelEncoder.java192 public void addCell(int row, int column, Format fmt, String cellContents) throws IOException { in addCell() argument
198 wb.addCell(row, column, fmt, cellContents); in addCell()
261 public void setCellFormat(int row, int column, Format fmt) { in setCellFormat() argument
/trunk/main/reportbuilder/java/com/sun/star/report/pentaho/layoutprocessor/
H A DImageElementLayoutController.java301 final Element row = (Element) row1; in addRowStyles() local
303 …if (!ObjectUtilities.equal(row.getNamespace(), OfficeNamespaces.TABLE_NS) || !ObjectUtilities.equa… in addRowStyles()
309 …final String rowStyle = (String) row.getAttribute(OfficeNamespaces.TABLE_NS, OfficeToken.STYLE_NAM… in addRowStyles()
/trunk/main/reportbuilder/java/com/sun/star/report/pentaho/
H A DStarReportData.java49 public boolean setCursorPosition(final int row) throws DataSourceException in setCursorPosition() argument
53 final boolean ret = dataSource.absolute(row); in setCursorPosition()
56 currentRow = row; in setCursorPosition()
/trunk/main/offapi/com/sun/star/chart/
H A DChartAxisAssign.idl33 /** These values specify to which y-axis a data row is assigned.
39 /** Assign row to primary <i>y</i>-axis
45 /** Assign row to secondary <i>y</i>-axis
H A DChartDataRow.idl36 /** describes a single data row, specified by its name and
45 /** The name of the data row.
50 /** The points contained in this data row.
/trunk/main/sc/source/ui/src/
H A Dscerrors.src77 Text [ en-US ] = "The file contains data after row 8192 and therefore can not be read." ;
81 …Text [ en-US ] = "Format error discovered in the file in sub-document $(ARG1) at $(ARG2)(row,col).…
85 Text [ en-US ] = "File format error found at $(ARG1)(row,col)." ;
160 …Text [ en-US ] = "Format error discovered in the file in sub-document $(ARG1) at $(ARG2)(row,col).…
/trunk/main/pyuno/demo/
H A Dswriter.py72 row = rows.getByIndex(0) variable
73 row.setPropertyValue( "BackTransparent", uno.Bool(0) )
74 row.setPropertyValue( "BackColor", 6710932 )
H A Dswritercomp.py74 row = rows.getByIndex(0)
75 row.setPropertyValue( "BackTransparent", uno.Bool(0) )
76 row.setPropertyValue( "BackColor", 6710932 )
/trunk/main/scripting/examples/python/pythonSamples/
H A DTableSample.py63 row = rows.getByIndex(0)
64 row.setPropertyValue( "BackTransparent", uno.Bool(0) )
65 row.setPropertyValue( "BackColor", 6710932 )
/trunk/main/connectivity/source/drivers/evoab2/
H A DNResultSet.cxx854 sal_Bool SAL_CALL OEvoabResultSet::absolute( sal_Int32 row ) throw(SQLException, RuntimeException) in absolute() argument
858 if (row < m_nLength) { in absolute()
859 m_nIndex = row; in absolute()
866 sal_Bool SAL_CALL OEvoabResultSet::relative( sal_Int32 row ) throw(SQLException, RuntimeException) in relative() argument
871 if ((m_nIndex+row) < m_nLength) { in relative()
872 m_nIndex += row; in relative()

Completed in 120 milliseconds

12345678910>>...21