|
constexpr | String () |
|
| String (const char *str) |
|
| String (const char *str, uint32 len) |
|
| String (const char *beginP, const char *endP) |
|
| String (const String &str) |
|
| String (String &&str) |
|
| String (char c) |
|
| String (const U32String &str, CodePage page=kUtf8) |
|
String & | operator= (const char *str) |
|
String & | operator= (const String &str) |
|
String & | operator= (String &&str) |
|
String & | operator= (char c) |
|
String & | operator+= (const char *str) |
|
String & | operator+= (const String &str) |
|
String & | operator+= (char c) |
|
bool | equalsIgnoreCase (const String &x) const |
|
int | compareToIgnoreCase (const String &x) const |
|
bool | equalsIgnoreCase (const char *x) const |
|
int | compareToIgnoreCase (const char *x) const |
|
int | compareDictionary (const String &x) const |
|
int | compareDictionary (const char *x) const |
|
bool | hasSuffix (const String &x) const |
|
bool | hasSuffix (const char *x) const |
|
bool | hasSuffixIgnoreCase (const String &x) const |
|
bool | hasSuffixIgnoreCase (const char *x) const |
|
bool | hasPrefix (const String &x) const |
|
bool | hasPrefix (const char *x) const |
|
bool | hasPrefixIgnoreCase (const String &x) const |
|
bool | hasPrefixIgnoreCase (const char *x) const |
|
bool | contains (const String &x) const |
|
bool | contains (const char *x) const |
|
bool | matchString (const char *pat, bool ignoreCase=false, const char *wildcardExclusions=NULL) const |
|
bool | matchString (const String &pat, bool ignoreCase=false, const char *wildcardExclusions=NULL) const |
|
String | substr (size_t pos=0, size_t len=npos) const |
|
String | forEachLine (String(*func)(const String, va_list args),...) const |
|
U32String | decode (CodePage page=kUtf8) const |
|
constexpr | BaseString () |
|
| BaseString (const BaseString &str) |
|
| BaseString (BaseString &&str) |
|
| BaseString (const value_type *str) |
|
| BaseString (const value_type *str, uint32 len) |
|
| BaseString (const value_type *beginP, const value_type *endP) |
|
bool | operator== (const BaseString &x) const |
|
bool | operator== (const value_type *x) const |
|
bool | operator!= (const BaseString &x) const |
|
bool | operator!= (const value_type *x) const |
|
bool | operator< (const BaseString &x) const |
|
bool | operator< (const value_type *x) const |
|
bool | operator<= (const BaseString &x) const |
|
bool | operator<= (const value_type *x) const |
|
bool | operator> (const BaseString &x) const |
|
bool | operator> (const value_type *x) const |
|
bool | operator>= (const BaseString &x) const |
|
bool | operator>= (const value_type *x) const |
|
bool | equals (const BaseString &x) const |
|
bool | equals (const value_type *x) const |
|
bool | equalsC (const char *x) const |
|
int | compareTo (const BaseString &x) const |
|
int | compareTo (const value_type *x) const |
|
int | compareToC (const char *x) const |
|
void | setChar (value_type c, uint32 p) |
|
void | deleteChar (uint32 p) |
|
void | deleteLastChar () |
|
void | erase (uint32 p, uint32 len=npos) |
|
iterator | erase (iterator it) |
|
void | chop (uint32 len=1) |
|
void | clear () |
|
iterator | begin () |
|
const_iterator | begin () const |
|
iterator | end () |
|
const_iterator | end () const |
|
const value_type * | c_str () const |
|
uint | size () const |
|
bool | empty () const |
|
value_type | firstChar () const |
|
value_type | lastChar () const |
|
value_type | operator[] (int idx) const |
|
bool | contains (const BaseString &otherString) const |
|
bool | contains (value_type x) const |
|
void | insertChar (value_type c, uint32 p) |
|
void | insertString (const value_type *s, uint32 p) |
|
void | insertString (const BaseString &s, uint32 p) |
|
uint32 | find (value_type x, uint32 pos=0) const |
|
size_t | find (const value_type *s, uint32 pos=0) const |
|
uint32 | find (const BaseString &str, uint32 pos=0) const |
|
size_t | rfind (const value_type *s) const |
|
size_t | rfind (const BaseString &s) const |
|
size_t | rfind (value_type c, size_t pos=npos) const |
|
size_t | findFirstOf (value_type c, size_t pos=0) const |
|
size_t | findFirstOf (const value_type *chars, size_t pos=0) const |
|
size_t | findFirstOf (const BaseString &chars, size_t pos=0) const |
|
size_t | findLastOf (value_type c, size_t pos=npos) const |
|
size_t | findLastOf (const value_type *chars, size_t pos=npos) const |
|
size_t | findLastOf (const BaseString &chars, size_t pos=npos) const |
|
size_t | findFirstNotOf (value_type c, size_t pos=0) const |
|
size_t | findFirstNotOf (const value_type *chars, size_t pos=0) const |
|
size_t | findFirstNotOf (const BaseString &chars, size_t pos=0) const |
|
size_t | findLastNotOf (value_type c) const |
|
size_t | findLastNotOf (const value_type *chars) const |
|
size_t | findLastNotOf (const BaseString &chars) const |
|
void | replace (value_type from, value_type to) |
|
void | append (const value_type *begin, const value_type *end) |
|
void | wordWrap (const uint32 maxLength) |
|
uint64 | asUint64 () const |
|
uint64 | asUint64Ext () const |
|
void | toLowercase () |
|
void | toUppercase () |
|
void | trim () |
|
uint | hash () const |
|
void | replace (uint32 pos, uint32 count, const BaseString &str) |
|
void | replace (uint32 pos, uint32 count, const value_type *str) |
|
void | replace (iterator begin, iterator end, const BaseString &str) |
|
void | replace (iterator begin, iterator end, const value_type *str) |
|
void | replace (uint32 posOri, uint32 countOri, const BaseString &str, uint32 posDest, uint32 countDest) |
|
void | replace (uint32 posOri, uint32 countOri, const value_type *str, uint32 posDest, uint32 countDest) |
|
|
StringEncodingResult | encodeUTF8 (const U32String &src, char errorChar) |
|
StringEncodingResult | encodeWindows932 (const U32String &src, char errorChar) |
|
StringEncodingResult | encodeWindows936 (const U32String &src, char errorChar) |
|
StringEncodingResult | encodeWindows949 (const U32String &src, char errorChar) |
|
StringEncodingResult | encodeWindows950 (const U32String &src, bool translit, char errorChar) |
|
StringEncodingResult | encodeJohab (const U32String &src, char errorChar) |
|
StringEncodingResult | encodeOneByte (const U32String &src, CodePage page, bool translit, char errorChar) |
|
StringEncodingResult | encodeInternal (const U32String &src, CodePage page, char errorChar) |
|
StringEncodingResult | translitChar (U32String::value_type point, char errorChar) |
|
bool | isStorageIntern () const |
|
void | makeUnique () |
|
void | ensureCapacity (uint32 new_size, bool keep_old) |
|
void | incRefCount () const |
|
void | decRefCount (int *oldRefCount) |
|
void | initWithValueTypeStr (const value_type *str, uint32 len) |
|
void | assignInsert (const value_type *str, uint32 p) |
|
void | assignInsert (value_type c, uint32 p) |
|
void | assignInsert (const BaseString &str, uint32 p) |
|
void | assignAppend (const value_type *str) |
|
void | assignAppend (value_type c) |
|
void | assignAppend (const BaseString &str) |
|
void | assign (const BaseString &str) |
|
void | assign (BaseString &&str) |
|
void | assign (value_type c) |
|
void | assign (const value_type *str) |
|
bool | pointerInOwnBuffer (const value_type *str) const |
|
uint | getUnsignedValue (uint pos) const |
|
void | toCase (int(*caseChangeFunc)(int)) |
|
Simple string class for ScummVM. Provides automatic storage management, and overloads several operators in a 'natural' fashion, mimicking the std::string class. Even provides simple iterators.
This class tries to avoid allocating lots of small blocks on the heap, since that is inefficient on several platforms supported by ScummVM. Instead, small strings are stored 'inside' the string object (i.e. on the stack, for stack allocated objects), and only for strings exceeding a certain length do we allocate a buffer on the heap.
The presence of \0 characters in the string will cause undefined behavior in some operations.