Home
last modified time | relevance | path

Searched refs:nRow (Results 1 – 25 of 523) sorted by path

12345678910>>...21

/trunk/main/accessibility/inc/accessibility/extended/
H A DAccessibleBrowseBoxHeaderBar.hxx98 getAccessibleRowDescription( sal_Int32 nRow )
131 virtual sal_Bool SAL_CALL isAccessibleRowSelected( sal_Int32 nRow )
144 getAccessibleCellAt( sal_Int32 nRow, sal_Int32 nColumn )
149 virtual sal_Bool SAL_CALL isAccessibleSelected( sal_Int32 nRow, sal_Int32 nColumn )
242 implGetChild( sal_Int32 nRow, sal_uInt16 nColumnPos );
H A DAccessibleBrowseBoxTable.hxx84 virtual ::rtl::OUString SAL_CALL getAccessibleRowDescription( sal_Int32 nRow )
116 virtual sal_Bool SAL_CALL isAccessibleRowSelected( sal_Int32 nRow )
129 getAccessibleCellAt( sal_Int32 nRow, sal_Int32 nColumn )
134 virtual sal_Bool SAL_CALL isAccessibleSelected( sal_Int32 nRow, sal_Int32 nColumn )
H A DAccessibleBrowseBoxTableBase.hxx101 getAccessibleRowExtentAt( sal_Int32 nRow, sal_Int32 nColumn )
107 getAccessibleColumnExtentAt( sal_Int32 nRow, sal_Int32 nColumn )
124 virtual sal_Int32 SAL_CALL getAccessibleIndex( sal_Int32 nRow, sal_Int32 nColumn )
213 sal_Int32 implGetChildIndex( sal_Int32 nRow, sal_Int32 nColumn ) const;
217 sal_Bool implIsRowSelected( sal_Int32 nRow ) const;
225 void implSelectRow( sal_Int32 nRow, sal_Bool bSelect );
250 void ensureIsValidRow( sal_Int32 nRow )
260 void ensureIsValidAddress( sal_Int32 nRow, sal_Int32 nColumn )
H A DAccessibleGridControlHeader.hxx92 getAccessibleRowDescription( sal_Int32 nRow )
125 virtual sal_Bool SAL_CALL isAccessibleRowSelected( sal_Int32 nRow )
138 getAccessibleCellAt( sal_Int32 nRow, sal_Int32 nColumn )
143 virtual sal_Bool SAL_CALL isAccessibleSelected( sal_Int32 nRow, sal_Int32 nColumn )
172 implGetChild( sal_Int32 nRow, sal_uInt32 nColumnPos );
H A DAccessibleGridControlTable.hxx91 virtual ::rtl::OUString SAL_CALL getAccessibleRowDescription( sal_Int32 nRow )
123 virtual sal_Bool SAL_CALL isAccessibleRowSelected( sal_Int32 nRow )
136 getAccessibleCellAt( sal_Int32 nRow, sal_Int32 nColumn )
141 virtual sal_Bool SAL_CALL isAccessibleSelected( sal_Int32 nRow, sal_Int32 nColumn )
H A DAccessibleGridControlTableBase.hxx97 getAccessibleRowExtentAt( sal_Int32 nRow, sal_Int32 nColumn )
103 getAccessibleColumnExtentAt( sal_Int32 nRow, sal_Int32 nColumn )
120 virtual sal_Int32 SAL_CALL getAccessibleIndex( sal_Int32 nRow, sal_Int32 nColumn )
192 sal_Int32 implGetChildIndex( sal_Int32 nRow, sal_Int32 nColumn ) const;
206 void ensureIsValidRow( sal_Int32 nRow )
216 void ensureIsValidAddress( sal_Int32 nRow, sal_Int32 nColumn )
/trunk/main/accessibility/source/extended/
H A DAccessibleBrowseBoxHeaderBar.cxx99 sal_Int32 nRow = 0; in getAccessibleAtPoint() local
130 ensureIsValidRow( nRow ); in getAccessibleRowDescription()
192 ensureIsValidRow( nRow ); in isAccessibleRowSelected()
193 return isRowBar() ? implIsRowSelected( nRow ) : sal_False; in isAccessibleRowSelected()
207 sal_Int32 nRow, sal_Int32 nColumn ) in getAccessibleCellAt() argument
213 ensureIsValidAddress( nRow, nColumn ); in getAccessibleCellAt()
214 return implGetChild( nRow, implToVCLColumnPos( nColumn ) ); in getAccessibleCellAt()
218 sal_Int32 nRow, sal_Int32 nColumn ) in isAccessibleSelected() argument
224 ensureIsValidAddress( nRow, nColumn ); in isAccessibleSelected()
378 sal_Int32 nRow, sal_uInt16 nColumnPos ) in implGetChild() argument
[all …]
H A DAccessibleBrowseBoxHeaderCell.cxx131 sal_Int32 nRow = 0; in getRectangle() local
135 nRow = _nRowColIndex + 1; in getRectangle()
139 Rectangle aRet(_pBrowseBox->GetFieldRectPixelAbs( nRow , nCol, sal_True, _bOnScreen)); in getRectangle()
H A DAccessibleBrowseBoxTable.cxx98 sal_Int32 nRow = 0; in getAccessibleAtPoint() local
101 xChild = mpBrowseBox->CreateAccessibleCell( nRow, nColumnPos ); in getAccessibleAtPoint()
130 ensureIsValidRow( nRow ); in getAccessibleRowDescription()
131 return mpBrowseBox->GetRowDescription( nRow ); in getAccessibleRowDescription()
190 ensureIsValidRow( nRow ); in isAccessibleRowSelected()
191 return implIsRowSelected( nRow ); in isAccessibleRowSelected()
205 sal_Int32 nRow, sal_Int32 nColumn ) in getAccessibleCellAt() argument
211 ensureIsValidAddress( nRow, nColumn ); in getAccessibleCellAt()
216 sal_Int32 nRow, sal_Int32 nColumn ) in isAccessibleSelected() argument
222 ensureIsValidAddress( nRow, nColumn ); in isAccessibleSelected()
[all …]
H A DAccessibleBrowseBoxTableBase.cxx108 sal_Int32 nRow, sal_Int32 nColumn ) in getAccessibleRowExtentAt() argument
114 ensureIsValidAddress( nRow, nColumn ); in getAccessibleRowExtentAt()
119 sal_Int32 nRow, sal_Int32 nColumn ) in getAccessibleColumnExtentAt() argument
125 ensureIsValidAddress( nRow, nColumn ); in getAccessibleColumnExtentAt()
144 sal_Int32 nRow, sal_Int32 nColumn ) in getAccessibleIndex() argument
150 ensureIsValidAddress( nRow, nColumn ); in getAccessibleIndex()
151 return implGetChildIndex( nRow, nColumn ); in getAccessibleIndex()
267 sal_Int32 nRow, sal_Int32 nColumn ) const in implGetChildIndex() argument
317 if( nRow >= implGetRowCount() ) in ensureIsValidRow()
331 sal_Int32 nRow, sal_Int32 nColumn ) in ensureIsValidAddress() argument
[all …]
H A DAccessibleGridControlHeader.cxx117 sal_Int32 nRow = 0; in getAccessibleAtPoint() local
120 m_aTable.ConvertPointToCellAddress( nRow, nColumnPos, VCLPoint( rPoint ) ) : in getAccessibleAtPoint()
121 m_aTable.ConvertPointToCellAddress( nRow, nColumnPos, VCLPoint( rPoint ) ); in getAccessibleAtPoint()
123 return bConverted ? implGetChild( nRow, nColumnPos ) : Reference< XAccessible >(); in getAccessibleAtPoint()
142 OUString SAL_CALL AccessibleGridControlHeader::getAccessibleRowDescription( sal_Int32 nRow ) in getAccessibleRowDescription() argument
148 ensureIsValidRow( nRow ); in getAccessibleRowDescription()
271 sal_Int32 nRow, sal_uInt32 nColumnPos ) in implGetChild() argument
281 …AccessibleGridControlHeaderCell* pRowHeaderCell = new AccessibleGridControlHeaderCell(nRow, this, … in implGetChild()
H A DAccessibleGridControlTable.cxx114 sal_Int32 nRow = 0; in getAccessibleAtPoint() local
145 ensureIsValidRow( nRow ); in getAccessibleRowDescription()
203 ensureIsValidRow( nRow ); in isAccessibleRowSelected()
208 if(nRow == selectedRows[i]) in isAccessibleRowSelected()
226 sal_Int32 nRow, sal_Int32 nColumn ) in getAccessibleCellAt() argument
232 ensureIsValidAddress( nRow, nColumn ); in getAccessibleCellAt()
250 sal_Int32 nRow, sal_Int32 nColumn ) in isAccessibleSelected() argument
256 ensureIsValidAddress( nRow, nColumn ); in isAccessibleSelected()
259 return isAccessibleRowSelected(nRow); in isAccessibleSelected()
270 m_aTable.SelectRow( nRow, sal_True ); in selectAccessibleChild()
[all …]
H A DAccessibleGridControlTableBase.cxx112 sal_Int32 nRow, sal_Int32 nColumn ) in getAccessibleRowExtentAt() argument
118 ensureIsValidAddress( nRow, nColumn ); in getAccessibleRowExtentAt()
123 sal_Int32 nRow, sal_Int32 nColumn ) in getAccessibleColumnExtentAt() argument
129 ensureIsValidAddress( nRow, nColumn ); in getAccessibleColumnExtentAt()
148 sal_Int32 nRow, sal_Int32 nColumn ) in getAccessibleIndex() argument
154 ensureIsValidAddress( nRow, nColumn ); in getAccessibleIndex()
155 return implGetChildIndex( nRow, nColumn ); in getAccessibleIndex()
237 sal_Int32 nRow, sal_Int32 nColumn ) const in implGetChildIndex() argument
253 if( nRow >= m_aTable.GetRowCount() ) in ensureIsValidRow()
267 sal_Int32 nRow, sal_Int32 nColumn ) in ensureIsValidAddress() argument
[all …]
H A Daccessibletablistboxtable.cxx128 sal_Int32 nRow = m_pTabListBox->GetEntryPos( pEntry ); in ProcessWindowEvent() local
131 m_pTabListBox->CreateAccessibleCell( nRow, nCol ); in ProcessWindowEvent()
180 sal_Int32 nRow = m_pTabListBox->GetEntryPos( pEntry ); in ProcessWindowEvent() local
204 sal_Int32 nRow = m_pTabListBox->GetEntryPos( pEntry ); in ProcessWindowEvent() local
225 sal_Int32 nRow = m_pTabListBox->GetEntryPos( pEntry ); in ProcessWindowEvent() local
250 sal_Int32 nRow = m_pTabListBox->GetEntryPos( pEntry ); in ProcessWindowEvent() local
329 sal_Int32 nRow = 0; in implGetSelRow() local
333 ++nRow; in implGetSelRow()
334 if ( nRow == nSelRow ) in implGetSelRow()
420 sal_Int32 nRow = implGetSelRow( nSelectedChildIndex % nRows ); in getSelectedAccessibleChild() local
[all …]
/trunk/main/automation/source/server/
H A Dstatemnt.cxx6257 …while ( ( nLastPos = pTC->getTableControlInterface().hitTest( aPos ).nRow ) != nNr1-1 && nStep > 0… in Execute()
6265 … if ( pTC->getTableControlInterface().hitTest( aPos ).nRow == nNr1-1 ) in Execute()
/trunk/main/avmedia/source/gstreamer/
H A Dgstframegrabber.cxx235 for( int nRow = 0; nRow < nHeight; ++nRow ) in grabFrame() local
237 guchar* pCur = const_cast< guchar* >( pBuffer + nRow * nRowStride ); in grabFrame()
251 pAcc->SetPixel( nRow, nCol, aPixel ); in grabFrame()
/trunk/main/basegfx/inc/basegfx/matrix/
H A Db2dhommatrix.hxx57 double get(sal_uInt16 nRow, sal_uInt16 nColumn) const;
58 void set(sal_uInt16 nRow, sal_uInt16 nColumn, double fValue);
H A Db3dhommatrix.hxx54 double get(sal_uInt16 nRow, sal_uInt16 nColumn) const;
55 void set(sal_uInt16 nRow, sal_uInt16 nColumn, double fValue);
/trunk/main/basegfx/source/inc/
H A Dhommatrixtemplate.hxx37 inline double implGetDefaultValue(sal_uInt16 nRow, sal_uInt16 nColumn) in implGetDefaultValue() argument
39 if(nRow == nColumn) in implGetDefaultValue()
55 ImplMatLine(sal_uInt16 nRow, ImplMatLine< RowSize >* pToBeCopied = 0L) in ImplMatLine() argument
65 mfValue[a] = implGetDefaultValue(nRow, a); in ImplMatLine()
150 double get(sal_uInt16 nRow, sal_uInt16 nColumn) const in get() argument
152 if(nRow < (RowSize - 1)) in get()
154 return maLine[nRow].get(nColumn); in get()
165 void set(sal_uInt16 nRow, sal_uInt16 nColumn, const double& rValue) in set() argument
167 if(nRow < (RowSize - 1)) in set()
169 maLine[nRow].set(nColumn, rValue); in set()
/trunk/main/basegfx/source/matrix/
H A Db2dhommatrix.cxx81 double B2DHomMatrix::get(sal_uInt16 nRow, sal_uInt16 nColumn) const in get() argument
83 return mpImpl->get(nRow, nColumn); in get()
86 void B2DHomMatrix::set(sal_uInt16 nRow, sal_uInt16 nColumn, double fValue) in set() argument
88 mpImpl->set(nRow, nColumn, fValue); in set()
H A Db3dhommatrix.cxx66 double B3DHomMatrix::get(sal_uInt16 nRow, sal_uInt16 nColumn) const in get() argument
68 return mpImpl->get(nRow, nColumn); in get()
71 void B3DHomMatrix::set(sal_uInt16 nRow, sal_uInt16 nColumn, double fValue) in set() argument
73 mpImpl->set(nRow, nColumn, fValue); in set()
/trunk/main/chart2/source/controller/chartapiwrapper/
H A DDiagramWrapper.cxx688 beans::XPropertySet > SAL_CALL DiagramWrapper::getDataRowProperties( sal_Int32 nRow ) in getDataRowProperties() argument
692 if( nRow < 0 ) in getDataRowProperties()
698 …sal_Int32 nNewAPIIndex = lcl_getNewAPIIndexForOldAPIIndex( nRow, m_spChart2ModelContact->getChart2… in getDataRowProperties()
709 …s::XPropertySet > SAL_CALL DiagramWrapper::getDataPointProperties( sal_Int32 nCol, sal_Int32 nRow ) in getDataPointProperties() argument
713 if( nCol < 0 || nRow < 0 ) in getDataPointProperties()
719 …sal_Int32 nNewAPIIndex = lcl_getNewAPIIndexForOldAPIIndex( nRow, m_spChart2ModelContact->getChart2… in getDataPointProperties()
H A DDiagramWrapper.hxx106 ::com::sun::star::beans::XPropertySet > SAL_CALL getDataRowProperties( sal_Int32 nRow )
110 …:sun::star::beans::XPropertySet > SAL_CALL getDataPointProperties( sal_Int32 nCol, sal_Int32 nRow )
/trunk/main/chart2/source/controller/dialogs/
H A DDataBrowser.cxx100 sal_Int32 lcl_getRowInData( long nRow ) in lcl_getRowInData() argument
102 return static_cast< sal_Int32 >( nRow ); in lcl_getRowInData()
668 return String::CreateFromInt32( nRow + 1 ); in GetRowString()
679 else if( nRow >= 0 && in GetCellText()
1062 sal_Bool DataBrowser::SeekRow( long nRow ) in SeekRow() argument
1064 if( ! EditBrowseBox::SeekRow( nRow )) in SeekRow()
1067 if( nRow < 0 ) in SeekRow()
1070 m_nSeekRow = nRow; in SeekRow()
1077 long nRow = GetCurRow(); in IsTabAllowed() local
1094 return ( nRow != nBadRow || in IsTabAllowed()
[all …]
H A DDataBrowser.hxx59 virtual sal_Bool SeekRow( long nRow );
61 virtual ::svt::CellController* GetController( long nRow, sal_uInt16 nCol );
62 … virtual void InitController( ::svt::CellControllerRef& rController, long nRow, sal_uInt16 nCol );
85 virtual String GetCellText(long nRow, sal_uInt16 nColId) const;
90 double GetCellNumber( long nRow, sal_uInt16 nColumnId ) const;
147 bool CellContainsNumbers( sal_Int32 nRow, sal_uInt16 nCol ) const;
149 sal_uInt32 GetNumberFormatKey( sal_Int32 nRow, sal_uInt16 nCol ) const;
191 String GetRowString( sal_Int32 nRow ) const;

Completed in 129 milliseconds

12345678910>>...21