Lines Matching refs:length

147     OString( const sal_Char * value, sal_Int32 length ) SAL_THROW(())  in OString()  argument
150 rtl_string_newFromStr_WithLength( &pData, value, length ); in OString()
167 OString( const sal_Unicode * value, sal_Int32 length, in OString() argument
172 rtl_uString2String( &pData, value, length, encoding, convertFlags ); in OString()
220 sal_Int32 getLength() const SAL_THROW(()) { return pData->length; } in getLength()
245 bool isEmpty() const { return (pData->length == 0); } in isEmpty()
274 return rtl_str_compare_WithLength( pData->buffer, pData->length, in compareTo()
275 str.pData->buffer, str.pData->length ); in compareTo()
293 return rtl_str_shortenedCompare_WithLength( pData->buffer, pData->length, in compareTo()
294 … rObj.pData->buffer, rObj.pData->length, maxLength ); in compareTo()
311 return rtl_str_reverseCompare_WithLength( pData->buffer, pData->length, in reverseCompareTo()
312 str.pData->buffer, str.pData->length ); in reverseCompareTo()
328 if ( pData->length != str.pData->length ) in equals()
332 return rtl_str_reverseCompare_WithLength( pData->buffer, pData->length, in equals()
333 str.pData->buffer, str.pData->length ) == 0; in equals()
352 if ( pData->length != str.pData->length ) in equalsIgnoreAsciiCase()
356 return rtl_str_compareIgnoreAsciiCase_WithLength( pData->buffer, pData->length, in equalsIgnoreAsciiCase()
357 … str.pData->buffer, str.pData->length ) == 0; in equalsIgnoreAsciiCase()
377 … return rtl_str_shortenedCompare_WithLength( pData->buffer+fromIndex, pData->length-fromIndex, in match()
378 … str.pData->buffer, str.pData->length, str.pData->length ) == 0; in match()
401 …l_str_shortenedCompareIgnoreAsciiCase_WithLength( pData->buffer+fromIndex, pData->length-fromIndex, in matchIgnoreAsciiCase()
402 … str.pData->buffer, str.pData->length, in matchIgnoreAsciiCase()
403 str.pData->length ) == 0; in matchIgnoreAsciiCase()
438 return rtl_str_hashCode_WithLength( pData->buffer, pData->length ); in hashCode()
456 …sal_Int32 ret = rtl_str_indexOfChar_WithLength( pData->buffer+fromIndex, pData->length-fromIndex, … in indexOf()
471 return rtl_str_lastIndexOfChar_WithLength( pData->buffer, pData->length, ch ); in lastIndexOf()
508 … sal_Int32 ret = rtl_str_indexOfStr_WithLength( pData->buffer+fromIndex, pData->length-fromIndex, in indexOf()
509 str.pData->buffer, str.pData->length ); in indexOf()
530 return rtl_str_lastIndexOfStr_WithLength( pData->buffer, pData->length, in lastIndexOf()
531 str.pData->buffer, str.pData->length ); in lastIndexOf()
554 str.pData->buffer, str.pData->length ); in lastIndexOf()