Lines Matching defs:size_type

665   typedef PRUint32              size_type;
682 NS_HIDDEN_(size_type) Length() const
692 NS_HIDDEN_(void) Assign(const char_type* aData, size_type aLength = PR_UINT32_MAX)
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 )
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); }
729 NS_HIDDEN_(void) Insert( const char_type* data, index_type pos, size_type length = size_type(-1) ) { Replace(pos, 0, data, length); }
732 NS_HIDDEN_(void) Cut( index_type cutStart, size_type cutLength ) { Replace(cutStart, cutLength, nsnull, 0); }
747 typedef PRUint32 size_type;
764 NS_HIDDEN_(size_type) Length() const
774 NS_HIDDEN_(void) Assign(const char_type* aData, size_type aLength = PR_UINT32_MAX)
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 )
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); }
811 NS_HIDDEN_(void) Insert( const char_type* data, index_type pos, size_type length = size_type(-1) ) { Replace(pos, 0, data, length); }
814 NS_HIDDEN_(void) Cut( index_type cutStart, size_type cutLength ) { Replace(cutStart, cutLength, nsnull, 0); }