Lines Matching refs:indexOf
144 int nMax = str.indexOf( 10 ); in removeEncoding()
150 int nFound = str.indexOf( " encoding" ); in removeEncoding()
153 int nStart = str.indexOf( "\"" , nFound ); in removeEncoding()
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()
240 int nMax = str.indexOf( 10 ); in scanForEncoding()
246 int nFound = str.indexOf( " encoding" ); in scanForEncoding()
249 int nStart = str.indexOf( "\"" , nFound ); in scanForEncoding()
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()