Lines Matching refs:nStart
153 int nStart = str.indexOf( "\"" , nFound ); in removeEncoding() local
154 if( nStart < 0 || str.indexOf( "'" , nFound ) < nStart ) in removeEncoding()
156 nStart = str.indexOf( "'" , nFound ); in removeEncoding()
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()
249 int nStart = str.indexOf( "\"" , nFound ); in scanForEncoding() local
250 if( nStart < 0 || str.indexOf( "'" , nFound ) < nStart ) in scanForEncoding()
252 nStart = str.indexOf( "'" , nFound ); in scanForEncoding()
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()