OLD | NEW |
1 /**************************************************************** | 1 /**************************************************************** |
2 * | 2 * |
3 * The author of this software is David M. Gay. | 3 * The author of this software is David M. Gay. |
4 * | 4 * |
5 * Copyright (c) 1991, 2000, 2001 by Lucent Technologies. | 5 * Copyright (c) 1991, 2000, 2001 by Lucent Technologies. |
6 * Copyright (C) 2002, 2005, 2006, 2007, 2008, 2010, 2012 Apple Inc. All rights
reserved. | 6 * Copyright (C) 2002, 2005, 2006, 2007, 2008, 2010, 2012 Apple Inc. All rights
reserved. |
7 * | 7 * |
8 * Permission to use, copy, modify, and distribute this software for any | 8 * Permission to use, copy, modify, and distribute this software for any |
9 * purpose without fee is hereby granted, provided that this entire notice | 9 * purpose without fee is hereby granted, provided that this entire notice |
10 * is included in all copies of any software which is or includes a copy | 10 * is included in all copies of any software which is or includes a copy |
(...skipping 1293 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1304 { | 1304 { |
1305 Vector<LChar> conversionBuffer(length); | 1305 Vector<LChar> conversionBuffer(length); |
1306 for (size_t i = 0; i < length; ++i) | 1306 for (size_t i = 0; i < length; ++i) |
1307 conversionBuffer[i] = isASCII(string[i]) ? string[i] : 0; | 1307 conversionBuffer[i] = isASCII(string[i]) ? string[i] : 0; |
1308 return parseDouble(conversionBuffer.data(), length, parsedLength); | 1308 return parseDouble(conversionBuffer.data(), length, parsedLength); |
1309 } | 1309 } |
1310 | 1310 |
1311 } // namespace Internal | 1311 } // namespace Internal |
1312 | 1312 |
1313 } // namespace WTF | 1313 } // namespace WTF |
OLD | NEW |