Lines Matching defs:readable
73 nsTAString_CharT::Equals( const self_type& readable ) const
76 return AsSubstring()->Equals(readable);
78 return ToSubstring().Equals(readable);
82 nsTAString_CharT::Equals( const self_type& readable, const comparator_type& comparator ) const
85 return AsSubstring()->Equals(readable, comparator);
87 return ToSubstring().Equals(readable, comparator);
226 nsTAString_CharT::Assign( const self_type& readable )
229 AsSubstring()->Assign(readable);
231 AsObsoleteString()->do_AssignFromReadable(readable);
309 nsTAString_CharT::Append( const self_type& readable )
312 AsSubstring()->Append(readable);
314 AsObsoleteString()->do_AppendFromReadable(readable);
390 nsTAString_CharT::Insert( const self_type& readable, index_type pos )
393 AsSubstring()->Insert(readable, pos);
395 AsObsoleteString()->do_InsertFromReadable(readable, pos);
444 nsTAString_CharT::Replace( index_type cutStart, size_type cutLength, const self_type& readable )
447 AsSubstring()->Replace(cutStart, cutLength, readable);
449 AsObsoleteString()->do_ReplaceFromReadable(cutStart, cutLength, readable);