| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) |
| 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) | 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) |
| 4 * (C) 2001 Dirk Mueller ( mueller@kde.org ) | 4 * (C) 2001 Dirk Mueller ( mueller@kde.org ) |
| 5 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2013 Apple Inc. All | 5 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2013 Apple Inc. All |
| 6 * rights reserved. | 6 * rights reserved. |
| 7 * Copyright (C) 2006 Andrew Wellington (proton@wiretapped.net) | 7 * Copyright (C) 2006 Andrew Wellington (proton@wiretapped.net) |
| 8 * | 8 * |
| 9 * This library is free software; you can redistribute it and/or | 9 * This library is free software; you can redistribute it and/or |
| 10 * modify it under the terms of the GNU Library General Public | 10 * modify it under the terms of the GNU Library General Public |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 * Boston, MA 02110-1301, USA. | 22 * Boston, MA 02110-1301, USA. |
| 23 * | 23 * |
| 24 */ | 24 */ |
| 25 | 25 |
| 26 #include "wtf/text/StringImpl.h" | 26 #include "wtf/text/StringImpl.h" |
| 27 | 27 |
| 28 #include "wtf/DynamicAnnotations.h" | 28 #include "wtf/DynamicAnnotations.h" |
| 29 #include "wtf/LeakAnnotations.h" | 29 #include "wtf/LeakAnnotations.h" |
| 30 #include "wtf/PtrUtil.h" | 30 #include "wtf/PtrUtil.h" |
| 31 #include "wtf/StdLibExtras.h" | 31 #include "wtf/StdLibExtras.h" |
| 32 #include "wtf/allocator/PartitionAlloc.h" | |
| 33 #include "wtf/allocator/Partitions.h" | 32 #include "wtf/allocator/Partitions.h" |
| 34 #include "wtf/text/AtomicString.h" | 33 #include "wtf/text/AtomicString.h" |
| 35 #include "wtf/text/AtomicStringTable.h" | 34 #include "wtf/text/AtomicStringTable.h" |
| 36 #include "wtf/text/CharacterNames.h" | 35 #include "wtf/text/CharacterNames.h" |
| 37 #include "wtf/text/StringBuffer.h" | 36 #include "wtf/text/StringBuffer.h" |
| 38 #include "wtf/text/StringHash.h" | 37 #include "wtf/text/StringHash.h" |
| 39 #include "wtf/text/StringToNumber.h" | 38 #include "wtf/text/StringToNumber.h" |
| 40 #include <algorithm> | 39 #include <algorithm> |
| 41 #include <memory> | 40 #include <memory> |
| 42 | 41 |
| (...skipping 2123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2166 } else if (localeIdMatchesLang(localeIdentifier, "lt")) { | 2165 } else if (localeIdMatchesLang(localeIdentifier, "lt")) { |
| 2167 // TODO(rob.buis) implement upper-casing rules for lt | 2166 // TODO(rob.buis) implement upper-casing rules for lt |
| 2168 // like in StringImpl::upper(locale). | 2167 // like in StringImpl::upper(locale). |
| 2169 } | 2168 } |
| 2170 } | 2169 } |
| 2171 | 2170 |
| 2172 return toUpper(c); | 2171 return toUpper(c); |
| 2173 } | 2172 } |
| 2174 | 2173 |
| 2175 } // namespace WTF | 2174 } // namespace WTF |
| OLD | NEW |