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

Side by Side Diff: src/json-stringifier.h

Issue 14362023: Replace math.h with cmath (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: updates 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
« no previous file with comments | « src/isolate.cc ('k') | src/objects.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 the V8 project authors. All rights reserved.
2 // Redistribution and use in source and binary forms, with or without 2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are 3 // modification, are permitted provided that the following conditions are
4 // met: 4 // met:
5 // 5 //
6 // * Redistributions of source code must retain the above copyright 6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer. 7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above 8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following 9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided 10 // disclaimer in the documentation and/or other materials provided
(...skipping 504 matching lines...) Expand 10 before | Expand all | Expand 10 after
515 static const int kBufferSize = 100; 515 static const int kBufferSize = 100;
516 char chars[kBufferSize]; 516 char chars[kBufferSize];
517 Vector<char> buffer(chars, kBufferSize); 517 Vector<char> buffer(chars, kBufferSize);
518 AppendAscii(IntToCString(object->value(), buffer)); 518 AppendAscii(IntToCString(object->value(), buffer));
519 return SUCCESS; 519 return SUCCESS;
520 } 520 }
521 521
522 522
523 BasicJsonStringifier::Result BasicJsonStringifier::SerializeDouble( 523 BasicJsonStringifier::Result BasicJsonStringifier::SerializeDouble(
524 double number) { 524 double number) {
525 if (isinf(number) || isnan(number)) { 525 if (std::isinf(number) || std::isnan(number)) {
526 AppendAscii("null"); 526 AppendAscii("null");
527 return SUCCESS; 527 return SUCCESS;
528 } 528 }
529 static const int kBufferSize = 100; 529 static const int kBufferSize = 100;
530 char chars[kBufferSize]; 530 char chars[kBufferSize];
531 Vector<char> buffer(chars, kBufferSize); 531 Vector<char> buffer(chars, kBufferSize);
532 AppendAscii(DoubleToCString(number, buffer)); 532 AppendAscii(DoubleToCString(number, buffer));
533 return SUCCESS; 533 return SUCCESS;
534 } 534 }
535 535
(...skipping 303 matching lines...) Expand 10 before | Expand all | Expand 10 after
839 SerializeString_<false, uint8_t>(object); 839 SerializeString_<false, uint8_t>(object);
840 } else { 840 } else {
841 SerializeString_<false, uc16>(object); 841 SerializeString_<false, uc16>(object);
842 } 842 }
843 } 843 }
844 } 844 }
845 845
846 } } // namespace v8::internal 846 } } // namespace v8::internal
847 847
848 #endif // V8_JSON_STRINGIFIER_H_ 848 #endif // V8_JSON_STRINGIFIER_H_
OLDNEW
« no previous file with comments | « src/isolate.cc ('k') | src/objects.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698