Home
last modified time | relevance | path

Searched refs:nLastIndex (Results 1 – 21 of 21) sorted by relevance

/trunk/main/filter/source/xsltdialog/
H A Dtypedetectionimport.cxx113 sal_Int32 nLastIndex = 0; in getSubdata() local
121 nLastIndex = nNextIndex + 1; in getSubdata()
122 nNextIndex = rData.indexOf( delimeter, nLastIndex ); in getSubdata()
126 if( (index > 0) && (nLastIndex == 0) ) in getSubdata()
132 aSubdata = rData.copy( nLastIndex ); in getSubdata()
136 aSubdata = rData.copy( nLastIndex, nNextIndex - nLastIndex ); in getSubdata()
H A Dxmlfiltersettingsdialog.cxx320 int nLastIndex = 0; in createExtensionsSequence() local
326 nLastIndex = rExtensions.indexOf( sal_Unicode( ';' ), nLastIndex ); in createExtensionsSequence()
328 if( nLastIndex == -1 ) in createExtensionsSequence()
335 aExtensions[i] = rExtensions.copy( nCurrentIndex, nLastIndex - nCurrentIndex ); in createExtensionsSequence()
336 nCurrentIndex = nLastIndex + 1; in createExtensionsSequence()
337 nLastIndex = nCurrentIndex; in createExtensionsSequence()
1775 sal_Int32 nLastIndex = sizeof( "file:///" ) - 2; in createDirectory() local
1776 while( nLastIndex != -1 ) in createDirectory()
1778 nLastIndex = rURL.indexOf( sal_Unicode('/'), nLastIndex + 1); in createDirectory()
1779 if( nLastIndex != -1 ) in createDirectory()
[all …]
H A Dxmlfiltertestdialog.cxx582 int nLastIndex = 0; in onImportBrowse() local
584 for( int i = 0; nLastIndex != -1; i++ ) in onImportBrowse()
586 nLastIndex = mpFilterInfo->maExtension.indexOf( sal_Unicode( ';' ), nLastIndex ); in onImportBrowse()
593 if( nLastIndex == -1 ) in onImportBrowse()
600 …aExtensions += String( mpFilterInfo->maExtension.copy( nCurrentIndex, nLastIndex - nCurrentIndex )… in onImportBrowse()
601 nCurrentIndex = nLastIndex + 1; in onImportBrowse()
602 nLastIndex = nCurrentIndex; in onImportBrowse()
/trunk/main/vcl/source/app/
H A Ddbggui.cxx1379 sal_uInt16 nLastIndex = 0; in SetInfoText() local
1385 if ( !nLastIndex ) in SetInfoText()
1386 nLastIndex = nIndex+1; in SetInfoText()
1388 aTextParagraph.Erase( 0, nLastIndex ); in SetInfoText()
1390 nLastIndex = 0; in SetInfoText()
1393 nLastIndex = nIndex+1; in SetInfoText()
1394 nIndex = aTextParagraph.Search( ' ', nLastIndex ); in SetInfoText()
1399 if ( !nLastIndex ) in SetInfoText()
1400 nLastIndex = nIndex+1; in SetInfoText()
1401 XubString aTempStr = aTextParagraph.Copy( 0, nLastIndex ); in SetInfoText()
[all …]
/trunk/main/sc/source/ui/dbgui/
H A Dfieldwnd.cxx705 size_t nLastIndex = maFields.size() - 1; in MoveSelection() local
713 nNewSelectIndex = (nNewSelectIndex < nLastIndex) ? (nNewSelectIndex + 1) : nLastIndex; in MoveSelection()
719 …ewSelectIndex = (nNewSelectIndex + mnLineSize < nLastIndex) ? (nNewSelectIndex + mnLineSize) : nLa… in MoveSelection()
725 …ewSelectIndex = (nNewSelectIndex + mnPageSize < nLastIndex) ? (nNewSelectIndex + mnPageSize) : nLa… in MoveSelection()
731 nNewSelectIndex = nLastIndex; in MoveSelection()
/trunk/main/sd/source/ui/slidesorter/controller/
H A DSlsFocusManager.cxx102 const sal_Int32 nLastIndex (nPageCount-1); in MoveFocus() local
103 const sal_Int32 nLastColumn (nLastIndex % nColumnCount); in MoveFocus()
108 mnPageIndex = nLastIndex - (nLastColumn-nCurrentColumn); in MoveFocus()
113 mnPageIndex = nLastIndex - nLastColumn in MoveFocus()
H A DSlsInsertionIndicatorHandler.cxx264 sal_Int32 nLastIndex = -1; in IsInsertionTrivial() local
282 nLastIndex = nPageNumber; in IsInsertionTrivial()
289 if (nInsertionIndex<nFirstIndex || nInsertionIndex>(nLastIndex+1)) in IsInsertionTrivial()
/trunk/main/uui/source/
H A Dnewerverwarn.cxx86 sal_uInt32 nLastIndex = sProgramPath.lastIndexOf( '/' ); in IMPL_LINK() local
87 if ( nLastIndex > 0 ) in IMPL_LINK()
88 sProgramPath = sProgramPath.copy( 0, nLastIndex + 1 ); in IMPL_LINK()
/trunk/main/unotools/source/misc/
H A Dfontcvt.cxx1375 sal_uLong nLastIndex = (sal_uLong)nIndex + nLen; in RecodeString() local
1376 if( nLastIndex > rStr.Len() ) in RecodeString()
1377 nLastIndex = rStr.Len(); in RecodeString()
1379 for(; nIndex < nLastIndex; ++nIndex ) in RecodeString()
/trunk/main/writerfilter/source/ooxml/
H A DOOXMLStreamImpl.cxx258 sal_Int32 nLastIndex = msTarget.lastIndexOf('/'); in init() local
259 if (nLastIndex >= 0) in init()
260 msPath = msTarget.copy(0, nLastIndex + 1); in init()
/trunk/main/vcl/unx/generic/fontmanager/
H A Dfontcache.cxx369 xub_StrLen nLastIndex = nIndex+1; in read() local
370 for( nIndex = nLastIndex ; nIndex < nLen && pLine[nIndex] != ';'; nIndex++ ) in read()
372 if( nIndex - nLastIndex ) in read()
374 … OUString aAlias( pLine+nLastIndex, nIndex-nLastIndex, RTL_TEXTENCODING_UTF8 ); in read()
/trunk/main/xmloff/source/draw/
H A Dshapeexport2.cxx1157 sal_Int32 nLastIndex = sRequestedName.lastIndexOf( '/' ) + 1; local
1158 if ( ( nLastIndex > 0 ) && ( nLastIndex < sRequestedName.getLength() ) )
1159 … sRequestedName = sRequestedName.copy( nLastIndex, sRequestedName.getLength() - nLastIndex );
1160 nLastIndex = sRequestedName.lastIndexOf( '.' );
1161 if ( nLastIndex >= 0 )
1162 sRequestedName = sRequestedName.copy( 0, nLastIndex );
/trunk/main/vcl/unx/generic/printer/
H A Dppdparser.cxx519 sal_Int32 nLastIndex = aBase.lastIndexOf( sal_Unicode( '/' ) ); in getPPDFile() local
520 if( nLastIndex >= 0 ) in getPPDFile()
521 aBase = aBase.copy( nLastIndex+1 ); in getPPDFile()
525 nLastIndex = aBase.lastIndexOf( sal_Unicode( '.' ) ); in getPPDFile()
526 if( nLastIndex > 0 ) in getPPDFile()
527 aBase = aBase.copy( 0, nLastIndex ); in getPPDFile()
528 } while( it == pAllPPDFiles->end() && nLastIndex > 0 ); in getPPDFile()
/trunk/main/sc/source/ui/Accessibility/
H A DAccessibleCsvControl.cxx629 sal_Int32 nLastIndex = implGetLastEqualFormatted( nIndex ); in getTextAtIndex() local
631 aResultText.append( maBuffer.getStr() + nFirstIndex, nLastIndex - nFirstIndex + 1 ); in getTextAtIndex()
738 sal_Int32 nLastIndex = implGetLastEqualFormatted( nIndex ); in getTextBehindIndex() local
739 if( nLastIndex < nLastValid ) in getTextBehindIndex()
740 aResult = getTextAtIndex( nLastIndex + 1, nTextType ); in getTextBehindIndex()
/trunk/main/editeng/source/uno/
H A Dunoedprx.cxx1037 sal_uInt16 nCurrIndex, nLastIndex; in GetLineLen() local
1038 for( nCurrLine=0, nCurrIndex=0, nLastIndex=0; nCurrLine<=nLine; ++nCurrLine ) in GetLineLen()
1040 nLastIndex = nCurrIndex; in GetLineLen()
1048 aStartIndex.SetEEIndex( nPara, nLastIndex, *this ); in GetLineLen()
/trunk/main/sd/source/ui/presenter/
H A DPresenterPreviewCache.cxx431 const sal_Int32 nLastIndex (bVisible ? mnLastVisibleSlideIndex : mxSlides->getCount()-1); in GetEntryList() local
436 for (sal_Int32 nIndex=nFirstIndex; nIndex<=nLastIndex; ++nIndex) in GetEntryList()
/trunk/main/ucb/source/ucp/odma/
H A Dodma_content.cxx573 sal_Int32 nLastIndex = sFileURL.lastIndexOf( sal_Unicode('/') ); in execute() local
574 ::ucbhelper::Content aContent(sFileURL.copy(0,nLastIndex),NULL); in execute()
576 aTransferInfo.NewTitle = sFileURL.copy( 1 + nLastIndex ); in execute()
/trunk/main/sd/source/ui/view/
H A DDocumentRenderer.cxx2170 sal_uInt32 nFirstIndex = 0, nLastIndex = aPageVector.size() - 1; in PrepareBooklet() local
2175 …aPairVector.push_back( ::std::make_pair( aPageVector[ nLastIndex-- ], aPageVector[ nFirstIndex++ ]… in PrepareBooklet()
2177 while( nFirstIndex < nLastIndex ) in PrepareBooklet()
2180 …rVector.push_back( ::std::make_pair( aPageVector[ nFirstIndex++ ], aPageVector[ nLastIndex-- ] ) ); in PrepareBooklet()
2182 …aPairVector.push_back( ::std::make_pair( aPageVector[ nLastIndex-- ], aPageVector[ nFirstIndex++ ]… in PrepareBooklet()
/trunk/main/desktop/source/app/
H A Dapp.cxx369 ::sal_uInt32 nLastIndex = sProductKey.lastIndexOf('/'); in FatalError()
370 if ( nLastIndex > 0 ) in FatalError()
371 sProductKey = sProductKey.copy( nLastIndex+1 ); in FatalError()
612 ::sal_Int32 nLastIndex = aURL.lastIndexOf('/'); in getLastSyncFileURLFromBrandInstallation()
616 if ( nLastIndex != aURL.getLength()-1 ) in getLastSyncFileURLFromBrandInstallation()
626 ::sal_Int32 nLastIndex = aUserBundledPathURL.lastIndexOf('/'); in getLastSyncFileURLFromUserInstallation()
630 if ( nLastIndex != aUserBundledPathURL.getLength()-1 ) in getLastSyncFileURLFromUserInstallation()
/trunk/main/editeng/source/accessibility/
H A DAccessibleEditableTextPara.cxx2210 sal_Int32 nCurIndex=0, nLastIndex=0, nCurLineLen=0; in getTextBeforeIndex() local
2213 for( nLine=0, nCurIndex=0, nLastIndex=0; nLine<nLineCount; ++nLine ) in getTextBeforeIndex()
2215 nLastIndex = nCurIndex; in getTextBeforeIndex()
2247 aResult.SegmentEnd = static_cast< sal_uInt16 >( nLastIndex ); in getTextBeforeIndex()
2254 aResult.SegmentStart = nLastIndex - nLastLineLen; in getTextBeforeIndex()
2255 aResult.SegmentEnd = static_cast< sal_uInt16 >( nLastIndex ); in getTextBeforeIndex()
/trunk/main/xmloff/source/chart/
H A DSchXMLExport.cxx3372 sal_Int32 nLastIndex = -1; in exportDataPoints() local
3453 if( nCurrIndex - nLastIndex > 1 ) in exportDataPoints()
3456 aPoint.mnRepeat = nCurrIndex - nLastIndex - 1; in exportDataPoints()
3494 nLastIndex = nCurrIndex; in exportDataPoints()
3508 nLastIndex = nCurrIndex; in exportDataPoints()
3511 nRepeat = nSeriesLength - nLastIndex - 1; in exportDataPoints()

Completed in 189 milliseconds