Lines Matching defs:tuple
235 nsTAString_CharT::Assign( const substring_tuple_type& tuple )
238 AsSubstring()->Assign(tuple);
240 AsObsoleteString()->do_AssignFromReadable(nsTAutoString_CharT(tuple));
318 nsTAString_CharT::Append( const substring_tuple_type& tuple )
321 AsSubstring()->Append(tuple);
323 AsObsoleteString()->do_AppendFromReadable(nsTAutoString_CharT(tuple));
399 nsTAString_CharT::Insert( const substring_tuple_type& tuple, index_type pos )
402 AsSubstring()->Insert(tuple, pos);
404 AsObsoleteString()->do_InsertFromReadable(nsTAutoString_CharT(tuple), pos);
453 nsTAString_CharT::Replace( index_type cutStart, size_type cutLength, const substring_tuple_type& tuple )
456 AsSubstring()->Replace(cutStart, cutLength, tuple);
458 AsObsoleteString()->do_ReplaceFromReadable(cutStart, cutLength, nsTAutoString_CharT(tuple));