|
Namespaces |
| namespace | WebCore |
Classes |
| struct | WebCore::HandlePageNode |
| struct | WebCore::HandleNode |
Defines |
| #define | CHECK_FOR_HANDLE_LEAKS 0 |
| #define | ALLOC_QCHAR_GOOD_SIZE(X) (X) |
| #define | ALLOC_CHAR_GOOD_SIZE(X) (X) |
| #define | ALLOC_CHAR(N) (char*)fastMalloc(N) |
| #define | REALLOC_CHAR(P, N) (char *)fastRealloc(P, N) |
| #define | DELETE_CHAR(P) fastFree(P) |
| #define | WEBCORE_ALLOCATE_CHARACTERS(N) (DeprecatedChar*)fastMalloc(sizeof(DeprecatedChar)*(N)) |
| #define | WEBCORE_REALLOCATE_CHARACTERS(P, N) (DeprecatedChar *)fastRealloc(P, sizeof(DeprecatedChar)*(N)) |
| #define | DELETE_QCHAR(P) fastFree(P) |
| #define | IS_ASCII_QCHAR(c) ((c).unicode() > 0 && (c).unicode() <= 0xff) |
Functions |
| | WebCore::COMPILE_ASSERT (sizeof(DeprecatedChar)==2, deprecated_char_is_2_bytes) static inline DeprecatedStringData **allocateHandle() |
| static void | WebCore::freeHandle (DeprecatedStringData **) |
| static int | WebCore::ucstrcmp (const DeprecatedString &as, const DeprecatedString &bs) |
| static bool | WebCore::equal (const DeprecatedChar *a, const char *b, int l) |
| static bool | WebCore::equalCaseInsensitive (const char *a, const char *b, int l) |
| static bool | WebCore::equalCaseInsensitive (const DeprecatedChar *a, const char *b, int l) |
| static bool | WebCore::equalCaseInsensitive (const DeprecatedChar *a, const DeprecatedChar *b, int l) |
| static bool | WebCore::equalCaseInsensitive (char c1, char c2) |
| static bool | WebCore::equalCaseInsensitive (DeprecatedChar c1, char c2) |
| static bool | WebCore::isCharacterAllowedInBase (DeprecatedChar c, int base) |
| template<typename IntegralType> |
| static IntegralType | WebCore::toIntegralType (const DeprecatedString &string, bool *ok, int base) |
| bool | WebCore::operator== (const DeprecatedString &s1, const DeprecatedString &s2) |
| bool | WebCore::operator== (const DeprecatedString &s1, const char *chs) |
| DeprecatedString | WebCore::operator+ (const DeprecatedString &qs1, const DeprecatedString &qs2) |
| DeprecatedString | WebCore::operator+ (const DeprecatedString &qs, const char *chs) |
| DeprecatedString | WebCore::operator+ (const DeprecatedString &qs, DeprecatedChar qc) |
| DeprecatedString | WebCore::operator+ (const DeprecatedString &qs, char ch) |
| DeprecatedString | WebCore::operator+ (const char *chs, const DeprecatedString &qs) |
| DeprecatedString | WebCore::operator+ (DeprecatedChar qc, const DeprecatedString &qs) |
| DeprecatedString | WebCore::operator+ (char ch, const DeprecatedString &qs) |
| bool | WebCore::equalIgnoringCase (const DeprecatedString &a, const DeprecatedString &b) |
Variables |
| static const int | WebCore::caseDelta = ('a' - 'A') |