ClanLib  2.3.7
Public Types | Public Member Functions | Static Public Attributes | Protected Attributes | List of all members
CL_StringData8 Class Reference

String data class for 8 bit data. More...

#include <string_data8.h>

Inheritance diagram for CL_StringData8:
Inheritance graph
[legend]

Public Types

typedef char char_type
 
typedef const char * const_iterator
 
typedef char * iterator
 
typedef unsigned int size_type
 

Public Member Functions

 CL_StringData8 ()
 
 CL_StringData8 (const char *ptr, size_type length)
 Constructs a StringData8. More...
 
iterator begin ()
 Begin. More...
 
const_iterator begin () const
 Begin. More...
 
int compare (const CL_StringData8 &s) const
 Compare. More...
 
int compare (size_type pos, size_type n, const CL_StringData8 &s) const
 Compare. More...
 
int compare (size_type pos, size_type n, const CL_StringData8 &s, size_type pos1, size_type n1) const
 Compare. More...
 
int compare (const char *s) const
 Compare. More...
 
int compare (size_type pos, size_type n, const char *s, size_type len=npos) const
 Compare. More...
 
const char * data () const
 
char * data ()
 Data. More...
 
bool empty () const
 Empty. More...
 
iterator end ()
 End. More...
 
const_iterator end () const
 End. More...
 
size_type find (const CL_StringData8 &s, size_type pos=0) const
 Find. More...
 
size_type find (const char *s, size_type pos, size_type n) const
 Find. More...
 
size_type find (const char *s, size_type pos=0) const
 Find. More...
 
size_type find (char c, size_type pos=0) const
 Find. More...
 
size_type find_first_not_of (const CL_StringData8 &s, size_type pos=0) const
 Find first not of. More...
 
size_type find_first_not_of (const char *s, size_type pos, size_type n) const
 Find first not of. More...
 
size_type find_first_not_of (const char *s, size_type pos=0) const
 Find first not of. More...
 
size_type find_first_not_of (char c, size_type pos=0) const
 Find first not of. More...
 
size_type find_first_of (const CL_StringData8 &s, size_type pos=0) const
 Find first of. More...
 
size_type find_first_of (const char *s, size_type pos, size_type n) const
 Find first of. More...
 
size_type find_first_of (const char *s, size_type pos=0) const
 Find first of. More...
 
size_type find_first_of (char c, size_type pos=0) const
 Find first of. More...
 
size_type find_last_not_of (const CL_StringData8 &s, size_type pos=npos) const
 Find last not of. More...
 
size_type find_last_not_of (const char *s, size_type pos, size_type n) const
 Find last not of. More...
 
size_type find_last_not_of (const char *s, size_type pos=npos) const
 Find last not of. More...
 
size_type find_last_not_of (char c, size_type pos=npos) const
 Find last not of. More...
 
size_type find_last_of (const CL_StringData8 &s, size_type pos=npos) const
 Find last of. More...
 
size_type find_last_of (const char *s, size_type pos, size_type n) const
 Find last of. More...
 
size_type find_last_of (const char *s, size_type pos=npos) const
 Find last of. More...
 
size_type find_last_of (char c, size_type pos=npos) const
 Find last of. More...
 
size_type length () const
 Length. More...
 
 operator CL_StringRef8 () const
 Convert object to a string reference. More...
 
 operator std::string () const
 std::string More...
 
const char & operator[] (size_type n) const
 
char & operator[] (size_type n)
 
size_type rfind (const CL_StringData8 &s, size_type pos=npos) const
 Rfind. More...
 
size_type rfind (const char *s, size_type pos, size_type n) const
 Rfind. More...
 
size_type rfind (const char *s, size_type pos=npos) const
 Rfind. More...
 
size_type rfind (char c, size_type pos=npos) const
 Rfind. More...
 
size_type size () const
 Size. More...
 
CL_StringRef8 substr (size_type pos=0, size_type n=npos) const
 Substr. More...
 
size_type utf8_length () const
 

Static Public Attributes

static const size_type npos
 

Protected Attributes

size_type data_length
 
char * data_ptr
 

Detailed Description

String data class for 8 bit data.

Member Typedef Documentation

typedef const char* CL_StringData8::const_iterator
typedef char* CL_StringData8::iterator
typedef unsigned int CL_StringData8::size_type

Constructor & Destructor Documentation

CL_StringData8::CL_StringData8 ( )
CL_StringData8::CL_StringData8 ( const char *  ptr,
size_type  length 
)

Constructs a StringData8.

Parameters
ptr= Char Type
length= size_type

Member Function Documentation

iterator CL_StringData8::begin ( )
inline

Begin.

Returns
iterator

Referenced by CL_String8::erase(), and CL_String8::insert().

const_iterator CL_StringData8::begin ( ) const
inline

Begin.

Returns
const_iterator
int CL_StringData8::compare ( const CL_StringData8 s) const

Compare.

Parameters
s= String Data
Returns
int
int CL_StringData8::compare ( size_type  pos,
size_type  n,
const CL_StringData8 s 
) const

Compare.

Parameters
pos= size_type
n= size_type
s= String Data
Returns
int
int CL_StringData8::compare ( size_type  pos,
size_type  n,
const CL_StringData8 s,
size_type  pos1,
size_type  n1 
) const

Compare.

Parameters
pos= size_type
n= size_type
s= String Data
pos1= size_type
n1= size_type
Returns
int
int CL_StringData8::compare ( const char *  s) const

Compare.

Parameters
s= Char Type
Returns
int
int CL_StringData8::compare ( size_type  pos,
size_type  n,
const char *  s,
size_type  len = npos 
) const

Compare.

Parameters
pos= size_type
n= size_type
s= Char Type
len= size_type
Returns
int
const char* CL_StringData8::data ( ) const
inline

Referenced by CL_String8::insert().

char* CL_StringData8::data ( )
inline

Data.

Returns
Char Type
bool CL_StringData8::empty ( ) const
inline

Empty.

Returns
bool
iterator CL_StringData8::end ( )
inline

End.

Returns
iterator

Referenced by CL_String8::erase().

const_iterator CL_StringData8::end ( ) const
inline

End.

Returns
const_iterator
size_type CL_StringData8::find ( const CL_StringData8 s,
size_type  pos = 0 
) const

Find.

Parameters
s= String Data
pos= size_type
Returns
size_type
size_type CL_StringData8::find ( const char *  s,
size_type  pos,
size_type  n 
) const

Find.

Parameters
s= Char Type
pos= size_type
n= size_type
Returns
size_type
size_type CL_StringData8::find ( const char *  s,
size_type  pos = 0 
) const

Find.

Parameters
s= Char Type
pos= size_type
Returns
size_type
size_type CL_StringData8::find ( char  c,
size_type  pos = 0 
) const

Find.

Parameters
c= Char Type
pos= size_type
Returns
size_type
size_type CL_StringData8::find_first_not_of ( const CL_StringData8 s,
size_type  pos = 0 
) const

Find first not of.

Parameters
s= String Data
pos= size_type
Returns
size_type
size_type CL_StringData8::find_first_not_of ( const char *  s,
size_type  pos,
size_type  n 
) const

Find first not of.

Parameters
s= Char Type
pos= size_type
n= size_type
Returns
size_type
size_type CL_StringData8::find_first_not_of ( const char *  s,
size_type  pos = 0 
) const

Find first not of.

Parameters
s= Char Type
pos= size_type
Returns
size_type
size_type CL_StringData8::find_first_not_of ( char  c,
size_type  pos = 0 
) const

Find first not of.

Parameters
c= Char Type
pos= size_type
Returns
size_type
size_type CL_StringData8::find_first_of ( const CL_StringData8 s,
size_type  pos = 0 
) const

Find first of.

Parameters
s= String Data
pos= size_type
Returns
size_type
size_type CL_StringData8::find_first_of ( const char *  s,
size_type  pos,
size_type  n 
) const

Find first of.

Parameters
s= Char Type
pos= size_type
n= size_type
Returns
size_type
size_type CL_StringData8::find_first_of ( const char *  s,
size_type  pos = 0 
) const

Find first of.

Parameters
s= Char Type
pos= size_type
Returns
size_type
size_type CL_StringData8::find_first_of ( char  c,
size_type  pos = 0 
) const

Find first of.

Parameters
c= Char Type
pos= size_type
Returns
size_type
size_type CL_StringData8::find_last_not_of ( const CL_StringData8 s,
size_type  pos = npos 
) const

Find last not of.

Parameters
s= String Data
pos= size_type
Returns
size_type
size_type CL_StringData8::find_last_not_of ( const char *  s,
size_type  pos,
size_type  n 
) const

Find last not of.

Parameters
s= Char Type
pos= size_type
n= size_type
Returns
size_type
size_type CL_StringData8::find_last_not_of ( const char *  s,
size_type  pos = npos 
) const

Find last not of.

Parameters
s= Char Type
pos= size_type
Returns
size_type
size_type CL_StringData8::find_last_not_of ( char  c,
size_type  pos = npos 
) const

Find last not of.

Parameters
c= Char Type
pos= size_type
Returns
size_type
size_type CL_StringData8::find_last_of ( const CL_StringData8 s,
size_type  pos = npos 
) const

Find last of.

Parameters
s= String Data
pos= size_type
Returns
size_type
size_type CL_StringData8::find_last_of ( const char *  s,
size_type  pos,
size_type  n 
) const

Find last of.

Parameters
s= Char Type
pos= size_type
n= size_type
Returns
size_type
size_type CL_StringData8::find_last_of ( const char *  s,
size_type  pos = npos 
) const

Find last of.

Parameters
s= Char Type
pos= size_type
Returns
size_type
size_type CL_StringData8::find_last_of ( char  c,
size_type  pos = npos 
) const

Find last of.

Parameters
c= Char Type
pos= size_type
Returns
size_type
size_type CL_StringData8::length ( ) const
inline

Length.

Returns
size_type

Referenced by CL_String8::insert().

CL_StringData8::operator CL_StringRef8 ( ) const

Convert object to a string reference.

Returns
operator
CL_StringData8::operator std::string ( ) const

std::string

Returns
operator
const char& CL_StringData8::operator[] ( size_type  n) const
inline
char& CL_StringData8::operator[] ( size_type  n)
inline
size_type CL_StringData8::rfind ( const CL_StringData8 s,
size_type  pos = npos 
) const

Rfind.

Parameters
s= String Data
pos= size_type
Returns
size_type
size_type CL_StringData8::rfind ( const char *  s,
size_type  pos,
size_type  n 
) const

Rfind.

Parameters
s= Char Type
pos= size_type
n= size_type
Returns
size_type
size_type CL_StringData8::rfind ( const char *  s,
size_type  pos = npos 
) const

Rfind.

Parameters
s= Char Type
pos= size_type
Returns
size_type
size_type CL_StringData8::rfind ( char  c,
size_type  pos = npos 
) const

Rfind.

Parameters
c= Char Type
pos= size_type
Returns
size_type
size_type CL_StringData8::size ( ) const
inline

Size.

Returns
size_type
CL_StringRef8 CL_StringData8::substr ( size_type  pos = 0,
size_type  n = npos 
) const

Substr.

Parameters
pos= size_type
n= size_type
Returns
Reference Class
size_type CL_StringData8::utf8_length ( ) const

Member Data Documentation

size_type CL_StringData8::data_length
mutableprotected
char* CL_StringData8::data_ptr
mutableprotected
const size_type CL_StringData8::npos
static

The documentation for this class was generated from the following file: