Home
last modified time | relevance | path

Searched refs:nIndex (Results 151 – 175 of 1876) sorted by relevance

12345678910>>...76

/trunk/main/sd/source/ui/sidebar/
H A DCurrentMasterPagesSelector.cxx147 for (sal_uInt16 nIndex=0; nIndex<nPageCount; nIndex++) in Fill() local
149 pMasterPage = mrDocument.GetMasterSdPage (nIndex, PK_STANDARD); in Fill()
166 nIndex, in Fill()
198 sal_uInt16 nIndex; in UpdateSelection() local
200 for (nIndex=0; nIndex<nPageCount && bLoop; nIndex++) in UpdateSelection()
202 pPage = mrDocument.GetSdPage (nIndex, PK_STANDARD); in UpdateSelection()
227 for (nIndex=1; nIndex<=nItemCount && bLoop; nIndex++) in UpdateSelection()
229 String sName (PreviewValueSet::GetItemText (nIndex)); in UpdateSelection()
232 PreviewValueSet::SelectItem (nIndex); in UpdateSelection()
/trunk/main/sc/source/filter/xml/
H A DXMLDetectiveContext.cxx59 return (nIndex < rDetOp.nIndex); in operator <()
140 for( sal_Int16 nIndex = 0; nIndex < nAttrCount; ++nIndex ) in ScXMLDetectiveHighlightedContext() local
142 const rtl::OUString& sAttrName (xAttrList->getNameByIndex( nIndex )); in ScXMLDetectiveHighlightedContext()
143 const rtl::OUString& sValue (xAttrList->getValueByIndex( nIndex )); in ScXMLDetectiveHighlightedContext()
220 for( sal_Int16 nIndex = 0; nIndex < nAttrCount; ++nIndex ) in ScXMLDetectiveOperationContext() local
222 const rtl::OUString& sAttrName (xAttrList->getNameByIndex( nIndex )); in ScXMLDetectiveOperationContext()
223 const rtl::OUString& sValue (xAttrList->getValueByIndex( nIndex )); in ScXMLDetectiveOperationContext()
236 aDetectiveOp.nIndex = nValue; in ScXMLDetectiveOperationContext()
258 if( bHasType && (aDetectiveOp.nIndex >= 0) ) in EndElement()
H A Dxmlexprt.cxx879 for( sal_Int32 nIndex = 0; nIndex < nCount; ++nIndex ) in GetAreaLinks() local
911 for( sal_uInt32 nIndex = 0; nIndex < nCount; ++nIndex ) in GetDetectiveOpList() local
945 if (nIndex != -1) in WriteSingleColumn()
986 sal_Int32 nIndex; in ExportColumns() local
1155 nIndex = aRange.nIndex; in WriteRowContent()
1167 (aRange.nIndex == nIndex && nIndex == -1)) && in WriteRowContent()
1172 if (nIndex != -1) in WriteRowContent()
1183 nIndex = aRange.nIndex; in WriteRowContent()
1196 if (nIndex != -1) in WriteRowContent()
3874 for( sal_Int32 nIndex = 0; nIndex < nCount; ++nIndex ) in WriteLabelRanges() local
[all …]
/trunk/main/sc/source/ui/vba/
H A Dvbaeventshelper.cxx64 VbaEventsHelperBase::checkArgument( rArgs, nIndex ); in lclGetTabFromArgs()
68 if( rArgs[ nIndex ] >>= nTab ) in lclGetTabFromArgs()
76 …no::Reference< excel::XRange > xVbaRange = getXSomethingFromArgs< excel::XRange >( rArgs, nIndex ); in lclGetTabFromArgs()
386 for( sal_Int32 nIndex = 0; nIndex < nCount; ++nIndex ) in changesOccurred() local
388 aChange = rEvent.Changes[ nIndex ]; in changesOccurred()
768 for( sal_Int32 nIndex = 0; nIndex < nLength; ++nIndex ) in implBuildArgumentList() local
769 aVbaArgs2[ nIndex + 1 ] = aVbaArgs[ nIndex ]; in implBuildArgumentList()
852 SCTAB nTab = lclGetTabFromArgs( rArgs, nIndex ); in createWorksheet()
856 uno::Any ScVbaEventsHelper::createRange( const uno::Sequence< uno::Any >& rArgs, sal_Int32 nIndex )… in createRange()
860 …no::Reference< excel::XRange > xVbaRange = getXSomethingFromArgs< excel::XRange >( rArgs, nIndex ); in createRange()
[all …]
/trunk/main/sc/source/ui/Accessibility/
H A DAccessiblePageHeader.cxx99 mnIndex( nIndex ), in ScAccessiblePageHeader()
276 while (!xRet.is() && (nIndex >= 0) && (aItr != aEndItr)) in getAccessibleChild()
280 if (nIndex == 0) in getAccessibleChild()
283 --nIndex; in getAccessibleChild()
413 if (maAreas[nIndex]) in AddChild()
417 maAreas[nIndex]->release(); in AddChild()
419 maAreas[nIndex]->acquire(); in AddChild()
425 maAreas[nIndex]->acquire(); in AddChild()
431 if (maAreas[nIndex]) in AddChild()
433 maAreas[nIndex]->release(); in AddChild()
[all …]
/trunk/main/drawinglayer/source/geometry/
H A Dviewinformation2d.cxx200 sal_uInt32 nIndex(0); in impFillViewInformationFromContent() local
217 mxViewInformation[nIndex].Value <<= aAffineMatrix2D; in impFillViewInformationFromContent()
218 nIndex++; in impFillViewInformationFromContent()
226 mxViewInformation[nIndex].Value <<= aAffineMatrix2D; in impFillViewInformationFromContent()
227 nIndex++; in impFillViewInformationFromContent()
234 mxViewInformation[nIndex].Value <<= aViewport; in impFillViewInformationFromContent()
235 nIndex++; in impFillViewInformationFromContent()
241 mxViewInformation[nIndex].Value <<= mfViewTime; in impFillViewInformationFromContent()
242 nIndex++; in impFillViewInformationFromContent()
248 mxViewInformation[nIndex].Value <<= mxVisualizedPage; in impFillViewInformationFromContent()
[all …]
/trunk/main/sc/source/ui/dbgui/
H A Dcsvsplits.cxx52 sal_uInt32 nIndex = GetIndex( nPos ); in Remove() local
53 bool bValid = (nIndex != CSV_VEC_NOTFOUND); in Remove()
55 maVec.erase( maVec.begin() + nIndex ); in Remove()
93 sal_uInt32 nIndex = LowerBound( nPos ); in UpperBound() local
94 if( nIndex == CSV_VEC_NOTFOUND ) in UpperBound()
96 if( GetPos( nIndex ) == nPos ) in UpperBound()
97 return nIndex; in UpperBound()
98 return nIndex ? (nIndex - 1) : CSV_VEC_NOTFOUND; in UpperBound()
101 sal_Int32 ScCsvSplits::GetPos( sal_uInt32 nIndex ) const in GetPos()
103 return (nIndex < Count()) ? maVec[ nIndex ] : CSV_POS_INVALID; in GetPos()
/trunk/main/sc/source/core/tool/
H A Drangeutl.cxx378 sal_Int32 nIndex = nOffset; in IndexOf() local
384 sal_Unicode cCode = rString[ nIndex ]; in IndexOf()
388 nIndex++; in IndexOf()
390 return (nIndex < nLength) ? nIndex : -1; in IndexOf()
399 sal_Int32 nIndex = nOffset; in IndexOfDifferent() local
406 nIndex++; in IndexOfDifferent()
408 return (nIndex < nLength) ? nIndex : -1; in IndexOfDifferent()
496 if( nIndex < 0 ) in GetRangeFromString()
508 --nIndex; in GetRangeFromString()
701 for( sal_Int32 nIndex = 0; nIndex < nCount; nIndex++ ) in GetStringFromRangeList() local
[all …]
/trunk/main/xmloff/source/style/
H A DXMLFootnoteSeparatorImport.cxx70 sal_Int32 nIndex) : in XMLFootnoteSeparatorImport() argument
74 nPropIndex(nIndex) in XMLFootnoteSeparatorImport()
157 sal_Int32 nIndex; in StartElement() local
161 XMLPropertyState aLineAdjust( nIndex, aAny); in StartElement()
165 nIndex = rMapper->FindEntryIndex(CTF_PM_FTN_LINE_COLOR); in StartElement()
166 XMLPropertyState aLineColor( nIndex, aAny ); in StartElement()
170 nIndex = rMapper->FindEntryIndex(CTF_PM_FTN_DISTANCE); in StartElement()
171 XMLPropertyState aLineDistance( nIndex, aAny ); in StartElement()
175 nIndex = rMapper->FindEntryIndex(CTF_PM_FTN_LINE_WIDTH); in StartElement()
176 XMLPropertyState aLineRelWidth( nIndex, aAny); in StartElement()
[all …]
H A Dxmlexppr.cxx176 const sal_uInt32 nIndex);
181 void AddIndex( sal_uInt32 nIndex ) in AddIndex() argument
183 aIndexes.push_back(nIndex); in AddIndex()
196 const sal_uInt32 nIndex ) : in FilterPropertyInfo_Impl() argument
201 aIndexes.push_back(nIndex); in FilterPropertyInfo_Impl()
765 sal_uInt32 nIndex = 0; in Equals() local
791 nIndex++; in Equals()
930 sal_uInt32 nIndex = 0; in _exportXML() local
937 while( nIndex < nCount ) in _exportXML()
966 nIndex++; in _exportXML()
[all …]
/trunk/main/accessibility/source/standard/
H A Dvclxaccessibletoolboxitem.cxx466 if ( !implIsValidRange( nIndex, nIndex, implGetText().getLength() ) ) in setCaretPosition()
478 if ( !implIsValidIndex( nIndex, sText.getLength() ) ) in getCharacterAttributes()
490 if ( !implIsValidIndex( nIndex, sText.getLength() ) ) in getCharacterBounds()
496 Rectangle aCharRect = m_pToolBox->GetCharacterBounds( m_nItemId, nIndex ); in getCharacterBounds()
509 sal_Int32 nIndex = -1; in getIndexAtPoint() local
518 nIndex = nIdx; in getIndexAtPoint()
521 return nIndex; in getIndexAtPoint()
660 sal_Bool VCLXAccessibleToolBoxItem::doAccessibleAction ( sal_Int32 nIndex ) throw (IndexOutOfBounds… in doAccessibleAction() argument
664 if ( nIndex < 0 || nIndex >= getAccessibleActionCount() ) in doAccessibleAction()
677 if ( nIndex < 0 || nIndex >= getAccessibleActionCount() ) in getAccessibleActionDescription()
[all …]
/trunk/main/svtools/source/uno/
H A Dunoevent.cxx490 sal_Int16 nIndex = 0; in getIndex() local
494 nIndex++; in getIndex()
496 return (mpSupportedMacroItems[nIndex].mnEvent == nID) ? nIndex : -1; in getIndex()
515 sal_Int16 nIndex = getIndex(nEvent); in replaceByName() local
516 if (-1 == nIndex) in replaceByName()
532 sal_Int16 nIndex = getIndex(nEvent); in getByName() local
533 if (-1 == nIndex ) in getByName()
536 if( aMacros[nIndex] ) in getByName()
537 rMacro = (*aMacros[nIndex]); in getByName()
545 if (-1 == nIndex) in hasByName()
[all …]
/trunk/main/sd/source/ui/slidesorter/view/
H A DSlideSorterView.cxx244 sal_Int32 nIndex (-1); in GetPageIndexAtPoint() local
252 if (nIndex >= mrModel.GetPageCount()) in GetPageIndexAtPoint()
253 nIndex = -1; in GetPageIndexAtPoint()
256 return nIndex; in GetPageIndexAtPoint()
559 for (int nIndex=aUnion.Min(); nIndex<=aUnion.Max(); nIndex++) in DeterminePageObjectVisibilities() local
561 pDescriptor = mrModel.GetPageDescriptor(nIndex); in DeterminePageObjectVisibilities()
566 aRange.IsInside(nIndex)); in DeterminePageObjectVisibilities()
606 for (int nIndex=0; nIndex<=nPageCount; ++nIndex) in UpdatePreciousFlags() local
613 maVisiblePageRange.IsInside(nIndex)); in UpdatePreciousFlags()
615 maVisiblePageRange.IsInside(nIndex)); in UpdatePreciousFlags()
[all …]
/trunk/main/svl/source/misc/
H A Downlist.cxx298 for( sal_Int32 nIndex=0; nIndex<nCount; nIndex++ ) in FillFromSequence() local
300 aCommand = aCommandSequence[nIndex].Name; in FillFromSequence()
301 if( !( aCommandSequence[nIndex].Value >>= aApiArg ) ) in FillFromSequence()
314 for( sal_Int32 nIndex = 0; nIndex < nCount; nIndex++ ) in FillSequence() local
316 const SvCommand& rCommand = (*this)[ nIndex ]; in FillSequence()
317 aCommandSequence[nIndex].Name = rCommand.GetCommand(); in FillSequence()
318 aCommandSequence[nIndex].Handle = -1; in FillSequence()
319 aCommandSequence[nIndex].Value = uno::makeAny( ::rtl::OUString( rCommand.GetArgument() ) ); in FillSequence()
320 aCommandSequence[nIndex].State = beans::PropertyState_DIRECT_VALUE; in FillSequence()
/trunk/main/ooxml/source/framework/JavaOOXMLParser/src/org/apache/openoffice/ooxml/parser/type/
H A DNumberParser.java92 for (int nIndex=7; nIndex<aLine.length; ++nIndex) in NumberParser()
93 maEnumeration.add(ParseNumber(aLine[nIndex])); in NumberParser()
98 for (int nIndex=7; nIndex<=9; nIndex+=2) in NumberParser()
99 if (nIndex<aLine.length) in NumberParser()
100 switch (aLine[nIndex]) in NumberParser()
103 maMaximumValue = ParseNumber(aLine[nIndex+1]); in NumberParser()
107 maMaximumValue = ParseNumber(aLine[nIndex+1]); in NumberParser()
111 maMinimumValue = ParseNumber(aLine[nIndex+1]); in NumberParser()
115 maMinimumValue = ParseNumber(aLine[nIndex+1]); in NumberParser()
/trunk/main/oox/source/drawingml/
H A Dtheme.cxx44 const Type* lclGetStyleElement( const RefVector< Type >& rVector, sal_Int32 nIndex ) in lclGetStyleElement() argument
46 return (rVector.empty() || (nIndex < 1)) ? 0 : in lclGetStyleElement()
47 …rVector.get( ::std::min( static_cast< sal_Int32 >( nIndex - 1 ), static_cast< sal_Int32 >( rVector… in lclGetStyleElement()
52 const FillProperties* Theme::getFillStyle( sal_Int32 nIndex ) const in getFillStyle()
54 return (nIndex >= 1000) ? in getFillStyle()
55 lclGetStyleElement( maBgFillStyleList, nIndex - 1000 ) : in getFillStyle()
56 lclGetStyleElement( maFillStyleList, nIndex ); in getFillStyle()
59 const LineProperties* Theme::getLineStyle( sal_Int32 nIndex ) const in getLineStyle()
61 return lclGetStyleElement( maLineStyleList, nIndex ); in getLineStyle()
64 const PropertyMap* Theme::getEffectStyle( sal_Int32 nIndex ) const in getEffectStyle()
[all …]
/trunk/main/svx/source/accessibility/
H A DGraphCtlAccessibleContext.cxx307 if( (nIndex < 0) || ( static_cast<sal_uInt32>(nIndex) >= mpPage->GetObjCount() ) ) in getSdrObject()
310 return mpPage->GetObj( nIndex ); in getSdrObject()
344 return getAccessible( getSdrObject( nIndex ) ); in getAccessibleChild()
635 SdrObject* pObj = getSdrObject( nIndex ); in selectAccessibleChild()
650 return mpView->IsObjMarked( getSdrObject( nIndex ) ); in isAccessibleChildSelected()
697 checkChildIndexOnSelection( nIndex ); in getSelectedAccessibleChild()
702 SdrObject* pObj = rList.GetMark(nIndex)->GetMarkedSdrObj(); in getSelectedAccessibleChild()
715 checkChildIndexOnSelection( nIndex ); in deselectAccessibleChild()
721 SdrObject* pObj = getSdrObject( nIndex ); in deselectAccessibleChild()
744 if( nIndex < 0 || nIndex >= getAccessibleChildCount() ) in checkChildIndex()
[all …]
/trunk/main/accessibility/source/extended/
H A Daccessibleiconchoicectrlentry.cxx513 sal_Int32 nIndex = -1; in getIndexAtPoint() local
521 nIndex = aLayoutData.GetIndexForPoint( aPnt ); in getIndexAtPoint()
534 return nIndex; in getIndexAtPoint()
596 if ( !implIsValidRange( nIndex, nIndex, implGetText().getLength() ) ) in setCaretPosition()
606 return OCommonAccessibleText::getCharacter( nIndex ); in getCharacter()
616 if ( !implIsValidIndex( nIndex, sText.getLength() ) ) in getCharacterAttributes()
680 return OCommonAccessibleText::getTextAtIndex( nIndex ,aTextType); in getTextAtIndex()
687 return OCommonAccessibleText::getTextBeforeIndex( nIndex ,aTextType); in getTextBeforeIndex()
715 checkActionIndex_Impl( nIndex ); in doAccessibleAction()
734 checkActionIndex_Impl( nIndex ); in getAccessibleActionDescription()
[all …]
H A Dtextwindowaccessibility.cxx353 m_xDocument->changeParagraphSelection(this, nIndex, nIndex); in setCaretPosition()
515 m_xDocument->changeParagraphText(this, nIndex, nIndex, false, true, in pasteText()
539 m_xDocument->changeParagraphText(this, nIndex, nIndex, false, false, rText); in insertText()
764 if ( implIsValidIndex( nIndex, nLength ) || nIndex == nLength ) in implGetLineBoundary()
958 if (nIndex < 0 || nIndex > nLength) in retrieveCharacterBounds()
966 if ( nIndex == nLength ) in retrieveCharacterBounds()
1124 if (nIndex < 0 || nIndex > m_rEngine.GetText(nNumber).Len()) in retrieveCharacterAttributes()
1419 aBoundary.startPos = nIndex; in retrieveParagraphLineBoundary()
1420 aBoundary.endPos = nIndex; in retrieveParagraphLineBoundary()
1426 if ( nIndex < 0 || nIndex > m_rEngine.GetText( nNumber ).Len() ) in retrieveParagraphLineBoundary()
[all …]
/trunk/main/editeng/inc/editeng/
H A DAccessibleEditableTextPara.hxx73 …id implGetParagraphBoundary( ::com::sun::star::i18n::Boundary& rBoundary, sal_Int32 nIndex );
74 …al void implGetLineBoundary( ::com::sun::star::i18n::Boundary& rBoundary, sal_Int32 nIndex );
189 void SetIndexInParent( sal_Int32 nIndex );
207 void SetParagraphIndex( sal_Int32 nIndex );
319 … sal_Bool GetAttributeRun( sal_uInt16& nStartIndex, sal_uInt16& nEndIndex, sal_Int32 nIndex );
339 …Reference< ::com::sun::star::accessibility::XAccessibleText > GetParaInterface( sal_Int32 nIndex );
350 String GetText( sal_Int32 nIndex ) SAL_THROW((::com::sun::star::uno::RuntimeException));
370 …void CheckIndex( sal_Int32 nIndex ) SAL_THROW((::com::sun::star::lang::IndexOutOfBoundsException, …
376 …void _correctValues( const sal_Int32 nIndex, ::com::sun::star::uno::Sequence< ::com::sun::star::be…
377 sal_Int32 SkipField(sal_Int32 nIndex, sal_Bool bForward);
[all …]
/trunk/main/l10ntools/source/
H A Dlocalize.cxx360 sal_uLong nIndex = 0; in CheckNegativeList() local
378 nIndex++; in CheckNegativeList()
379 sNegative = NegativeList[ nIndex ]; in CheckNegativeList()
389 sal_uLong nIndex = 0; in CheckPositiveList() local
407 nIndex++; in CheckPositiveList()
408 sNegative = PositiveList[ nIndex ]; in CheckPositiveList()
451 sal_uLong nIndex = 0; in WorkOnDirectory() local
466 nIndex++; in WorkOnDirectory()
468 sExtension = ExeTable[ nIndex ][ 0 ]; in WorkOnDirectory()
470 sParameter = ExeTable[ nIndex ][ 2 ]; in WorkOnDirectory()
[all …]
/trunk/main/svx/source/unodraw/
H A Dunoctabl.cxx141 long nIndex = maTable->GetIndex(Name); in removeByName() local
142 if( nIndex == -1 ) in removeByName()
145 maTable->Remove( nIndex ); in removeByName()
156 long nIndex = maTable->GetIndex(aName); in replaceByName() local
157 if( nIndex == -1 ) in replaceByName()
168 long nIndex = maTable->GetIndex(aName); in getByName() local
169 if( nIndex == -1 ) in getByName()
184 for( long nIndex = 0; nIndex < nCount; nIndex++ ) in getElementNames() local
187 pStrings[nIndex] = pEntry->GetName(); in getElementNames()
196 long nIndex = maTable->GetIndex( aName ); in hasByName() local
[all …]
/trunk/main/oox/source/core/
H A Dbinarycodec.cxx76 for( sal_Int32 nIndex = 0; nIndex < nLen; ++nIndex, --pnChar ) in lclGetKey() local
101 for( sal_Int32 nIndex = 0; nIndex < nLen; ++nIndex, ++pnChar ) in lclGetHash() local
104 size_t nRot = static_cast< size_t >( (nIndex + 1) % 15 ); in lclGetHash()
154 sal_Int32 nIndex; in initKey() local
157 …for( nIndex = nLen; nIndex < static_cast< sal_Int32 >( sizeof( mpnKey ) ); ++nIndex, ++pnFillChar ) in initKey()
158 mpnKey[ nIndex ] = *pnFillChar; in initKey()
174 for( nIndex = 0; nIndex < static_cast< sal_Int32 >( sizeof( mpnKey ) ); ++nIndex, ++pnKeyChar ) in initKey()
176 *pnKeyChar ^= pnBaseKeyLE[ nIndex & 1 ]; in initKey()
/trunk/main/canvas/source/vcl/
H A Dcanvashelper_texturefill.cxx218 std::ptrdiff_t nIndex; in fillLinearGradient() local
223 …Color( (sal_uInt8)(basegfx::tools::lerp(rColors[nIndex].GetRed(),rColors[nIndex+1].GetRed(),fAlpha… in fillLinearGradient()
224 … (sal_uInt8)(basegfx::tools::lerp(rColors[nIndex].GetGreen(),rColors[nIndex+1].GetGreen(),fAlpha)), in fillLinearGradient()
225 …(sal_uInt8)(basegfx::tools::lerp(rColors[nIndex].GetBlue(),rColors[nIndex+1].GetBlue(),fAlpha)) )); in fillLinearGradient()
384 std::ptrdiff_t nIndex; in fillPolygonalGradient() local
390 …Color( (sal_uInt8)(basegfx::tools::lerp(rColors[nIndex].GetRed(),rColors[nIndex+1].GetRed(),fAlpha… in fillPolygonalGradient()
391 … (sal_uInt8)(basegfx::tools::lerp(rColors[nIndex].GetGreen(),rColors[nIndex+1].GetGreen(),fAlpha)), in fillPolygonalGradient()
392 …(sal_uInt8)(basegfx::tools::lerp(rColors[nIndex].GetBlue(),rColors[nIndex+1].GetBlue(),fAlpha)) )); in fillPolygonalGradient()
442 std::ptrdiff_t nIndex; in fillPolygonalGradient() local
448 …Color( (sal_uInt8)(basegfx::tools::lerp(rColors[nIndex].GetRed(),rColors[nIndex+1].GetRed(),fAlpha… in fillPolygonalGradient()
[all …]
/trunk/main/editeng/source/uno/
H A Dunofored.cxx318 LanguageType SvxEditEngineForwarder::GetLanguage( sal_uInt32 nPara, sal_uInt16 nIndex ) const in GetLanguage()
320 return rEditEngine.GetLanguage(nPara, nIndex); in GetLanguage()
338 Rectangle SvxEditEngineForwarder::GetCharBounds( sal_uInt32 nPara, sal_uInt16 nIndex ) const in GetCharBounds()
348 if( nIndex >= rEditEngine.GetTextLen(nPara) ) in GetCharBounds()
352 if( nIndex ) in GetCharBounds()
355 aLast = rEditEngine.GetCharacterBounds( EPosition(nPara, nIndex-1) ); in GetCharBounds()
381 …urn SvxEditSourceHelper::EEToUserSpace( rEditEngine.GetCharacterBounds( EPosition(nPara, nIndex) ), in GetCharBounds()
436 nIndex = aDocPos.nIndex; in GetIndexAtPoint()
443 …ESelection aRes = rEditEngine.GetWord( ESelection(nPara, nIndex, nPara, nIndex), com::sun::star::i… in GetWordIndices()
476 sal_uInt16 SvxEditEngineForwarder::GetLineNumberAtIndex( sal_uInt32 nPara, sal_uInt16 nIndex ) const in GetLineNumberAtIndex()
[all …]

Completed in 264 milliseconds

12345678910>>...76