| 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 14 matching lines...) Expand all Loading... |
| 25 // This file would be called String.h, but that conflicts with <string.h> | 25 // This file would be called String.h, but that conflicts with <string.h> |
| 26 // on systems without case-sensitive file systems. | 26 // on systems without case-sensitive file systems. |
| 27 #include <string> | 27 #include <string> |
| 28 | 28 |
| 29 #include "wtf/HashTableDeletedValueType.h" | 29 #include "wtf/HashTableDeletedValueType.h" |
| 30 #include "wtf/WTFExport.h" | 30 #include "wtf/WTFExport.h" |
| 31 #include "wtf/text/ASCIIFastPath.h" | 31 #include "wtf/text/ASCIIFastPath.h" |
| 32 #include "wtf/text/StringImpl.h" | 32 #include "wtf/text/StringImpl.h" |
| 33 #include "wtf/text/StringView.h" | 33 #include "wtf/text/StringView.h" |
| 34 | 34 |
| 35 #ifdef __OBJC__ | |
| 36 #include <objc/objc.h> | |
| 37 #endif | |
| 38 | |
| 39 namespace WTF { | 35 namespace WTF { |
| 40 | 36 |
| 41 class CString; | 37 class CString; |
| 42 struct StringHash; | 38 struct StringHash; |
| 43 | 39 |
| 44 // Declarations of string operations | 40 // Declarations of string operations |
| 45 | 41 |
| 46 WTF_EXPORT int charactersToIntStrict(const LChar*, size_t, bool* ok = 0, int bas
e = 10); | 42 WTF_EXPORT int charactersToIntStrict(const LChar*, size_t, bool* ok = 0, int bas
e = 10); |
| 47 WTF_EXPORT int charactersToIntStrict(const UChar*, size_t, bool* ok = 0, int bas
e = 10); | 43 WTF_EXPORT int charactersToIntStrict(const UChar*, size_t, bool* ok = 0, int bas
e = 10); |
| 48 WTF_EXPORT unsigned charactersToUIntStrict(const LChar*, size_t, bool* ok = 0, i
nt base = 10); | 44 WTF_EXPORT unsigned charactersToUIntStrict(const LChar*, size_t, bool* ok = 0, i
nt base = 10); |
| (...skipping 635 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 684 using WTF::charactersToFloat; | 680 using WTF::charactersToFloat; |
| 685 using WTF::equal; | 681 using WTF::equal; |
| 686 using WTF::equalIgnoringCase; | 682 using WTF::equalIgnoringCase; |
| 687 using WTF::find; | 683 using WTF::find; |
| 688 using WTF::isAllSpecialCharacters; | 684 using WTF::isAllSpecialCharacters; |
| 689 using WTF::isSpaceOrNewline; | 685 using WTF::isSpaceOrNewline; |
| 690 using WTF::reverseFind; | 686 using WTF::reverseFind; |
| 691 | 687 |
| 692 #include "wtf/text/AtomicString.h" | 688 #include "wtf/text/AtomicString.h" |
| 693 #endif // WTFString_h | 689 #endif // WTFString_h |
| OLD | NEW |