Lines Matching refs:nPos

1005 		sal_uInt16 nPos;  in RTLFUNC()  local
1011 nPos = nStartPos; in RTLFUNC()
1019 nPos = rStr1.Search( rToken, nStartPos-1 ); in RTLFUNC()
1020 if ( nPos == STRING_NOTFOUND ) in RTLFUNC()
1021 nPos = 0; in RTLFUNC()
1023 nPos++; in RTLFUNC()
1033 nPos = aStr1.Search( aToken, nStartPos-1 ); in RTLFUNC()
1034 if ( nPos == STRING_NOTFOUND ) in RTLFUNC()
1035 nPos = 0; in RTLFUNC()
1037 nPos++; in RTLFUNC()
1040 rPar.Get(0)->PutLong( nPos ); in RTLFUNC()
1089 sal_uInt16 nPos = 0; in RTLFUNC() local
1096 nPos = nStartPos; in RTLFUNC()
1106 nPos = 0; in RTLFUNC()
1108 nPos = (sal_uInt16)nRet + 1; in RTLFUNC()
1120 nPos = 0; in RTLFUNC()
1122 nPos = (sal_uInt16)nRet + 1; in RTLFUNC()
1126 rPar.Get(0)->PutLong( nPos ); in RTLFUNC()
1428 sal_uInt16 nPos = static_cast<sal_uInt16>( lStartPos - 1 ); in RTLFUNC() local
1438 nPos = aSrcStr.Search( aFindStr, nPos ); in RTLFUNC()
1439 if( nPos != STRING_NOTFOUND ) in RTLFUNC()
1441 aExpStr.Replace( nPos, nFindStrLen, aReplaceStr ); in RTLFUNC()
1442 nPos = nPos + nReplaceStrLen; in RTLFUNC()
3220 sal_uIntPtr nPos; in RTLFUNC() local
3224 nPos = nBlockLen ? (pSvStrm->Tell() / nBlockLen) : 0; in RTLFUNC()
3225 nPos++; // Blockpositionen beginnen bei 1 in RTLFUNC()
3228 nPos = pSbStrm->GetLine(); in RTLFUNC()
3230 nPos = pSvStrm->Tell(); in RTLFUNC()
3232 nPos = ( pSvStrm->Tell()+1 ) / 128; in RTLFUNC()
3234 nPos = pSvStrm->Tell(); in RTLFUNC()
3235 rPar.Get(0)->PutLong( (sal_Int32)nPos ); in RTLFUNC()
3291 sal_uIntPtr nPos = pStrm->Tell(); in RTLFUNC() local
3293 nPos = nPos / pSbStrm->GetBlockLen(); in RTLFUNC()
3294 nPos++; // Basic zaehlt ab 1 in RTLFUNC()
3295 rPar.Get(0)->PutLong( (sal_Int32)nPos ); in RTLFUNC()
3299 sal_Int32 nPos = rPar.Get(2)->GetLong(); in RTLFUNC() local
3300 if ( nPos < 1 ) in RTLFUNC()
3305 nPos--; // Basic zaehlt ab 1, SvStreams zaehlen ab 0 in RTLFUNC()
3308 nPos *= pSbStrm->GetBlockLen(); in RTLFUNC()
3309 pStrm->Seek( (sal_uIntPtr)nPos ); in RTLFUNC()
3310 pSbStrm->SetExpandOnWriteTo( nPos ); in RTLFUNC()
3615 int nPos = ((int)eType) & 0x0FFF; in getBasicTypeName() local
3617 if ( nPos < 0 || nPos >= nTypeNameCount ) in getBasicTypeName()
3618 nPos = nTypeNameCount - 1; in getBasicTypeName()
3619 String aRetStr = String::CreateFromAscii( pTypeNames[nPos] ); in getBasicTypeName()