Lines Matching defs:readable
212 NS_COM PRBool NS_FASTCALL Equals( const abstract_string_type& readable ) const;
213 NS_COM PRBool NS_FASTCALL Equals( const abstract_string_type& readable, const comparator_type& comp ) const;
318 self_type& operator=( const abstract_string_type& readable ) { Assign(readable); return *this; }
331 NS_COM void NS_FASTCALL Replace( index_type cutStart, size_type cutLength, const abstract_string_type& readable );
339 void Append( const abstract_string_type& readable ) { Replace(mLength, 0, readable); }
362 self_type& operator+=( const abstract_string_type& readable ) { Append(readable); return *this; }
368 void Insert( const abstract_string_type& readable, index_type pos ) { Replace(pos, 0, readable); }