Lines Matching defs:char_type

47       typedef CharT char_type;
51 virtual int operator()( const char_type*, const char_type*, PRUint32 length ) const = 0;
52 virtual int operator()( char_type, char_type ) const = 0;
63 typedef CharT char_type;
67 virtual int operator()( const char_type*, const char_type*, PRUint32 length ) const;
68 virtual int operator()( char_type, char_type ) const;
107 typedef CharT char_type;
108 typedef nsCharTraits<char_type> char_traits;
118 typedef nsReadingIterator<char_type> const_iterator;
119 typedef nsWritingIterator<char_type> iterator;
197 NS_COM PRBool NS_FASTCALL Equals( const char_type* ) const;
198 NS_COM PRBool NS_FASTCALL Equals( const char_type*, const comparator_type& ) const;
293 NS_COM char_type NS_FASTCALL First() const;
294 NS_COM char_type NS_FASTCALL Last() const;
300 NS_COM size_type NS_FASTCALL CountChar( char_type ) const;
308 NS_COM PRInt32 NS_FASTCALL FindChar( char_type, index_type offset = 0 ) const;
362 NS_COM void NS_FASTCALL Assign( const char_type* data );
363 NS_COM void NS_FASTCALL Assign( const char_type* data, size_type length );
364 NS_COM void NS_FASTCALL Assign( char_type c );
387 self_type& operator=( const char_type* data ) { Assign(data); return *this; }
388 self_type& operator=( char_type c ) { Assign(c); return *this; }
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 );
422 self_type& operator+=( const char_type* data ) { Append(data); return *this; }
423 self_type& operator+=( char_type c ) { Append(c); return *this; }
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 );
487 char_type* mData;
494 nsTAString_CharT(char_type* data, size_type length, PRUint32 flags)
516 NS_COM size_type NS_FASTCALL GetReadableBuffer( const char_type **data ) const;
517 NS_COM size_type NS_FASTCALL GetWritableBuffer( char_type **data );
523 PRBool NS_FASTCALL IsDependentOn(const char_type *start, const char_type *end) const;