Searched defs:index_type (Results 1 - 3 of 3) sorted by relevance
/vbox/src/libs/xpcom18a4/xpcom/string/public/ |
H A D | nsTObsoleteAString.h | 117 typedef PRUint32 index_type; typedef in class:nsTObsoleteAString_CharT 141 virtual void Cut( index_type cutStart, size_type cutLength ) = 0; 153 virtual void do_InsertFromReadable( const abstract_string_type&, index_type ) = 0; 154 virtual void do_InsertFromElementPtr( const char_type*, index_type ) = 0; 155 virtual void do_InsertFromElementPtrLength( const char_type*, index_type, size_type ) = 0; 156 virtual void do_InsertFromElement( char_type, index_type ) = 0; 158 virtual void do_ReplaceFromReadable( index_type, size_type, const abstract_string_type& ) = 0;
|
H A D | nsTAString.h | 124 typedef PRUint32 index_type; typedef in class:nsTAString_CharT 308 NS_COM PRInt32 NS_FASTCALL FindChar( char_type, index_type offset = 0 ) const; 431 NS_COM void NS_FASTCALL Insert( const self_type& readable, index_type pos ); 432 NS_COM void NS_FASTCALL Insert( const substring_tuple_type& tuple, index_type pos ); 433 NS_COM void NS_FASTCALL Insert( const char_type* data, index_type pos ); 434 NS_COM void NS_FASTCALL Insert( const char_type* data, index_type pos, size_type length ); 435 NS_COM void NS_FASTCALL Insert( char_type c, index_type pos ); 442 NS_COM void NS_FASTCALL Cut( index_type cutStart, size_type cutLength ); 449 NS_COM void NS_FASTCALL Replace( index_type cutStart, size_type cutLength, const self_type& readable ); 450 NS_COM void NS_FASTCALL Replace( index_type cutStar [all...] |
H A D | nsStringAPI.h | 666 typedef PRUint32 index_type; typedef in class:nsAString_external 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 ) 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); } 748 typedef PRUint32 index_type; typedef in class:nsACString_external 787 NS_HIDDEN_(void) Replace( index_type cutStar [all...] |
Completed in 207 milliseconds