Lines Matching refs:length

948         pData->length = nLen;  in IMPL_RTL_STRINGNAME()
962 IMPL_RTL_STRINGDATA* pData = IMPL_RTL_STRINGNAME( ImplAlloc )( pStr->length ); in IMPL_RTL_STRINGNAME()
1043 (*ppThis)->length = 0; in IMPL_RTL_STRINGNAME()
1064 if ( !pStr->length ) in IMPL_RTL_STRINGNAME()
1071 *ppThis = IMPL_RTL_STRINGNAME( ImplAlloc )( pStr->length ); in IMPL_RTL_STRINGNAME()
1073 rtl_str_ImplCopy( (*ppThis)->buffer, pStr->buffer, pStr->length ); in IMPL_RTL_STRINGNAME()
1164 return pThis->length; in IMPL_RTL_STRINGNAME()
1183 if ( !pRight || !pRight->length ) in IMPL_RTL_STRINGNAME()
1188 else if ( !pLeft || !pLeft->length ) in IMPL_RTL_STRINGNAME()
1195 …IMPL_RTL_STRINGDATA* pTempStr = IMPL_RTL_STRINGNAME( ImplAlloc )( pLeft->length + pRight->length ); in IMPL_RTL_STRINGNAME()
1197 rtl_str_ImplCopy( pTempStr->buffer, pLeft->buffer, pLeft->length ); in IMPL_RTL_STRINGNAME()
1198 rtl_str_ImplCopy( pTempStr->buffer+pLeft->length, pRight->buffer, pRight->length ); in IMPL_RTL_STRINGNAME()
1216 if ( nIndex >= pStr->length ) in IMPL_RTL_STRINGNAME()
1231 if ( nCount >= pStr->length-nIndex ) in IMPL_RTL_STRINGNAME()
1233 nCount = pStr->length-nIndex; in IMPL_RTL_STRINGNAME()
1236 if ( !nIndex && (nCount >= pStr->length) ) in IMPL_RTL_STRINGNAME()
1247 if ( !nCount && (!pNewSubStr || !pNewSubStr->length) ) in IMPL_RTL_STRINGNAME()
1259 nNewLen = pStr->length-nCount; in IMPL_RTL_STRINGNAME()
1261 nNewLen += pNewSubStr->length; in IMPL_RTL_STRINGNAME()
1272 if ( pNewSubStr && pNewSubStr->length ) in IMPL_RTL_STRINGNAME()
1274 rtl_str_ImplCopy( pBuffer, pNewSubStr->buffer, pNewSubStr->length ); in IMPL_RTL_STRINGNAME()
1275 pBuffer += pNewSubStr->length; in IMPL_RTL_STRINGNAME()
1277 rtl_str_ImplCopy( pBuffer, pStr->buffer+nIndex+nCount, pStr->length-nIndex-nCount ); in IMPL_RTL_STRINGNAME()
1294 sal_Int32 nLen = pStr->length; in IMPL_RTL_STRINGNAME()
1351 sal_Int32 nLen = pStr->length; in IMPL_RTL_STRINGNAME()
1411 sal_Int32 nLen = pStr->length; in IMPL_RTL_STRINGNAME()
1473 sal_Int32 nLen = pStr->length; in IMPL_RTL_STRINGNAME()
1515 sal_Int32 nLen = pStr->length-nIndex; in IMPL_RTL_STRINGNAME()