| 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 r
      ights reserved. | 5  * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2013 Apple Inc. All r
      ights reserved. | 
| 6  * Copyright (C) 2006 Andrew Wellington (proton@wiretapped.net) | 6  * Copyright (C) 2006 Andrew Wellington (proton@wiretapped.net) | 
| 7  * | 7  * | 
| 8  * This library is free software; you can redistribute it and/or | 8  * This library is free software; you can redistribute it and/or | 
| 9  * modify it under the terms of the GNU Library General Public | 9  * modify it under the terms of the GNU Library General Public | 
| 10  * License as published by the Free Software Foundation; either | 10  * License as published by the Free Software Foundation; either | 
| (...skipping 2076 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 2087 } | 2087 } | 
| 2088 | 2088 | 
| 2089 size_t StringImpl::sizeInBytes() const | 2089 size_t StringImpl::sizeInBytes() const | 
| 2090 { | 2090 { | 
| 2091     size_t size = length(); | 2091     size_t size = length(); | 
| 2092     if (!is8Bit()) | 2092     if (!is8Bit()) | 
| 2093         size *= 2; | 2093         size *= 2; | 
| 2094     return size + sizeof(*this); | 2094     return size + sizeof(*this); | 
| 2095 } | 2095 } | 
| 2096 | 2096 | 
|  | 2097 UChar32 toUpper(UChar32 c, const AtomicString& localeIdentifier) | 
|  | 2098 { | 
|  | 2099     if (!localeIdentifier.isNull()) { | 
|  | 2100         if (localeIdMatchesLang(localeIdentifier, "tr") || localeIdMatchesLang(l
      ocaleIdentifier, "az")) { | 
|  | 2101             if (c == 'i') | 
|  | 2102                 return latinCapitalLetterIWithDotAbove; | 
|  | 2103             if (c == latinSmallLetterDotlessI) | 
|  | 2104                 return 'I'; | 
|  | 2105         } else if (localeIdMatchesLang(localeIdentifier, "lt")) { | 
|  | 2106             // TODO(rob.buis) implement upper-casing rules for lt | 
|  | 2107             // like in StringImpl::upper(locale). | 
|  | 2108         } | 
|  | 2109     } | 
|  | 2110 | 
|  | 2111     return toUpper(c); | 
|  | 2112 } | 
|  | 2113 | 
| 2097 } // namespace WTF | 2114 } // namespace WTF | 
| OLD | NEW | 
|---|