Lines Matching refs:aOffset

145          *  @param   aOffset tells us where in this string to start searching
151 NS_COM PRInt32 Find( const nsCString& aString, PRBool aIgnoreCase=PR_FALSE, PRInt32 aOffset=0, PRInt32 aCount=-1 ) const;
152 NS_COM PRInt32 Find( const char* aString, PRBool aIgnoreCase=PR_FALSE, PRInt32 aOffset=0, PRInt32 aCount=-1 ) const;
155 NS_COM PRInt32 Find( const nsAFlatString& aString, PRInt32 aOffset=0, PRInt32 aCount=-1 ) const;
156 NS_COM PRInt32 Find( const PRUnichar* aString, PRInt32 aOffset=0, PRInt32 aCount=-1 ) const;
165 * @param aOffset tells us where in this string to start searching.
172 NS_COM PRInt32 RFind( const nsCString& aString, PRBool aIgnoreCase=PR_FALSE, PRInt32 aOffset=-1, PRInt32 aCount=-1 ) const;
173 NS_COM PRInt32 RFind( const char* aCString, PRBool aIgnoreCase=PR_FALSE, PRInt32 aOffset=-1, PRInt32 aCount=-1 ) const;
176 NS_COM PRInt32 RFind( const nsAFlatString& aString, PRInt32 aOffset=-1, PRInt32 aCount=-1 ) const;
177 NS_COM PRInt32 RFind( const PRUnichar* aString, PRInt32 aOffset=-1, PRInt32 aCount=-1 ) const;
185 * @param aOffset tells us where in this strig to start searching
191 // PRInt32 FindChar( PRUnichar aChar, PRInt32 aOffset=0, PRInt32 aCount=-1 ) const;
192 NS_COM PRInt32 RFindChar( PRUnichar aChar, PRInt32 aOffset=-1, PRInt32 aCount=-1 ) const;
200 * @param aOffset tells us where in this string to start searching
205 NS_COM PRInt32 FindCharInSet( const char* aString, PRInt32 aOffset=0 ) const;
206 PRInt32 FindCharInSet( const self_type& aString, PRInt32 aOffset=0 ) const
208 return FindCharInSet(aString.get(), aOffset);
212 NS_COM PRInt32 FindCharInSet( const PRUnichar* aString, PRInt32 aOffset=0 ) const;
221 * @param aOffset tells us where in this string to start searching
226 NS_COM PRInt32 RFindCharInSet( const char_type* aString, PRInt32 aOffset=-1 ) const;
227 PRInt32 RFindCharInSet( const self_type& aString, PRInt32 aOffset=-1 ) const
229 return RFindCharInSet(aString.get(), aOffset);
269 * @param aOffset is the offset to copy from
273 NS_COM char* ToCString( char* aBuf, PRUint32 aBufLength, PRUint32 aOffset=0 ) const;
351 * @param aOffset -- where in this string to start stripping chars
354 NS_COM void StripChar( char_type aChar, PRInt32 aOffset=0 );