/aoo41x/main/sc/source/core/data/ |
H A D | segmenttree.cxx | 59 void removeSegment(SCCOLROW nPos1, SCCOLROW nPos2); 112 maSegments.insert_back(nPos1, nPos2+1, nValue); in setValue() 146 while (nEndPos <= nPos2) in getSumValue() 155 if (nCurPos <= nPos2) in getSumValue() 157 nEndPos = ::std::min(nEndPos, nPos2); in getSumValue() 167 SCCOLROW nPos1, nPos2; in getRangeData() local 193 maSegments.shift_left(nPos1, nPos2); in removeSegment() 266 void setTrue(SCCOLROW nPos1, SCCOLROW nPos2); 267 void setFalse(SCCOLROW nPos1, SCCOLROW nPos2); 272 setValue(nPos1, nPos2, true); in setTrue() [all …]
|
/aoo41x/main/svl/source/items/ |
H A D | nranges.cxx | 482 NUMTYPE nPos1 = 0, nPos2 = 0, nTargetPos = 0; in operator -=() local 487 NUMTYPE l2 = rRanges._pRanges[ nPos2 ]; // lower bound of interval 2 in operator -=() 513 nPos2 += 2; in operator -=() 523 nPos2 += 2; // this cannot hurt any longer in operator -=() 569 nPos2 += 2; in operator -=() 692 NUMTYPE nPos1 = 0, nPos2 = 0, nTargetPos = 0; in operator /=() local 693 while( _pRanges[ nPos1 ] != 0 && rRanges._pRanges[ nPos2 ] != 0 ) in operator /=() 697 NUMTYPE l2 = rRanges._pRanges[ nPos2 ]; // lower bound of interval 2 in operator /=() 709 nPos2 += 2; in operator /=() 732 nPos2 += 2; in operator /=() [all …]
|
H A D | style.cxx | 1224 sal_uLong nPos2 = rStream.Tell(); in Store() local 1226 rStream << (sal_uInt32) ( nPos2 - nPos1 - sizeof( sal_uInt32 ) ); in Store() 1227 rStream.Seek( nPos2 ); in Store()
|
/aoo41x/main/filter/source/msfilter/ |
H A D | msvbasic.cxx | 564 int nPos2 = nPos % nWINDOWLEN; in DecompressVBA() local 565 if (nPos2 <= 0x10) in DecompressVBA() 567 else if (nPos2 <= 0x20) in DecompressVBA() 569 else if (nPos2 <= 0x40) in DecompressVBA() 571 else if (nPos2 <= 0x80) in DecompressVBA() 573 else if (nPos2 <= 0x100) in DecompressVBA() 575 else if (nPos2 <= 0x200) in DecompressVBA() 577 else if (nPos2 <= 0x400) in DecompressVBA() 579 else if (nPos2 <= 0x800) in DecompressVBA()
|
/aoo41x/main/sw/source/filter/html/ |
H A D | htmlsect.cxx | 277 xub_StrLen nPos2 = STRING_NOTFOUND; in NewDivision() local 280 nPos2 = aHRef.SearchBackward( cDelim, nPos ); in NewDivision() 281 if( STRING_NOTFOUND != nPos2 ) in NewDivision() 284 nPos = nPos2; in NewDivision() 285 nPos2 = nTmp; in NewDivision() 296 if( STRING_NOTFOUND == nPos2 ) in NewDivision() 302 aURL += aHRef.Copy( nPos+1, nPos2 - (nPos+1) ); in NewDivision() 304 aURL += String(rtl::Uri::decode( aHRef.Copy( nPos2+1 ), in NewDivision()
|
/aoo41x/main/sw/source/filter/ww8/ |
H A D | writerwordglue.cxx | 1027 xub_StrLen nPos2 = nPos - 2; in IsPreviousAM() local 1029 if(nPos1 > nPos || nPos2 > nPos){ in IsPreviousAM() 1034 (rParams.GetChar(nPos2) == 'A'||rParams.GetChar(nPos2) == 'a') in IsPreviousAM() 1040 xub_StrLen nPos2 = nPos + 2; in IsNextPM() local 1043 if(nPos1 >= rParams.Len() - 1 || nPos2 > rParams.Len() - 1){ in IsNextPM() 1048 (rParams.GetChar(nPos2) == 'M'||rParams.GetChar(nPos2) == 'm') in IsNextPM()
|
H A D | wrtww8gr.cxx | 1026 sal_uInt32 nPos2 = rStrm.Tell(); // Ende merken in WriteGraphicNode() local 1029 UInt32ToSVBT32( nPos2 - nPos, nLen ); // Grafik-Laenge ausrechnen in WriteGraphicNode() 1031 rStrm.Seek( nPos2 ); // Pos wiederherstellen in WriteGraphicNode()
|
H A D | ww8par6.cxx | 3334 sal_Int32 nPos2 = nPos * ( 10 * 100 ); // HalfPoints in 100 * tw in Read_SubSuperProp() local 3343 nPos2 /= nHeight; // ... nun in % ( gerundet ) in Read_SubSuperProp() 3344 if( nPos2 > 100 ) // zur Sicherheit in Read_SubSuperProp() 3345 nPos2 = 100; in Read_SubSuperProp() 3346 if( nPos2 < -100 ) in Read_SubSuperProp() 3347 nPos2 = -100; in Read_SubSuperProp() 3348 SvxEscapementItem aEs( (short)nPos2, 100, RES_CHRATR_ESCAPEMENT ); in Read_SubSuperProp()
|
/aoo41x/main/svtools/source/filter/ixbm/ |
H A D | xbmread.cxx | 105 long nPos2; in FindTokenLine() local 125 if( ( ( nPos2 = aRet.Search( pTok2 ) ) != STRING_NOTFOUND ) && in FindTokenLine() 126 ( nPos2 > nPos1 ) ) in FindTokenLine() 134 if( ( ( nPos3 = aRet.Search( pTok3 ) ) != STRING_NOTFOUND ) && ( nPos3 > nPos2 ) ) in FindTokenLine()
|
/aoo41x/main/xmloff/source/xforms/ |
H A D | SchemaRestrictionContext.cxx | 191 sal_Int32 nPos2 = rValue.indexOf( sal_Unicode('-'), nPos1 + 1 ); in lcl_date() local 192 if( nPos1 > 0 && nPos2 > 0 ) in lcl_date() 198 rValue.copy( nPos1 + 1, nPos2 - nPos1 - 1 ).toInt32() ); in lcl_date() 200 rValue.copy( nPos2 + 1 ).toInt32() ); in lcl_date()
|
/aoo41x/main/cui/source/dialogs/ |
H A D | hyphen.cxx | 302 xub_StrLen nPos = 0, nPos1 = 0, nPos2 = 0; in EraseUnusableHyphens_Impl() local 337 … nPos2 = aSearchRange.SearchBackward( '-' ); // the '-' position the core will use by default in EraseUnusableHyphens_Impl() 338 if (nPos2 != STRING_NOTFOUND) in EraseUnusableHyphens_Impl() 340 String aLeft( aSearchRange.Copy( 0, nPos2 ) ); in EraseUnusableHyphens_Impl() 348 aTxt.Replace( 0, nPos2, aLeft ); in EraseUnusableHyphens_Impl()
|
/aoo41x/main/tools/source/memtools/ |
H A D | multisel.cxx | 104 sal_Bool MultiSelection::ImplMergeSubSelections( sal_uIntPtr nPos1, sal_uIntPtr nPos2 ) in ImplMergeSubSelections() argument 107 if ( nPos2 >= aSels.Count() ) in ImplMergeSubSelections() 111 if ( (aSels.GetObject(nPos1)->Max() + 1) == aSels.GetObject(nPos2)->Min() ) in ImplMergeSubSelections() 114 aSels.GetObject(nPos1)->Max() = aSels.GetObject(nPos2)->Max(); in ImplMergeSubSelections() 115 delete aSels.Remove(nPos2); in ImplMergeSubSelections()
|
/aoo41x/main/xmlsecurity/source/helper/ |
H A D | xsecctl.cxx | 168 sal_Int32 nPos2 = rString.indexOf( (sal_Unicode) ',' ); in convertDateTime() local 172 if ( nPos2 >= 0 ) in convertDateTime() 174 aTimeStr = rString.copy( nPos + 1, nPos2 - nPos - 1 ); in convertDateTime() 189 sHundredth = rString.copy(nPos2 + 1); in convertDateTime()
|
/aoo41x/main/connectivity/source/drivers/ado/ |
H A D | AResultSet.cxx | 879 sal_Int32 nPos2; in compareBookmarks() local 880 second >>= nPos2; in compareBookmarks() 881 if(nPos1 == nPos2) // they should be equal in compareBookmarks() 884 …OSL_ENSURE((nPos1 >= 0 && nPos1 < (sal_Int32)m_aBookmarks.size()) || (nPos1 >= 0 && nPos2 < (sal_I… in compareBookmarks() 887 m_pRecordSet->CompareBookmarks(m_aBookmarks[nPos1],m_aBookmarks[nPos2],&eNum); in compareBookmarks()
|
/aoo41x/main/filter/source/placeware/ |
H A D | exporter.cxx | 209 sal_Int32 nPos2 = rURL.lastIndexOf( (sal_Unicode)'.' ); in createSlideFile() local 210 if( nPos2 > nPos1 ) in createSlideFile() 212 aTemp = rURL.copy( nPos1 + 1, nPos2 - nPos1 - 1 ); in createSlideFile()
|
/aoo41x/main/sw/source/filter/ww1/ |
H A D | w1sprm.cxx | 399 sal_uInt16 nPos2 = aAttr.GetPos( nPos ); in Start() local 400 if( nPos2 != SVX_TAB_NOTFOUND ) in Start() 401 aAttr.Remove( nPos2, 1 ); // sonst weigert sich das Insert() in Start()
|
/aoo41x/main/unotools/source/i18n/ |
H A D | transliterationwrapper.cxx | 251 const String& rStr2, sal_Int32 nPos2, sal_Int32 nCount2, sal_Int32& nMatch2 ) const in equals() argument 258 return xTrans->equals( rStr1, nPos1, nCount1, nMatch1, rStr2, nPos2, nCount2, nMatch2 ); in equals()
|
/aoo41x/main/xmloff/source/core/ |
H A D | xmluconv.cxx | 1229 sal_Int32 nPos2 = rString.indexOf( (sal_Unicode) ',' ); in convertDateTime() local 1230 if (nPos2 < 0) in convertDateTime() 1231 nPos2 = rString.indexOf( (sal_Unicode) '.' ); in convertDateTime() 1235 if ( nPos2 >= 0 ) in convertDateTime() 1237 aTimeStr = rString.copy( nPos + 1, nPos2 - nPos - 1 ); in convertDateTime() 1239 sDoubleStr += rString.copy( nPos2 + 1 ); in convertDateTime()
|
/aoo41x/main/vcl/aqua/source/window/ |
H A D | salmenu.cxx | 685 xub_StrLen nPos2 = aText.Search( sal_Unicode( ')' ) ); in SetItemText() local 686 if( nPos2 != STRING_NOTFOUND ) in SetItemText() 687 aText.Erase( nPos, nPos2-nPos+1 ); in SetItemText()
|
/aoo41x/main/sw/source/ui/dbui/ |
H A D | mailmergechildwindow.cxx | 405 long nPos2 = aSz.Width()/3; in SwSendMailDialog() local 410 nPos2, in SwSendMailDialog()
|
/aoo41x/main/offapi/com/sun/star/i18n/ |
H A D | XTransliteration.idl | 241 @param nPos2 258 [in] string aStr2, [in] long nPos2, [in] long nCount2,
|
/aoo41x/main/unotools/inc/unotools/ |
H A D | transliterationwrapper.hxx | 114 const String& rStr2, sal_Int32 nPos2, sal_Int32 nCount2, sal_Int32& nMatch2 ) const;
|
/aoo41x/main/starmath/source/ |
H A D | mathtype.cxx | 2658 sal_uLong nPos2=0; in HandleOperator() local 2661 nPos2 = pS->Tell(); in HandleOperator() 2764 if (nPos2) in HandleOperator() 2765 pS->Seek(nPos2); in HandleOperator()
|
/aoo41x/main/l10ntools/source/ |
H A D | export.cxx | 1254 sal_uInt16 nPos2 = sOrig.SearchBackward('\"'); in UnmergeUTF8() local 1255 if( nPos1 > 0 && nPos2 > 0 && nPos1 < nPos2){ in UnmergeUTF8() 1256 ByteString sPart = sOrig.Copy(nPos1+1 , nPos2-1); in UnmergeUTF8()
|
/aoo41x/main/tools/inc/tools/ |
H A D | multisel.hxx | 65 TOOLS_DLLPRIVATE sal_Bool ImplMergeSubSelections( sal_uIntPtr nPos1, sal_uIntPtr nPos2 );
|