Lines Matching refs:getLength

61 		if( nRead + seqStart.getLength())  in readAndConvert()
67 if( seqStart.getLength() ) in readAndConvert()
70 sal_Int32 nLength = seq.getLength(); in readAndConvert()
71 seq.realloc( seqStart.getLength() + nLength ); in readAndConvert()
73 memmove (seq.getArray() + seqStart.getLength(), in readAndConvert()
78 seqStart.getLength()); in readAndConvert()
90 if( scanForEncoding( seq ) || m_sEncoding.getLength() ) { in readAndConvert()
94 nRead = seq.getLength(); in readAndConvert()
103 seq = m_pUnicode2Text->convert( seqUnicode.getConstArray(), seqUnicode.getLength() ); in readAndConvert()
115 nRead = seq.getLength(); in readAndConvert()
140 OString str( (sal_Char * ) pSource , seq.getLength() ); in removeEncoding()
169 seq.getLength() - nStop -1); in removeEncoding()
170 seq.realloc( seq.getLength() - ( nStop+1 - nFound ) ); in removeEncoding()
183 if( seq.getLength() < 8 ) { in isEncodingRecognizable()
207 for( sal_Int32 i = 0; i < seq.getLength() ; i ++ ) in isEncodingRecognizable()
227 if( seq.getLength() < 4 ) { in scanForEncoding()
236 OString str( (const sal_Char *) pSource , seq.getLength() ); in scanForEncoding()
247 if( nFound < str.getLength() ) { in scanForEncoding()
283 seq.realloc( seq.getLength() + 2 ); in scanForEncoding()
284 memmove( &( seq.getArray()[2] ) , seq.getArray() , seq.getLength() - 2 ); in scanForEncoding()
294 seq.realloc( seq.getLength() + 2 ); in scanForEncoding()
295 memmove( &( seq.getArray()[2] ) , seq.getArray() , seq.getLength() - 2 ); in scanForEncoding()
307 memmove( seq.getArray(), &( seq.getArray()[3] ), seq.getLength()-3 ); in scanForEncoding()
308 seq.realloc( seq.getLength() - 3 ); in scanForEncoding()
337 if( m_sEncoding.getLength() ) in initializeDecoding()
396 sal_Int32 nSourceSize = seqText.getLength() + m_seqSource.getLength(); in convert()
402 if( m_seqSource.getLength() ) { in convert()
405 memcpy( pbTempMem , m_seqSource.getConstArray() , m_seqSource.getLength() ); in convert()
406 memcpy( &(pbTempMem[ m_seqSource.getLength() ]) , seqText.getConstArray() , seqText.getLength() ); in convert()
422 seqUnicode.getLength() - nTargetCount, in convert()
432 seqUnicode.realloc( seqUnicode.getLength() * 2 ); in convert()
479 if( m_seqSource.getLength() ) { in convert()
485 puTempMem = new sal_Unicode[ nSourceSize + m_seqSource.getLength()]; in convert()
488 m_seqSource.getLength() * sizeof( sal_Unicode ) ); in convert()
490 &(puTempMem[ m_seqSource.getLength() ]) , in convert()
494 nSourceSize += m_seqSource.getLength(); in convert()