OLD | NEW |
1 /* | 1 /* |
2 * (C) 1999 Lars Knoll (knoll@kde.org) | 2 * (C) 1999 Lars Knoll (knoll@kde.org) |
3 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2012, 2013 Apple Inc.
All rights reserved. | 3 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2012, 2013 Apple Inc.
All rights reserved. |
4 * | 4 * |
5 * This library is free software; you can redistribute it and/or | 5 * This library is free software; you can redistribute it and/or |
6 * modify it under the terms of the GNU Library General Public | 6 * modify it under the terms of the GNU Library General Public |
7 * License as published by the Free Software Foundation; either | 7 * License as published by the Free Software Foundation; either |
8 * version 2 of the License, or (at your option) any later version. | 8 * version 2 of the License, or (at your option) any later version. |
9 * | 9 * |
10 * This library is distributed in the hope that it will be useful, | 10 * This library is distributed in the hope that it will be useful, |
(...skipping 17 matching lines...) Expand all Loading... |
28 #include <wtf/text/ASCIIFastPath.h> | 28 #include <wtf/text/ASCIIFastPath.h> |
29 #include <wtf/text/StringImpl.h> | 29 #include <wtf/text/StringImpl.h> |
30 | 30 |
31 #ifdef __OBJC__ | 31 #ifdef __OBJC__ |
32 #include <objc/objc.h> | 32 #include <objc/objc.h> |
33 #endif | 33 #endif |
34 | 34 |
35 namespace WTF { | 35 namespace WTF { |
36 | 36 |
37 class CString; | 37 class CString; |
38 class MemoryObjectInfo; | |
39 struct StringHash; | 38 struct StringHash; |
40 | 39 |
41 // Declarations of string operations | 40 // Declarations of string operations |
42 | 41 |
43 WTF_EXPORT_STRING_API int charactersToIntStrict(const LChar*, size_t, bool* ok =
0, int base = 10); | 42 WTF_EXPORT_STRING_API int charactersToIntStrict(const LChar*, size_t, bool* ok =
0, int base = 10); |
44 WTF_EXPORT_STRING_API int charactersToIntStrict(const UChar*, size_t, bool* ok =
0, int base = 10); | 43 WTF_EXPORT_STRING_API int charactersToIntStrict(const UChar*, size_t, bool* ok =
0, int base = 10); |
45 WTF_EXPORT_STRING_API unsigned charactersToUIntStrict(const LChar*, size_t, bool
* ok = 0, int base = 10); | 44 WTF_EXPORT_STRING_API unsigned charactersToUIntStrict(const LChar*, size_t, bool
* ok = 0, int base = 10); |
46 WTF_EXPORT_STRING_API unsigned charactersToUIntStrict(const UChar*, size_t, bool
* ok = 0, int base = 10); | 45 WTF_EXPORT_STRING_API unsigned charactersToUIntStrict(const UChar*, size_t, bool
* ok = 0, int base = 10); |
47 int64_t charactersToInt64Strict(const LChar*, size_t, bool* ok = 0, int base = 1
0); | 46 int64_t charactersToInt64Strict(const LChar*, size_t, bool* ok = 0, int base = 1
0); |
48 int64_t charactersToInt64Strict(const UChar*, size_t, bool* ok = 0, int base = 1
0); | 47 int64_t charactersToInt64Strict(const UChar*, size_t, bool* ok = 0, int base = 1
0); |
(...skipping 624 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
673 using WTF::equal; | 672 using WTF::equal; |
674 using WTF::equalIgnoringCase; | 673 using WTF::equalIgnoringCase; |
675 using WTF::find; | 674 using WTF::find; |
676 using WTF::isAllSpecialCharacters; | 675 using WTF::isAllSpecialCharacters; |
677 using WTF::isSpaceOrNewline; | 676 using WTF::isSpaceOrNewline; |
678 using WTF::reverseFind; | 677 using WTF::reverseFind; |
679 using WTF::ASCIILiteral; | 678 using WTF::ASCIILiteral; |
680 | 679 |
681 #include <wtf/text/AtomicString.h> | 680 #include <wtf/text/AtomicString.h> |
682 #endif | 681 #endif |
OLD | NEW |