Home
last modified time | relevance | path

Searched refs:fromIndex (Results 1 – 7 of 7) sorted by relevance

/AOO41X/main/sal/inc/rtl/
H A Dustring.hxx422 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()
[all …]
H A Dstring.hxx375 sal_Bool match( const OString & str, sal_Int32 fromIndex = 0 ) const SAL_THROW(()) in match() argument
377 … return rtl_str_shortenedCompare_WithLength( pData->buffer+fromIndex, pData->length-fromIndex, in match()
399 … sal_Bool matchIgnoreAsciiCase( const OString & str, sal_Int32 fromIndex = 0 ) const SAL_THROW(()) in matchIgnoreAsciiCase() argument
401 …l_str_shortenedCompareIgnoreAsciiCase_WithLength( pData->buffer+fromIndex, pData->length-fromIndex, in matchIgnoreAsciiCase()
454 sal_Int32 indexOf( sal_Char ch, sal_Int32 fromIndex = 0 ) const SAL_THROW(()) in indexOf() argument
456 …_Int32 ret = rtl_str_indexOfChar_WithLength( pData->buffer+fromIndex, pData->length-fromIndex, ch … in indexOf()
457 return (ret < 0 ? ret : ret+fromIndex); in indexOf()
486 sal_Int32 lastIndexOf( sal_Char ch, sal_Int32 fromIndex ) const SAL_THROW(()) in lastIndexOf()
488 return rtl_str_lastIndexOfChar_WithLength( pData->buffer, fromIndex, ch ); in lastIndexOf()
506 sal_Int32 indexOf( const OString & str, sal_Int32 fromIndex = 0 ) const SAL_THROW(()) in indexOf() argument
[all …]
/AOO41X/main/xmloff/source/draw/
H A Danimationimport.cxx343 sal_Int32 fromIndex = 0; in count_codes() local
347 fromIndex = rString.indexOf( nCode, fromIndex ); in count_codes()
348 if( fromIndex == -1 ) in count_codes()
351 fromIndex++; in count_codes()
/AOO41X/main/sd/source/filter/ppt/
H A Dpptinanimations.cxx1342 sal_Int32 fromIndex = 0; in fillNode() local
1345 fromIndex = aString.indexOf( (sal_Unicode)';', fromIndex ); in fillNode()
1346 if( fromIndex == -1 ) in fillNode()
1349 fromIndex++; in fillNode()
/AOO41X/main/basctl/source/inc/
H A Dbastypes.hxx57 sal_Int32 searchEOL( const ::rtl::OUString& rStr, sal_Int32 fromIndex );
/AOO41X/main/basctl/source/basicide/
H A Dbaside2b.cxx540 sal_Int32 searchEOL( const ::rtl::OUString& rStr, sal_Int32 fromIndex ) in searchEOL() argument
544 sal_Int32 iLF = rStr.indexOf( LINE_SEP, fromIndex ); in searchEOL()
551 iRetPos = rStr.indexOf( LINE_SEP_CR, fromIndex ); in searchEOL()
/AOO41X/main/sal/qa/rtl_strings/
H A Drtl_OUString.cxx653 sal_Int32 fromIndex; in test_rtl_OUString_match_002() member
697 (*(arrTestCase[i].input2),arrTestCase[i].fromIndex) == in test_rtl_OUString_match_002()