Lines Matching refs:Append
329 * 2) to prepare to |Append| or move characters around.
393 * |Append|, |operator+=| are used to add characters to the end of this string.
396 NS_COM void NS_FASTCALL Append( const self_type& readable );
397 NS_COM void NS_FASTCALL Append( const substring_tuple_type& tuple );
398 NS_COM void NS_FASTCALL Append( const char_type* data );
399 NS_COM void NS_FASTCALL Append( const char_type* data, size_type length );
400 NS_COM void NS_FASTCALL Append( char_type c );
420 self_type& operator+=( const self_type& readable ) { Append(readable); return *this; }
421 self_type& operator+=( const substring_tuple_type& tuple ) { Append(tuple); return *this; }
422 self_type& operator+=( const char_type* data ) { Append(data); return *this; }
423 self_type& operator+=( char_type c ) { Append(c); return *this; }
575 void Append ( incompatible_char_type );