Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(996)

Side by Side Diff: Source/wtf/dtoa.cpp

Issue 14238015: Move Source/WTF/wtf to Source/wtf (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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
OLDNEW
« Source/config.h ('K') | « Source/wtf/dtoa.h ('k') | Source/wtf/dtoa/COPYING » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698