Lines Matching refs:nStop
152 int nStop; in removeEncoding() local
157 nStop = str.indexOf( "'" , nStart +1 ); in removeEncoding()
161 nStop = str.indexOf( "\"" , nStart +1); in removeEncoding()
164 if( nStart >= 0 && nStop >= 0 && nStart+1 < nStop ) in removeEncoding()
168 &( seq.getArray()[nStop+1]) , in removeEncoding()
169 seq.getLength() - nStop -1); in removeEncoding()
170 seq.realloc( seq.getLength() - ( nStop+1 - nFound ) ); in removeEncoding()
248 int nStop; in scanForEncoding() local
253 nStop = str.indexOf( "'" , nStart +1 ); in scanForEncoding()
257 nStop = str.indexOf( "\"" , nStart +1); in scanForEncoding()
259 if( nStart >= 0 && nStop >= 0 && nStart+1 < nStop ) in scanForEncoding()
262 m_sEncoding = str.copy( nStart+1 , nStop - nStart - 1 ); in scanForEncoding()