OLD | NEW |
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 Loading... |
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 Loading... |
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_ |
OLD | NEW |