Lines Matching refs:nIndex

246 	void				SetChar( xub_StrLen nIndex, sal_Char c );
247 sal_Char GetChar( xub_StrLen nIndex ) const in GetChar()
248 { return mpData->maStr[nIndex]; } in GetChar()
252 ByteString& Insert( const ByteString& rStr, xub_StrLen nIndex = STRING_LEN );
254 xub_StrLen nIndex = STRING_LEN );
255 ByteString& Insert( const sal_Char* pCharStr, xub_StrLen nIndex = STRING_LEN );
256 ByteString& Insert( sal_Char c, xub_StrLen nIndex = STRING_LEN );
257 ByteString& Replace( xub_StrLen nIndex, xub_StrLen nCount, const ByteString& rStr );
258 ByteString& Erase( xub_StrLen nIndex = 0, xub_StrLen nCount = STRING_LEN );
259 ByteString Copy( xub_StrLen nIndex = 0, xub_StrLen nCount = STRING_LEN ) const;
312 xub_StrLen nIndex, xub_StrLen nLen ) const;
314 xub_StrLen nIndex, xub_StrLen nLen ) const;
316 xub_StrLen nIndex, xub_StrLen nLen ) const;
318 xub_StrLen nIndex, xub_StrLen nLen ) const;
323 xub_StrLen Search( sal_Char c, xub_StrLen nIndex = 0 ) const;
324 xub_StrLen Search( const ByteString& rStr, xub_StrLen nIndex = 0 ) const;
325 xub_StrLen Search( const sal_Char* pCharStr, xub_StrLen nIndex = 0 ) const;
326 xub_StrLen SearchBackward( sal_Char c, xub_StrLen nIndex = STRING_LEN ) const;
327 xub_StrLen SearchChar( const sal_Char* pChars, xub_StrLen nIndex = 0 ) const;
328 xub_StrLen SearchCharBackward( const sal_Char* pChars, xub_StrLen nIndex = STRING_LEN ) const;
330 xub_StrLen SearchAndReplace( sal_Char c, sal_Char cRep, xub_StrLen nIndex = 0 );
332 xub_StrLen nIndex = 0 );
334 xub_StrLen nIndex = 0 );
341 xub_StrLen nIndex = 0 );
394 inline ByteString ByteString::Copy( xub_StrLen nIndex, xub_StrLen nCount ) const in Copy() argument
396 return ByteString( *this, nIndex, nCount ); in Copy()
549 void SetChar( xub_StrLen nIndex, sal_Unicode c );
550 sal_Unicode GetChar( xub_StrLen nIndex ) const in GetChar()
551 { return mpData->maStr[nIndex]; } in GetChar()
555 UniString& Insert( const UniString& rStr, xub_StrLen nIndex = STRING_LEN );
557 xub_StrLen nIndex = STRING_LEN );
558 UniString& Insert( const sal_Unicode* pCharStr, xub_StrLen nIndex = STRING_LEN );
559 UniString& Insert( sal_Unicode c, xub_StrLen nIndex = STRING_LEN );
560 UniString& InsertAscii( const sal_Char* pAsciiStr, xub_StrLen nIndex = STRING_LEN );
561 UniString& Replace( xub_StrLen nIndex, xub_StrLen nLen, const UniString& rStr );
562 UniString& ReplaceAscii( xub_StrLen nIndex, xub_StrLen nLen,
564 UniString& Erase( xub_StrLen nIndex = 0, xub_StrLen nCount = STRING_LEN );
565 UniString Copy( xub_StrLen nIndex = 0, xub_StrLen nCount = STRING_LEN ) const;
602 xub_StrLen nIndex, xub_StrLen nLen ) const;
604 xub_StrLen nIndex, xub_StrLen nLen ) const;
606 xub_StrLen nIndex, xub_StrLen nLen ) const;
608 xub_StrLen nIndex, xub_StrLen nLen ) const;
610 xub_StrLen nIndex, xub_StrLen nLen ) const;
612 xub_StrLen nIndex, xub_StrLen nLen ) const;
617 xub_StrLen Search( sal_Unicode c, xub_StrLen nIndex = 0 ) const;
618 xub_StrLen Search( const UniString& rStr, xub_StrLen nIndex = 0 ) const;
619 xub_StrLen Search( const sal_Unicode* pCharStr, xub_StrLen nIndex = 0 ) const;
620 xub_StrLen SearchAscii( const sal_Char* pAsciiStr, xub_StrLen nIndex = 0 ) const;
621 xub_StrLen SearchBackward( sal_Unicode c, xub_StrLen nIndex = STRING_LEN ) const;
622 xub_StrLen SearchChar( const sal_Unicode* pChars, xub_StrLen nIndex = 0 ) const;
623 xub_StrLen SearchCharBackward( const sal_Unicode* pChars, xub_StrLen nIndex = STRING_LEN ) const;
626 xub_StrLen nIndex = 0 );
628 xub_StrLen nIndex = 0 );
630 xub_StrLen nIndex = 0 );
632 xub_StrLen nIndex = 0 );
640 xub_StrLen nIndex = 0 );
669 inline UniString UniString::Copy( xub_StrLen nIndex, xub_StrLen nCount ) const in Copy() argument
671 return UniString( *this, nIndex, nCount ); in Copy()