|
Public Member Functions |
| | DeprecatedString () |
| | DeprecatedString (DeprecatedChar) |
| | DeprecatedString (const DeprecatedChar *, unsigned) |
| | DeprecatedString (const char *) |
| | DeprecatedString (const char *, int len) |
| | DeprecatedString (const DeprecatedString &) |
| DeprecatedString & | operator= (const DeprecatedString &) |
| | ~DeprecatedString () |
| DeprecatedString & | operator= (char) |
| DeprecatedString & | operator= (DeprecatedChar) |
| DeprecatedString & | operator= (const char *) |
| DeprecatedString & | operator= (const DeprecatedCString &) |
| unsigned | length () const |
| const DeprecatedChar * | unicode () const |
| const DeprecatedChar * | stableUnicode () |
| const char * | latin1 () const |
| const char * | ascii () const |
| bool | isAllASCII () const |
| bool | isAllLatin1 () const |
| bool | hasFastLatin1 () const |
| void | copyLatin1 (char *buffer, unsigned position=0, unsigned length=0xffffffff) const |
| DeprecatedCString | utf8 () const |
| DeprecatedCString | utf8 (int &length) const |
| bool | isNull () const |
| bool | isEmpty () const |
| DeprecatedChar | at (unsigned) const |
| int | compare (const DeprecatedString &) const |
| int | compare (const char *) const |
| bool | startsWith (const DeprecatedString &) const |
| bool | startsWith (const char *) const |
| bool | startsWith (const char *, bool caseSensitive) const |
| int | find (char, int index=0) const |
| int | find (DeprecatedChar, int index=0) const |
| int | find (const char *, int index=0, bool cs=true) const |
| int | find (const DeprecatedString &, int index=0, bool cs=true) const |
| int | find (const RegularExpression &, int index=0) const |
| int | findRev (char, int index=-1) const |
| int | findRev (const DeprecatedString &str, int index, bool cs=true) const |
| int | findRev (const char *, int index=-1) const |
| int | contains (char) const |
| int | contains (const char *, bool cs=true) const |
| int | contains (const DeprecatedString &, bool cs=true) const |
| int | contains (DeprecatedChar c, bool cs=true) const |
| bool | endsWith (const DeprecatedString &) const |
| short | toShort (bool *ok=0, int base=10) const |
| unsigned short | toUShort (bool *ok=0, int base=10) const |
| int | toInt (bool *ok=0, int base=10) const |
| int64_t | toInt64 (bool *ok=0, int base=10) const |
| unsigned | toUInt (bool *ok=0, int base=10) const |
| uint64_t | toUInt64 (bool *ok=0, int base=10) const |
| double | toDouble (bool *ok=0) const |
| float | toFloat (bool *ok=0) const |
| DeprecatedString | left (unsigned) const |
| DeprecatedString | right (unsigned) const |
| DeprecatedString | mid (unsigned, unsigned len=0xffffffff) const |
| DeprecatedString | copy () const |
| DeprecatedString | lower () const |
| DeprecatedString | stripWhiteSpace () const |
| DeprecatedString | simplifyWhiteSpace () const |
| DeprecatedString & | setUnicode (const DeprecatedChar *, unsigned) |
| DeprecatedString & | setLatin1 (const char *, int len=-1) |
| DeprecatedString & | setNum (short) |
| DeprecatedString & | setNum (unsigned short) |
| DeprecatedString & | setNum (int) |
| DeprecatedString & | setNum (unsigned) |
| DeprecatedString & | setNum (long) |
| DeprecatedString & | setNum (unsigned long) |
| DeprecatedString & | setNum (double) |
| DeprecatedString & | format (const char *,...) |
| DeprecatedString & | append (const DeprecatedString &) |
| DeprecatedString & | append (DeprecatedChar) |
| DeprecatedString & | append (char) |
| DeprecatedString & | insert (unsigned, const DeprecatedString &) |
| DeprecatedString & | insert (unsigned, DeprecatedChar) |
| DeprecatedString & | insert (unsigned, char) |
| DeprecatedString & | insert (unsigned index, const char *insertChars, unsigned insertLength) |
| DeprecatedString & | prepend (const DeprecatedString &) |
| DeprecatedString & | remove (unsigned, unsigned) |
| DeprecatedString & | remove (const DeprecatedChar &c) |
| DeprecatedString & | remove (const DeprecatedString &s) |
| DeprecatedString & | replace (unsigned index, unsigned len, const DeprecatedString &s) |
| DeprecatedString & | replace (char, const DeprecatedString &) |
| DeprecatedString & | replace (DeprecatedChar, const DeprecatedString &) |
| DeprecatedString & | replace (const DeprecatedString &, const DeprecatedString &) |
| DeprecatedString & | replace (const RegularExpression &, const DeprecatedString &) |
| DeprecatedString & | replace (DeprecatedChar, DeprecatedChar) |
| DeprecatedString & | append (const DeprecatedChar *, unsigned length) |
| DeprecatedString & | append (const char *, unsigned length) |
| DeprecatedString & | insert (unsigned position, const DeprecatedChar *, unsigned length) |
| DeprecatedString & | prepend (const DeprecatedChar *, unsigned length) |
| void | fill (DeprecatedChar, int len=-1) |
| void | truncate (unsigned) |
| void | reserve (unsigned) |
| bool | operator! () const |
| const DeprecatedChar | operator[] (int) const |
| DeprecatedString & | operator+= (const DeprecatedString &s) |
| DeprecatedString & | operator+= (DeprecatedChar c) |
| DeprecatedString & | operator+= (char c) |
Static Public Member Functions |
| static DeprecatedString | fromLatin1 (const char *) |
| static DeprecatedString | fromLatin1 (const char *, int len) |
| static DeprecatedString | fromUtf8 (const char *) |
| static DeprecatedString | fromUtf8 (const char *, int len) |
| static DeprecatedString | number (int) |
| static DeprecatedString | number (unsigned) |
| static DeprecatedString | number (long) |
| static DeprecatedString | number (unsigned long) |
| static DeprecatedString | number (double) |
Static Public Attributes |
| static const char *const | null = 0 |
Friends |
| class | DeprecatedConstString |
| class | QGDict |
| struct | DeprecatedStringData |
| bool | operator== (const DeprecatedString &, const DeprecatedString &) |
| bool | operator== (const DeprecatedString &, const char *) |
| bool | equalIgnoringCase (const DeprecatedString &, const DeprecatedString &) |