Lines Matching refs:Replace

705   NS_HIDDEN_(void) Replace( index_type cutStart, size_type cutLength, const char_type* data, size_type length = size_type(-1) )
709 NS_HIDDEN_(void) Replace( index_type cutStart, size_type cutLength, char_type c )
711 Replace(cutStart, cutLength, &c, 1);
713 NS_HIDDEN_(void) Replace( index_type cutStart, size_type cutLength, const self_type& readable )
720 NS_HIDDEN_(void) Append( char_type c ) { Replace(size_type(-1), 0, c); }
721 NS_HIDDEN_(void) Append( const char_type* data, size_type length = size_type(-1) ) { Replace(size_type(-1), 0, data, length); }
722 NS_HIDDEN_(void) Append( const self_type& readable ) { Replace(size_type(-1), 0, readable); }
728 NS_HIDDEN_(void) Insert( char_type c, index_type pos ) { Replace(pos, 0, c); }
729 NS_HIDDEN_(void) Insert( const char_type* data, index_type pos, size_type length = size_type(-1) ) { Replace(pos, 0, data, length); }
730 NS_HIDDEN_(void) Insert( const self_type& readable, index_type pos ) { Replace(pos, 0, readable); }
732 NS_HIDDEN_(void) Cut( index_type cutStart, size_type cutLength ) { Replace(cutStart, cutLength, nsnull, 0); }
787 NS_HIDDEN_(void) Replace( index_type cutStart, size_type cutLength, const char_type* data, size_type length = size_type(-1) )
791 NS_HIDDEN_(void) Replace( index_type cutStart, size_type cutLength, char_type c )
793 Replace(cutStart, cutLength, &c, 1);
795 NS_HIDDEN_(void) Replace( index_type cutStart, size_type cutLength, const self_type& readable )
802 NS_HIDDEN_(void) Append( char_type c ) { Replace(size_type(-1), 0, c); }
803 NS_HIDDEN_(void) Append( const char_type* data, size_type length = size_type(-1) ) { Replace(size_type(-1), 0, data, length); }
804 NS_HIDDEN_(void) Append( const self_type& readable ) { Replace(size_type(-1), 0, readable); }
810 NS_HIDDEN_(void) Insert( char_type c, index_type pos ) { Replace(pos, 0, c); }
811 NS_HIDDEN_(void) Insert( const char_type* data, index_type pos, size_type length = size_type(-1) ) { Replace(pos, 0, data, length); }
812 NS_HIDDEN_(void) Insert( const self_type& readable, index_type pos ) { Replace(pos, 0, readable); }
814 NS_HIDDEN_(void) Cut( index_type cutStart, size_type cutLength ) { Replace(cutStart, cutLength, nsnull, 0); }