Home
last modified time | relevance | path

Searched refs:rows (Results 1 – 25 of 302) sorted by relevance

12345678910>>...13

/trunk/main/qadevOOo/java/OOoRunner/src/main/java/ifc/sheet/
H A D_XSheetCellCursor.java113 if (cols == 1 && rows == height) { in _collapseToCurrentArray()
167 int rows = ((XColumnRowRange) in _collapseToCurrentRegion() local
196 rows = ((XColumnRowRange) in _collapseToCurrentRegion()
267 int rows = ((XColumnRowRange) in _collapseToMergedArea() local
279 + "x" + rows ); in _collapseToMergedArea()
305 int rows = ((XColumnRowRange) in _collapseToSize() local
315 + cols + "x" +rows); in _collapseToSize()
342 int rows = ((XColumnRowRange) in _expandToEntireColumns() local
379 int rows = ((XColumnRowRange) in _expandToEntireRows() local
383 if (cols >= 256 && rows == height) { in _expandToEntireRows()
[all …]
/trunk/main/connectivity/java/dbtools/src/org/apache/openoffice/comp/sdbc/dbtools/util/
H A DCustomResultSet.java54 private ArrayList<ORowSetValue[]> rows; field in CustomResultSet
62 this.rows = rows; in CustomResultSet()
101 if (currentRow >= rows.size()) { in absolute()
102 currentRow = rows.size(); in absolute()
110 currentRow = rows.size(); in afterLast()
136 return currentRow == rows.size(); in isAfterLast()
156 currentRow = rows.size() - 1; in last()
162 if (currentRow < rows.size()) { in next()
165 return currentRow < rows.size(); in next()
187 if (currentRow >= rows.size()) { in relative()
[all …]
H A DDatabaseMetaDataResultSet.java68 private ArrayList<ORowSetValue[]> rows; field in DatabaseMetaDataResultSet
80 this.rows = rows; in DatabaseMetaDataResultSet()
123 if (currentRow >= rows.size()) { in absolute()
124 currentRow = rows.size(); in absolute()
132 currentRow = rows.size(); in afterLast()
158 return currentRow == rows.size(); in isAfterLast()
178 currentRow = rows.size() - 1; in last()
184 if (currentRow < rows.size()) { in next()
187 return currentRow < rows.size(); in next()
209 if (currentRow >= rows.size()) { in relative()
[all …]
/trunk/main/toolkit/src2xml/source/
H A Dboxer.py29 self.rows = {}
33 self.rows[y] = self.rows.get (y, {})
34 while x in self.rows[y]:
36 self.rows[y] = self.rows.get (y, {})
37 self.rows[y][x] = elem
41 ys = sorted(self.rows.keys())
43 xs = sorted(self.rows[y].keys())
46 root.appendChild(self.rows[y][xs[0]])
52 elem = self.rows[y][x]
/trunk/main/offapi/com/sun/star/ucb/
H A DListActionType.idl63 /** One or more rows were inserted into the list.
69 newly inserted rows. If the count is greater than one, the inserted rows
74 the new rows (i.e. for remote optimizing), but this is not required
83 /** One or more rows were removed from the list.
89 removed rows. If the count is greater than one, the removed rows have to be
109 /** One or more rows were moved to another position.
113 moved rows. If the count is greater than one, the moved rows have to be
118 (i.e. When two rows at position 3 and 4 are moved for a shift '+1',
126 /** The properties of one or more rows have changed.
133 rows with modified properties have to be one after the other.
[all …]
H A DXFetchProviderForContentAccess.idl40 <type>XContentAccess</type> for several rows of a
47 rows
57 the count of rows
60 <TRUE/>, if you want the rows to be read in the same order, as they
71 indicated rows
81 the count of rows
84 <TRUE/>, if you want the rows to be read in the same order, as they
94 /** returns the <type>XContent</types>s of the columns of the indicated rows
104 the count of rows
107 <TRUE/>, if you want the rows to be read in the same order, as they
H A DFetchError.idl32 while fetching data of some <type>ContentResultSet</type> rows.
47 count of demanded rows, but the maximum possible count must be
56 in readorder! ) rows are not contained in the <type>FetchResult</type>.
58 of demanded rows. But all properly readed rows so far must be contained.
/trunk/main/offapi/com/sun/star/sheet/
H A DXPrintAreas.idl98 <p>The rows of the passed range are ignored.</p>
111 /** returns, whether the title rows are repeated on all subsequent
118 /** specifies whether the title rows are repeated on all subsequent
122 if <TRUE/>, title rows are repeated on each page.
128 /** returns the range that is specified as title rows range.
130 <p>Title rows can be automatically repeated on all subsequent
135 the range of rows that is specified as title rows range.
141 /** specifies a range of rows as title rows range.
145 <p>Title rows can be automatically repeated on all subsequent
150 the title rows range.
/trunk/main/wizards/com/sun/star/wizards/ui/
H A DButtonList.java61 private int rows = 3; field in ButtonList
115 int nYPos = pos.Height + (m_aButtonSize.Height + gap.Height) * rows + gap.Height; in create()
207 m_aButtons = new XControl[rows * cols]; in create()
213 for (int r = 0; r < rows; r++) in create()
332 int i = pageStart + cols * rows; in pageEnd()
527 return rows; in getRows()
621 rows = i; in setRows()
694 if (pageStart < getListModel().getSize() - rows * cols) in nextPage()
696 setPageStart(pageStart + rows * cols); in nextPage()
706 int i = pageStart - rows * cols; in prevPage()
[all …]
H A DImageList.java74 private int rows = 3; field in ImageList
299 m_aImages = new XControl[rows * cols]; in create()
315 for (int r = 0; r < rows; r++) in create()
431 int i = pageStart + cols * rows; in pageEnd()
444 if (selected < pageStart || selected >= (pageStart + rows * cols)) in refreshSelection()
677 return rows; in getRows()
771 rows = i; in setRows()
838 if (pageStart < getListModel().getSize() - rows * cols) in nextPage()
840 setPageStart(pageStart + rows * cols); in nextPage()
850 int i = pageStart - rows * cols; in prevPage()
[all …]
/trunk/main/basegfx/source/workbench/
H A Dgauss.hxx47 int rows, in eliminate() argument
59 for(j=i+1; j<rows; ++j) in eliminate()
76 for(j=i+1; j<rows; ++j) in eliminate()
109 int rows, in substitute() argument
117 for(j=rows-1; j>=0; --j) in substitute()
159 int rows, in solve() argument
164 if( eliminate<Matrix,BaseType>(matrix, rows, cols, minPivot) ) in solve()
165 return substitute<Matrix,Vector,BaseType>(matrix, rows, cols, result); in solve()
/trunk/main/offapi/com/sun/star/awt/grid/
H A DXMutableGridDataModel.idl50 /** appends multiple rows of data to the model.
52 denotes the headings of the to-be-added rows.
54 specifies the data of the rows to be added.
61 /** inserts a row into the set of data rows
71 rows in the model.
76 /** inserts multiple rows of data into the model.
78 denotes the position at which the rows are to be inserted
80 denotes the headings of the to-be-added rows.
82 specifies the data of the rows to be added.
87 rows in the model.
[all …]
/trunk/main/qadevOOo/java/OOoRunner/src/main/java/ifc/chart/
H A D_XDiagram.java93 int rows = rowamount.intValue(); in _getDataRowProperties() local
94 rows -= 1; in _getDataRowProperties()
97 log.println("There are " + rows + " rows."); in _getDataRowProperties()
99 for (int i = 0; i < rows; i++) { in _getDataRowProperties()
125 int rows = rowamount.intValue(); in _getDataPointProperties() local
129 log.println("There are " + rows + " rows and " + cols + " cols."); in _getDataPointProperties()
132 for (int i = 0; i < rows; i++) in _getDataPointProperties()
/trunk/main/dbaccess/source/core/api/
H A DStaticSet.cxx89 sal_Bool SAL_CALL OStaticSet::moveRelativeToBookmark( const Any& bookmark, sal_Int32 rows ) throw(S… in moveRelativeToBookmark() argument
93 return absolute(::comphelper::getINT32(bookmark)+rows); in moveRelativeToBookmark()
284 sal_Bool SAL_CALL OStaticSet::relative( sal_Int32 rows ) throw(SQLException, RuntimeException) in relative() argument
287 if(!rows) in relative()
291 return absolute(nCurPos+rows); in relative()
328 Sequence< sal_Int32 > SAL_CALL OStaticSet::deleteRows( const Sequence< Any >& rows,const connectivi… in deleteRows() argument
331 Sequence< sal_Int32 > aRet(rows.getLength()); in deleteRows()
332 const Any* pBegin = rows.getConstArray(); in deleteRows()
333 const Any* pEnd = pBegin + rows.getLength(); in deleteRows()
H A DRowSetBase.cxx527 DBG_TRACE2("DBACCESS ORowSetBase::moveRelativeToBookmark(Any,%i) Clone = %i\n",rows,m_bClone); in moveRelativeToBookmark()
545 bRet = m_pCache->moveRelativeToBookmark(bookmark,rows); in moveRelativeToBookmark()
564 …DBG_TRACE3("DBACCESS ORowSetBase::moveRelativeToBookmark(Any,%i) = %i Clone = %i\n",rows,bRet,m_bC… in moveRelativeToBookmark()
1001 sal_Bool SAL_CALL ORowSetBase::relative( sal_Int32 rows ) throw(SQLException, RuntimeException) in relative() argument
1004 DBG_TRACE2("DBACCESS ORowSetBase::relative(%i) Clone = %i\n",rows,m_bClone); in relative()
1009 if(!rows) in relative()
1015 ( ( !m_bAfterLast || rows <= 0 ) in relative()
1016 && ( !m_bBeforeFirst || rows >= 0 ) in relative()
1030 positionCache( rows > 0 ? MOVE_FORWARD : MOVE_BACKWARD ); in relative()
1031 bRet = m_pCache->relative(rows); in relative()
[all …]
/trunk/main/offapi/com/sun/star/table/
H A DXTableRows.idl37 /** provides methods to access rows via index and to insert and remove rows.
45 /** inserts new rows.
54 is the number of rows to insert.
60 /** deletes rows.
69 is the number of rows to delete.
/trunk/main/solenv/bin/modules/installer/patch/
H A DMsiTable.pm178 my $rows = [];
185 push @$rows, new installer::patch::MsiRow($self, @items);
187 $self->{'rows'} = $rows;
315 my $rows = $self->{'rows'};
316 for (my ($row_index,$row_count)=(0,scalar @$rows); $row_index<$row_count; ++$row_index)
318 my $row = $rows->[$row_index];
/trunk/main/offapi/com/sun/star/chart/
H A DXComplexDescriptionAccess.idl47 /** retrieves the description texts for all rows.
51 of all rows. The outer index represents different rows.
58 /** sets the description texts for all rows.
62 rows. The outer index represents different rows.
H A DXChartDataArray.idl36 /** gives access to data represented as an array of rows.
51 represents rows.
61 represents rows.
67 /** retrieves the description texts for all rows.
77 /** sets the description texts for all rows.
/trunk/main/qadevOOo/java/OOoRunner/src/main/java/util/
H A DTableDsc.java35 private int rows = 0; field in TableDsc
46 rows = nRows; in TableDsc()
53 rows = nRows; in TableDsc()
85 if ( rows > 0 && columns > 0 ) { in createInstance()
86 TT.initialize( rows, columns ); in createInstance()
/trunk/main/reportbuilder/java/com/sun/star/report/pentaho/parser/table/
H A DTableRowsReadHandler.java48 private final List rows; field in TableRowsReadHandler
53 rows = new ArrayList(); in TableRowsReadHandler()
73 rows.add(readHandler); in getHandlerForChild()
87 for (int i = 0; i < rows.size(); i++) in doneParsing()
89 final TableRowReadHandler handler = (TableRowReadHandler) rows.get(i); in doneParsing()
/trunk/main/offapi/com/sun/star/chart2/
H A DXAnyDescriptionAccess.idl48 /** retrieves the descriptions for all rows.
52 of all rows. The outer index represents different rows.
60 /** sets the descriptions for all rows.
64 rows. The outer index represents different rows.
/trunk/main/javainstaller2/src/JavaSetup/org/openoffice/setup/PanelHelper/
H A DPanelTitle.java43 public PanelTitle(String title, String subtitle, int rows, int columns) { in PanelTitle() argument
45 init(title, subtitle, rows, columns); in PanelTitle()
70 private void init(String title, String subtitle, int rows, int columns) { in init() argument
93 if ( rows > 0 ) { in init()
94 SubtitleLabel = new PanelLabel(subtitle, rows, columns ); in init()
/trunk/main/offapi/com/sun/star/sdbcx/
H A DXRowLocate.idl37 /** is used to identify rows within a result set and to find rows by a bookmark.
78 /** moves the cursor a relative number of rows, either positive or negative
91 @param rows
92 count of rows move relative to the bookmark
98 boolean moveRelativeToBookmark([in]any bookmark, [in]long rows)
/trunk/main/offapi/com/sun/star/accessibility/
H A DAccessibleTableModelChangeType.idl42 changes to the table's geometry. One or more rows and/or columns have
51 /** One or more rows and/or columns have been inserted.
54 structure to determine the indices of the rows and/or columns that
59 /** One or more rows and/or columns have been deleted.
68 <p>The number of rows and columns remains unchanged. Only (some of)

Completed in 68 milliseconds

12345678910>>...13