Lines Matching defs:readable
713 NS_HIDDEN_(void) Replace( index_type cutStart, size_type cutLength, const self_type& readable )
716 PRUint32 dataLen = NS_StringGetData(readable, &data);
722 NS_HIDDEN_(void) Append( const self_type& readable ) { Replace(size_type(-1), 0, readable); }
726 NS_HIDDEN_(self_type&) operator+=( const self_type& readable ) { Append(readable); return *this; }
730 NS_HIDDEN_(void) Insert( const self_type& readable, index_type pos ) { Replace(pos, 0, readable); }
795 NS_HIDDEN_(void) Replace( index_type cutStart, size_type cutLength, const self_type& readable )
798 PRUint32 dataLen = NS_CStringGetData(readable, &data);
804 NS_HIDDEN_(void) Append( const self_type& readable ) { Replace(size_type(-1), 0, readable); }
808 NS_HIDDEN_(self_type&) operator+=( const self_type& readable ) { Append(readable); return *this; }
812 NS_HIDDEN_(void) Insert( const self_type& readable, index_type pos ) { Replace(pos, 0, readable); }