| 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 431 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 442 if (!string) | 442 if (!string) |
| 443 return empty(); | 443 return empty(); |
| 444 size_t length = strlen(reinterpret_cast<const char*>(string)); | 444 size_t length = strlen(reinterpret_cast<const char*>(string)); |
| 445 RELEASE_ASSERT(length <= numeric_limits<unsigned>::max()); | 445 RELEASE_ASSERT(length <= numeric_limits<unsigned>::max()); |
| 446 return create(string, length); | 446 return create(string, length); |
| 447 } | 447 } |
| 448 | 448 |
| 449 bool StringImpl::containsOnlyWhitespace() | 449 bool StringImpl::containsOnlyWhitespace() |
| 450 { | 450 { |
| 451 // FIXME: The definition of whitespace here includes a number of characters | 451 // FIXME: The definition of whitespace here includes a number of characters |
| 452 // that are not whitespace from the point of view of RenderText; I wonder if | 452 // that are not whitespace from the point of view of LayoutText; I wonder if |
| 453 // that's a problem in practice. | 453 // that's a problem in practice. |
| 454 if (is8Bit()) { | 454 if (is8Bit()) { |
| 455 for (unsigned i = 0; i < m_length; ++i) { | 455 for (unsigned i = 0; i < m_length; ++i) { |
| 456 UChar c = characters8()[i]; | 456 UChar c = characters8()[i]; |
| 457 if (!isASCIISpace(c)) | 457 if (!isASCIISpace(c)) |
| 458 return false; | 458 return false; |
| 459 } | 459 } |
| 460 | 460 |
| 461 return true; | 461 return true; |
| 462 } | 462 } |
| (...skipping 1623 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2086 | 2086 |
| 2087 size_t StringImpl::sizeInBytes() const | 2087 size_t StringImpl::sizeInBytes() const |
| 2088 { | 2088 { |
| 2089 size_t size = length(); | 2089 size_t size = length(); |
| 2090 if (!is8Bit()) | 2090 if (!is8Bit()) |
| 2091 size *= 2; | 2091 size *= 2; |
| 2092 return size + sizeof(*this); | 2092 return size + sizeof(*this); |
| 2093 } | 2093 } |
| 2094 | 2094 |
| 2095 } // namespace WTF | 2095 } // namespace WTF |
| OLD | NEW |