Lines Matching refs:Replace

327              void Replace( index_type cutStart, size_type cutLength, char_type c )               { Replace(cutStart, cutLength, &c, 1); }
328 NS_COM void NS_FASTCALL Replace( index_type cutStart, size_type cutLength, const char_type* data, size_type length = size_type(-1) );
329 void Replace( index_type cutStart, size_type cutLength, const self_type& str ) { Replace(cutStart, cutLength, str.Data(), str.Length()); }
330 NS_COM void NS_FASTCALL Replace( index_type cutStart, size_type cutLength, const substring_tuple_type& tuple );
331 NS_COM void NS_FASTCALL Replace( index_type cutStart, size_type cutLength, const abstract_string_type& readable );
335 void Append( char_type c ) { Replace(mLength, 0, c); }
336 void Append( const char_type* data, size_type length = size_type(-1) ) { Replace(mLength, 0, data, length); }
337 void Append( const self_type& str ) { Replace(mLength, 0, str); }
338 void Append( const substring_tuple_type& tuple ) { Replace(mLength, 0, tuple); }
339 void Append( const abstract_string_type& readable ) { Replace(mLength, 0, readable); }
364 void Insert( char_type c, index_type pos ) { Replace(pos, 0, c); }
365 void Insert( const char_type* data, index_type pos, size_type length = size_type(-1) ) { Replace(pos, 0, data, length); }
366 void Insert( const self_type& str, index_type pos ) { Replace(pos, 0, str); }
367 void Insert( const substring_tuple_type& tuple, index_type pos ) { Replace(pos, 0, tuple); }
368 void Insert( const abstract_string_type& readable, index_type pos ) { Replace(pos, 0, readable); }
370 void Cut( index_type cutStart, size_type cutLength ) { Replace(cutStart, cutLength, char_traits::sEmptyBuffer, 0); }