|
| CStr () |
|
| CStr (const char *cs) |
|
| CStr (const CStr &ws) |
|
| CStr (const MaxSDK::Util::MaxString &ws) |
|
| CStr (const MaxSDK::Util::MaxStringCast< char > &ws) |
|
| CStr (const QString &qstring) |
| Conversion constructor, from QString. More...
|
|
| ~CStr () |
|
char * | dataForWrite (size_t nchars=(size_t) -1) |
| Returns a pointer to this string which can be written to with up to 'nchars' characters. More...
|
|
const char * | data () const |
|
| operator const char * () const |
|
| operator QString () const |
| Conversion operator to QString. More...
|
|
void | Resize (int nchars) |
|
int | Length () const |
|
int | length () const |
|
int | ByteCount () const |
|
int | LanguageCharacterCount () const |
|
size_t | AllocatedChars () const |
|
bool | isNull () const |
|
CStr & | operator= (const CStr &cs) |
|
CStr & | operator= (const MaxSDK::Util::MaxString &mstr) |
|
CStr & | operator= (const MaxSDK::Util::MaxStringCast< char > &mstr) |
|
CStr & | operator= (const char *cs) |
|
CStr | operator+ (const CStr &cs) const |
|
CStr & | operator+= (const CStr &cs) |
|
CStr & | Append (const CStr &cs) |
|
CStr & | append (const CStr &cs) |
|
CStr & | remove (int pos) |
|
CStr & | remove (int pos, int N) |
|
CStr | Substr (int start, int nchars) const |
|
CStr | MultiByteCharacterSubString (int firstCharacterIndex, int numberOfMBCharacters) const |
|
int | FindMultiByteCharacterFirstByteIndex (int characterIndex) const |
|
int | FindMultiByteCharacterLastByteIndex (int characterIndex) const |
|
char | operator[] (int i) const |
| Returns the nth character of this string. More...
|
|
int | first (char c) const |
|
int | last (char c) const |
|
bool | operator== (const CStr &cs) const |
|
bool | operator== (char c) const |
|
bool | operator!= (const CStr &cs) const |
|
bool | operator!= (char c) const |
|
bool | operator< (const CStr &cs) const |
|
bool | operator<= (const CStr &ws) const |
|
bool | operator> (const CStr &ws) const |
|
bool | operator>= (const CStr &ws) const |
|
void | toUpper () |
|
void | toLower () |
|
int | printf (const char *format,...) |
| Write a formatted string into this CStr. More...
|
|
int | printf_l (const char *format, const _locale_t theLocale,...) |
| Write a formatted string into this CStr using specified locale. More...
|
|
int | vprintf (const char *format, va_list args) |
| Write a formatted string into this CStr. More...
|
|
int | vprintf_l (const char *format, const _locale_t theLocale, va_list args) |
| Write a formatted string into this CStr using specified locale. More...
|
|
wchar_t * | ToBSTR () const |
|
MaxSDK::Util::MaxStringCastCP | ToCP (UINT cp, size_t *length=NULL) const |
|
MaxSDK::Util::MaxStringCast< char > | ToACP (size_t *length=NULL) const |
|
MaxSDK::Util::MaxStringCastUTF8 | ToUTF8 (size_t *length=NULL) const |
|
MaxSDK::Util::MaxStringCast< WCHAR > | ToOLESTR (size_t *length=NULL) const |
|
MaxSDK::Util::MaxStringCast< WCHAR > | ToUTF16 (size_t *length=NULL) const |
|
MaxSDK::Util::MaxStringCast< unsigned int > | ToUTF32 (size_t *length=NULL) const |
|
MaxSDK::Util::MaxString | ToMaxString () const |
|
void | ToMaxString (MaxSDK::Util::MaxString &) const |
|
CStr | ToCStr () const |
|
WStr | ToWStr () const |
|
MaxSDK::Util::MaxStringCast< wchar_t > | ToMCHAR (size_t *length=NULL) const |
|
WStr | ToMSTR () const |
|
bool | EndsWith (const CStr &s, bool caseSensitive=true) |
| Returns true if the string ends with s; otherwise returns false. More...
|
|
bool | EndsWith (char c, bool caseSensitive=true) |
| Returns true if the string ends with c; otherwise returns false. More...
|
|
bool | StartsWith (const CStr &s, bool caseSensitive=true) |
| Returns true if the string starts with s; otherwise returns false. More...
|
|
bool | StartsWith (char c, bool caseSensitive=true) |
| Returns true if the string starts with c; otherwise returns false. More...
|
|
size_t | NumberOfLines () const |
| Returns the number of line feeds inside a string. More...
|
|
size_t | Replace (const char *pFind, const char *pReplaceBy, bool firstOnly=false, size_t startPosition=0) |
| Replaces one substring with another in this string. More...
|
|
|
static CStr | FromBSTR (const wchar_t *string, size_t length=(size_t) -1) |
|
static CStr | FromCP (UINT cp, const char *string, size_t length=(size_t) -1) |
|
static CStr | FromACP (const char *string, size_t length=(size_t) -1) |
|
static CStr | FromUTF8 (const char *string, size_t length=(size_t) -1) |
|
static CStr | FromOLESTR (const wchar_t *string, size_t length=(size_t) -1) |
|
static CStr | FromUTF16 (const wchar_t *string, size_t length=(size_t) -1) |
|
static CStr | FromUTF32 (const unsigned int *string, size_t length=(size_t) -1) |
|
static CStr | FromMaxString (MaxSDK::Util::MaxString &string) |
|
static CStr | FromCStr (const CStr &string) |
|
static CStr | FromWStr (const WStr &string) |
|
static CStr | FromMCHAR (const wchar_t *string, size_t length=(size_t) -1) |
|
static CStr | FromMSTR (const WStr &string) |
|
static UtilExport void * | operator new (size_t size) |
| Standard new operator used to allocate objects If there is insufficient memory, an exception will be thrown. More...
|
|
static UtilExport void * | operator new (size_t size, const std::nothrow_t &e) |
| Standard new operator used to allocate objects if there is insufficient memory, NULL will be returned. More...
|
|
static UtilExport void * | operator new (size_t size, const char *filename, int line) |
| New operator used to allocate objects that takes the filename and line number where the new was called If there is insufficient memory, an exception will be thrown. More...
|
|
static UtilExport void * | operator new (size_t size, int block_type, const char *filename, int line) |
| New operator used to allocate objects that takes the type of memory, filename and line number where the new was called If there is insufficient memory, an exception will be thrown. More...
|
|
static UtilExport void * | operator new (size_t size, const std::nothrow_t &e, const char *filename, int line) |
| New operator used to allocate objects that takes the filename and line number where the new was called If there is insufficient memory, NULL will be returned. More...
|
|
static UtilExport void * | operator new (size_t size, unsigned long flags) |
| New operator used to allocate objects that takes extra flags to specify special operations If there is insufficient memory, an exception will be thrown. More...
|
|
static UtilExport void * | operator new (size_t size, const std::nothrow_t &e, unsigned long flags) |
| New operator used to allocate objects that takes extra flags to specify special operations If there is insufficient memory, NULL will be returned. More...
|
|
static UtilExport void * | operator new[] (size_t size) |
| New operator used to allocate arrays of objects If there is insufficient memory, an exception will be thrown. More...
|
|
static UtilExport void * | operator new[] (size_t size, const std::nothrow_t &e) |
| New operator used to allocate arrays of objects If there is insufficient memory, NULL will be returned. More...
|
|
static UtilExport void * | operator new[] (size_t size, const char *filename, int line) |
| New operator used to allocate arrays of objects If there is insufficient memory, an exception will be thrown. More...
|
|
static UtilExport void * | operator new[] (size_t size, int block_type, const char *filename, int line) |
| New operator used to allocate arrays of objects. More...
|
|
static UtilExport void * | operator new[] (size_t size, const std::nothrow_t &e, const char *filename, int line) |
| New operator used to allocate arrays of objects If there is insufficient memory, NULL will be returned. More...
|
|
static UtilExport void * | operator new[] (size_t size, unsigned long flags) |
| New operator used to allocate arrays of objects If there is insufficient memory, an exception will be thrown. More...
|
|
static UtilExport void * | operator new[] (size_t size, const std::nothrow_t &e, unsigned long flags) |
| New operator used to allocate arrays of objects If there is insufficient memory, NULL will be returned. More...
|
|
static UtilExport void | operator delete (void *ptr) |
| Standard delete operator used to deallocate an object If the pointer is invalid, an exception will be thrown. More...
|
|
static UtilExport void | operator delete (void *ptr, const std::nothrow_t &e) |
| Standard delete operator used to deallocate an object If the pointer is invalid, nothing will happen. More...
|
|
static UtilExport void | operator delete (void *ptr, const char *filename, int line) |
| Delete operator used to deallocate an object that takes the filename and line number where the delete was called If the pointer is invalid, an exception will be thrown. More...
|
|
static UtilExport void | operator delete (void *ptr, int block_type, const char *filename, int line) |
| Delete operator used to deallocate an object that takes the type of memory, filename and line number where the delete was called If the pointer is invalid, an exception will be thrown. More...
|
|
static UtilExport void | operator delete (void *ptr, const std::nothrow_t &e, const char *filename, int line) |
| Delete operator used to deallocate an object that takes the filename and line number where the delete was called If the pointer is invalid, nothing will happen. More...
|
|
static UtilExport void | operator delete (void *ptr, unsigned long flags) |
| Delete operator used to deallocate an object that takes extra flags to specify special operations If the pointer is invalid, an exception will be thrown. More...
|
|
static UtilExport void | operator delete (void *ptr, const std::nothrow_t &e, unsigned long flags) |
| Delete operator used to deallocate an object that takes extra flags to specify special operations If the pointer is invalid, nothing will happen. More...
|
|
static UtilExport void | operator delete[] (void *ptr) |
| Standard delete operator used to deallocate an array of objects If the pointer is invalid, an exception will be thrown. More...
|
|
static UtilExport void | operator delete[] (void *ptr, const std::nothrow_t &e) |
| Standard delete operator used to deallocate an array of objects If the pointer is invalid, nothing will happen. More...
|
|
static UtilExport void | operator delete[] (void *ptr, const char *filename, int line) |
| Delete operator used to deallocate an array of objects that takes the filename and line number where the delete was called If the pointer is invalid, an exception will be thrown. More...
|
|
static UtilExport void | operator delete[] (void *ptr, int block_type, const char *filename, int line) |
| Delete operator used to deallocate an array of objects that takes the type of memory, filename and line number where the delete was called If the pointer is invalid, an exception will be thrown. More...
|
|
static UtilExport void | operator delete[] (void *ptr, const std::nothrow_t &e, const char *filename, int line) |
| Delete operator used to deallocate an array of objects that takes the filename and line number where the delete was called If the pointer is invalid, nothing will happen. More...
|
|
static UtilExport void | operator delete[] (void *ptr, unsigned long flags) |
| Delete operator used to deallocate an array of objects that takes extra flags to specify special operations If the pointer is invalid, an exception will be thrown. More...
|
|
static UtilExport void | operator delete[] (void *ptr, const std::nothrow_t &e, unsigned long flags) |
| Delete operator used to deallocate an array of objects that takes extra flags to specify special operations If the pointer is invalid, an exception will be thrown. More...
|
|
static UtilExport void * | operator new (size_t size, void *placement_ptr) |
| Placement new operator. More...
|
|
static UtilExport void | operator delete (void *ptr, void *placement_ptr) |
| Placement delete operator. More...
|
|
static UtilExport void * | aligned_malloc (size_t size, size_t alignment) |
| Allocates memory on a specified alignment boundary. More...
|
|
static UtilExport void * | aligned_realloc (void *ptr, size_t size, size_t alignment) |
| Reallocates memory on a specified alignment boundary. More...
|
|
static UtilExport void | aligned_free (void *ptr) |
| Frees a block of memory that was allocated with aligned_malloc/aligned_realloc. More...
|
|