Lines Matching refs:asciiStrLength

516 …sal_Int32 reverseCompareToAsciiL( const sal_Char * asciiStr, sal_Int32 asciiStrLength ) const SAL_…  in reverseCompareToAsciiL()
519 asciiStr, asciiStrLength ); in reverseCompareToAsciiL()
560 sal_Bool equalsAsciiL( const sal_Char* asciiStr, sal_Int32 asciiStrLength ) const SAL_THROW(()) in equalsAsciiL()
562 if ( pData->length != asciiStrLength ) in equalsAsciiL()
566 pData->buffer, asciiStr, asciiStrLength ); in equalsAsciiL()
612 …sal_Bool equalsIgnoreAsciiCaseAsciiL( const sal_Char * asciiStr, sal_Int32 asciiStrLength ) const … in equalsIgnoreAsciiCaseAsciiL()
614 if ( pData->length != asciiStrLength ) in equalsIgnoreAsciiCaseAsciiL()
640 …sal_Bool matchAsciiL( const sal_Char* asciiStr, sal_Int32 asciiStrLength, sal_Int32 fromIndex = 0 … in matchAsciiL() argument
643 asciiStr, asciiStrLength ) == 0; in matchAsciiL()
670 …sal_Bool matchIgnoreAsciiCaseAsciiL( const sal_Char* asciiStr, sal_Int32 asciiStrLength, sal_Int32… in matchIgnoreAsciiCaseAsciiL() argument
673 … asciiStr, asciiStrLength ) == 0; in matchIgnoreAsciiCaseAsciiL()
687 inline bool endsWithAsciiL(char const * asciiStr, sal_Int32 asciiStrLength) in endsWithAsciiL()
690 return asciiStrLength <= pData->length in endsWithAsciiL()
692 pData->buffer + pData->length - asciiStrLength, asciiStr, in endsWithAsciiL()
693 asciiStrLength); in endsWithAsciiL()
707 char const * asciiStr, sal_Int32 asciiStrLength) const in endsWithIgnoreAsciiCaseAsciiL()
709 return asciiStrLength <= pData->length in endsWithIgnoreAsciiCaseAsciiL()
711 pData->buffer + pData->length - asciiStrLength, in endsWithIgnoreAsciiCaseAsciiL()
712 asciiStrLength, asciiStr, asciiStrLength) in endsWithIgnoreAsciiCaseAsciiL()