| 796 | } |
| 797 | |
| 798 | bool StringImpl::IsWhitespace() const |
| 799 | { |
| 800 | auto ptr = GetPtr(); |
| 801 | for (intptr i = 0; i < mLength; i++) |
| 802 | if (!iswspace(ptr[i])) |
| 803 | return false; |
| 804 | return true; |
| 805 | } |
| 806 | |
| 807 | bool StringImpl::HasMultibyteChars() |
| 808 | { |
no outgoing calls
no test coverage detected