OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 #include "base/strings/string_util.h" | |
6 | |
7 namespace base { | |
8 | |
9 bool IsStringASCII(const StringPiece& str) { | |
10 for (size_t i = 0; i < str.length(); ++i) | |
scottmg
2015/05/04 23:15:33
The Chromium implementation of these is surprising
| |
11 if (str.data()[i] >= 0x80) | |
12 return false; | |
13 return true; | |
14 } | |
15 | |
16 bool IsStringASCII(const StringPiece16& str) { | |
17 for (size_t i = 0; i < str.length(); ++i) | |
18 if (str.data()[i] >= 0x80) | |
19 return false; | |
20 return true; | |
21 } | |
22 | |
23 } // namespace base | |
OLD | NEW |