Lines Matching refs:fromIndex

422     sal_Bool match( const OUString & str, sal_Int32 fromIndex = 0 ) const SAL_THROW(())  in match()  argument
424 … return rtl_ustr_shortenedCompare_WithLength( pData->buffer+fromIndex, pData->length-fromIndex, in match()
446 … sal_Bool matchIgnoreAsciiCase( const OUString & str, sal_Int32 fromIndex = 0 ) const SAL_THROW(()) in matchIgnoreAsciiCase() argument
448 …_ustr_shortenedCompareIgnoreAsciiCase_WithLength( pData->buffer+fromIndex, pData->length-fromIndex, in matchIgnoreAsciiCase()
640 …sal_Bool matchAsciiL( const sal_Char* asciiStr, sal_Int32 asciiStrLength, sal_Int32 fromIndex = 0 … in matchAsciiL() argument
642 …eturn rtl_ustr_ascii_shortenedCompare_WithLength( pData->buffer+fromIndex, pData->length-fromIndex, in matchAsciiL()
670 …seAsciiL( const sal_Char* asciiStr, sal_Int32 asciiStrLength, sal_Int32 fromIndex = 0 ) const SAL_… in matchIgnoreAsciiCaseAsciiL() argument
672 …ascii_shortenedCompareIgnoreAsciiCase_WithLength( pData->buffer+fromIndex, pData->length-fromIndex, in matchIgnoreAsciiCaseAsciiL()
764 sal_Int32 indexOf( sal_Unicode ch, sal_Int32 fromIndex = 0 ) const SAL_THROW(()) in indexOf() argument
766 …Int32 ret = rtl_ustr_indexOfChar_WithLength( pData->buffer+fromIndex, pData->length-fromIndex, ch … in indexOf()
767 return (ret < 0 ? ret : ret+fromIndex); in indexOf()
796 sal_Int32 lastIndexOf( sal_Unicode ch, sal_Int32 fromIndex ) const SAL_THROW(()) in lastIndexOf()
798 return rtl_ustr_lastIndexOfChar_WithLength( pData->buffer, fromIndex, ch ); in lastIndexOf()
816 sal_Int32 indexOf( const OUString & str, sal_Int32 fromIndex = 0 ) const SAL_THROW(()) in indexOf() argument
818 … sal_Int32 ret = rtl_ustr_indexOfStr_WithLength( pData->buffer+fromIndex, pData->length-fromIndex, in indexOf()
820 return (ret < 0 ? ret : ret+fromIndex); in indexOf()
847 char const * str, sal_Int32 len, sal_Int32 fromIndex = 0) const in indexOfAsciiL() argument
851 pData->buffer + fromIndex, pData->length - fromIndex, str, len); in indexOfAsciiL()
852 return ret < 0 ? ret : ret + fromIndex; in indexOfAsciiL()
893 sal_Int32 lastIndexOf( const OUString & str, sal_Int32 fromIndex ) const SAL_THROW(()) in lastIndexOf()
895 return rtl_ustr_lastIndexOfStr_WithLength( pData->buffer, fromIndex, in lastIndexOf()