├── AUTHORS ├── ChangeLog-CN ├── ChangeLog-EN ├── INSTALL ├── LICENSE ├── README ├── README-CN ├── README-EN ├── makefile ├── makefile.AIX ├── makefile.Linux ├── makefile.WINDOWS-MinGW ├── makeinstall ├── src ├── fasterjson.c ├── fasterjson.h ├── makefile ├── makefile.AIX ├── makefile.Linux ├── makefile.WINDOWS-MinGW └── vc6 │ ├── fasterjson │ ├── fasterjson.dsp │ └── fasterjson.plg │ ├── vc6.dsw │ ├── vc6.ncb │ └── vc6.opt ├── test ├── data │ ├── canada.json │ ├── citm_catalog.json │ ├── data.txt │ ├── jsonchecker │ │ ├── fail.sh │ │ ├── fail01.json │ │ ├── fail02.json │ │ ├── fail03.json │ │ ├── fail04.json │ │ ├── fail05.json │ │ ├── fail06.json │ │ ├── fail07.json │ │ ├── fail08.json │ │ ├── fail09.json │ │ ├── fail10.json │ │ ├── fail11.json │ │ ├── fail12.json │ │ ├── fail13.json │ │ ├── fail14.json │ │ ├── fail15.json │ │ ├── fail16.json │ │ ├── fail17.json │ │ ├── fail18_EXCLUDE.json │ │ ├── fail19.json │ │ ├── fail20.json │ │ ├── fail21.json │ │ ├── fail22.json │ │ ├── fail23.json │ │ ├── fail24.json │ │ ├── fail25_EXCLUDE.json │ │ ├── fail26_EXCLUDE.json │ │ ├── fail27.json │ │ ├── fail28.json │ │ ├── fail29.json │ │ ├── fail30.json │ │ ├── fail31.json │ │ ├── fail32.json │ │ ├── fail33.json │ │ ├── fail34.json │ │ ├── pass.sh │ │ ├── pass01.json │ │ ├── pass02.json │ │ ├── pass03.json │ │ └── readme.txt │ ├── roundtrip │ │ ├── pass.sh │ │ ├── roundtrip01.json │ │ ├── roundtrip02.json │ │ ├── roundtrip03.json │ │ ├── roundtrip04.json │ │ ├── roundtrip05.json │ │ ├── roundtrip06.json │ │ ├── roundtrip07.json │ │ ├── roundtrip08.json │ │ ├── roundtrip09.json │ │ ├── roundtrip10.json │ │ ├── roundtrip11.json │ │ ├── roundtrip12.json │ │ ├── roundtrip13.json │ │ ├── roundtrip14.json │ │ ├── roundtrip15.json │ │ ├── roundtrip16.json │ │ ├── roundtrip17.json │ │ ├── roundtrip18.json │ │ ├── roundtrip19.json │ │ ├── roundtrip20.json │ │ ├── roundtrip21.json │ │ ├── roundtrip22.json │ │ ├── roundtrip23.json │ │ ├── roundtrip24.json │ │ ├── roundtrip25.json │ │ ├── roundtrip26.json │ │ └── roundtrip27.json │ └── twitter.json ├── makefile ├── makefile.AIX ├── makefile.Linux ├── makefile.WINDOWS-MinGW ├── press_fasterjson.c ├── test_basic.json ├── test_basic2.json ├── test_big.json ├── test_big2.json ├── test_details.json ├── test_details2.json ├── test_fasterjson.c └── vc6 │ ├── press_fasterjson │ ├── press_fasterjson.dsp │ └── press_fasterjson.plg │ ├── test_fasterjson │ ├── Debug │ │ ├── test_fasterjson.exp │ │ └── test_fasterjson.lib │ ├── test_fasterjson.dsp │ └── test_fasterjson.plg │ ├── vc6.dsw │ ├── vc6.ncb │ └── vc6.opt ├── test_rapidjson-0.1 ├── allocators.h ├── document.h ├── encodedstream.h ├── encodings.h ├── error │ ├── en.h │ └── error.h ├── filereadstream.h ├── filestream.h ├── filewritestream.h ├── internal │ ├── dtoa.h │ ├── itoa.h │ ├── meta.h │ ├── pow10.h │ ├── stack.h │ └── strfunc.h ├── license.txt ├── makefile ├── memorybuffer.h ├── memorystream.h ├── msinttypes │ ├── inttypes.h │ └── stdint.h ├── press_rapidjson.cpp ├── prettywriter.h ├── rapidjson.h ├── reader.h ├── stringbuffer.h ├── test.json └── writer.h └── test_rapidjson-1.0.1 ├── CHANGELOG.md ├── CMakeLists.txt ├── CMakeModules └── FindGTestSrc.cmake ├── RapidJSON.pc.in ├── RapidJSONConfig.cmake.in ├── RapidJSONConfigVersion.cmake.in ├── appveyor.yml ├── bin ├── data │ ├── glossary.json │ ├── menu.json │ ├── readme.txt │ ├── sample.json │ ├── webapp.json │ └── widget.json ├── encodings │ ├── utf16be.json │ ├── utf16bebom.json │ ├── utf16le.json │ ├── utf16lebom.json │ ├── utf32be.json │ ├── utf32bebom.json │ ├── utf32le.json │ ├── utf32lebom.json │ ├── utf8.json │ └── utf8bom.json └── jsonchecker │ ├── fail1.json │ ├── fail10.json │ ├── fail11.json │ ├── fail12.json │ ├── fail13.json │ ├── fail14.json │ ├── fail15.json │ ├── fail16.json │ ├── fail17.json │ ├── fail18.json │ ├── fail19.json │ ├── fail2.json │ ├── fail20.json │ ├── fail21.json │ ├── fail22.json │ ├── fail23.json │ ├── fail24.json │ ├── fail25.json │ ├── fail26.json │ ├── fail27.json │ ├── fail28.json │ ├── fail29.json │ ├── fail3.json │ ├── fail30.json │ ├── fail31.json │ ├── fail32.json │ ├── fail33.json │ ├── fail4.json │ ├── fail5.json │ ├── fail6.json │ ├── fail7.json │ ├── fail8.json │ ├── fail9.json │ ├── pass1.json │ ├── pass2.json │ ├── pass3.json │ └── readme.txt ├── doc ├── CMakeLists.txt ├── Doxyfile.in ├── Doxyfile.zh-cn.in ├── diagram │ ├── architecture.dot │ ├── architecture.png │ ├── insituparsing.dot │ ├── insituparsing.png │ ├── iterative-parser-states-diagram.dot │ ├── iterative-parser-states-diagram.png │ ├── makefile │ ├── move1.dot │ ├── move1.png │ ├── move2.dot │ ├── move2.png │ ├── move3.dot │ ├── move3.png │ ├── normalparsing.dot │ ├── normalparsing.png │ ├── simpledom.dot │ ├── simpledom.png │ ├── tutorial.dot │ ├── tutorial.png │ ├── utilityclass.dot │ └── utilityclass.png ├── dom.md ├── dom.zh-cn.md ├── encoding.md ├── encoding.zh-cn.md ├── faq.md ├── faq.zh-cn.md ├── features.md ├── features.zh-cn.md ├── internals.md ├── logo │ ├── rapidjson.png │ └── rapidjson.svg ├── misc │ ├── DoxygenLayout.xml │ ├── doxygenextra.css │ ├── footer.html │ └── header.html ├── performance.md ├── performance.zh-cn.md ├── sax.md ├── sax.zh-cn.md ├── stream.md ├── stream.zh-cn.md ├── tutorial.md └── tutorial.zh-cn.md ├── example ├── CMakeLists.txt ├── capitalize │ └── capitalize.cpp ├── condense │ └── condense.cpp ├── messagereader │ └── messagereader.cpp ├── pretty │ └── pretty.cpp ├── prettyauto │ └── prettyauto.cpp ├── serialize │ └── serialize.cpp ├── simpledom │ └── simpledom.cpp ├── simplereader │ └── simplereader.cpp ├── simplewriter │ └── simplewriter.cpp └── tutorial │ └── tutorial.cpp ├── include └── rapidjson │ ├── allocators.h │ ├── document.h │ ├── encodedstream.h │ ├── encodings.h │ ├── error │ ├── en.h │ └── error.h │ ├── filereadstream.h │ ├── filewritestream.h │ ├── internal │ ├── biginteger.h │ ├── diyfp.h │ ├── dtoa.h │ ├── ieee754.h │ ├── itoa.h │ ├── meta.h │ ├── pow10.h │ ├── stack.h │ ├── strfunc.h │ └── strtod.h │ ├── makefile │ ├── memorybuffer.h │ ├── memorystream.h │ ├── msinttypes │ ├── inttypes.h │ └── stdint.h │ ├── press_rapidjson.cpp │ ├── prettywriter.h │ ├── rapidjson.h │ ├── reader.h │ ├── stringbuffer.h │ └── writer.h ├── license.txt ├── readme.md ├── readme.zh-cn.md ├── test ├── CMakeLists.txt ├── perftest │ ├── CMakeLists.txt │ ├── misctest.cpp │ ├── perftest.cpp │ ├── perftest.h │ ├── platformtest.cpp │ └── rapidjsontest.cpp └── unittest │ ├── CMakeLists.txt │ ├── allocatorstest.cpp │ ├── bigintegertest.cpp │ ├── documenttest.cpp │ ├── encodedstreamtest.cpp │ ├── encodingstest.cpp │ ├── filestreamtest.cpp │ ├── itoatest.cpp │ ├── jsoncheckertest.cpp │ ├── namespacetest.cpp │ ├── prettywritertest.cpp │ ├── readertest.cpp │ ├── simdtest.cpp │ ├── stringbuffertest.cpp │ ├── strtodtest.cpp │ ├── unittest.cpp │ ├── unittest.h │ ├── valuetest.cpp │ └── writertest.cpp └── travis-doxygen.sh /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/AUTHORS -------------------------------------------------------------------------------- /ChangeLog-CN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/ChangeLog-CN -------------------------------------------------------------------------------- /ChangeLog-EN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/ChangeLog-EN -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/LICENSE -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/README -------------------------------------------------------------------------------- /README-CN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/README-CN -------------------------------------------------------------------------------- /README-EN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/README-EN -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/makefile -------------------------------------------------------------------------------- /makefile.AIX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/makefile.AIX -------------------------------------------------------------------------------- /makefile.Linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/makefile.Linux -------------------------------------------------------------------------------- /makefile.WINDOWS-MinGW: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/makefile.WINDOWS-MinGW -------------------------------------------------------------------------------- /makeinstall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/makeinstall -------------------------------------------------------------------------------- /src/fasterjson.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/src/fasterjson.c -------------------------------------------------------------------------------- /src/fasterjson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/src/fasterjson.h -------------------------------------------------------------------------------- /src/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/src/makefile -------------------------------------------------------------------------------- /src/makefile.AIX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/src/makefile.AIX -------------------------------------------------------------------------------- /src/makefile.Linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/src/makefile.Linux -------------------------------------------------------------------------------- /src/makefile.WINDOWS-MinGW: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/src/makefile.WINDOWS-MinGW -------------------------------------------------------------------------------- /src/vc6/fasterjson/fasterjson.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/src/vc6/fasterjson/fasterjson.dsp -------------------------------------------------------------------------------- /src/vc6/fasterjson/fasterjson.plg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/src/vc6/fasterjson/fasterjson.plg -------------------------------------------------------------------------------- /src/vc6/vc6.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/src/vc6/vc6.dsw -------------------------------------------------------------------------------- /src/vc6/vc6.ncb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/src/vc6/vc6.ncb -------------------------------------------------------------------------------- /src/vc6/vc6.opt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/src/vc6/vc6.opt -------------------------------------------------------------------------------- /test/data/canada.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test/data/canada.json -------------------------------------------------------------------------------- /test/data/citm_catalog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test/data/citm_catalog.json -------------------------------------------------------------------------------- /test/data/data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test/data/data.txt -------------------------------------------------------------------------------- /test/data/jsonchecker/fail.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test/data/jsonchecker/fail.sh -------------------------------------------------------------------------------- /test/data/jsonchecker/fail01.json: -------------------------------------------------------------------------------- 1 | "A JSON payload should be an object or array, not a string." -------------------------------------------------------------------------------- /test/data/jsonchecker/fail02.json: -------------------------------------------------------------------------------- 1 | ["Unclosed array" -------------------------------------------------------------------------------- /test/data/jsonchecker/fail03.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test/data/jsonchecker/fail03.json -------------------------------------------------------------------------------- /test/data/jsonchecker/fail04.json: -------------------------------------------------------------------------------- 1 | ["extra comma",] -------------------------------------------------------------------------------- /test/data/jsonchecker/fail05.json: -------------------------------------------------------------------------------- 1 | ["double extra comma",,] -------------------------------------------------------------------------------- /test/data/jsonchecker/fail06.json: -------------------------------------------------------------------------------- 1 | [ , "<-- missing value"] -------------------------------------------------------------------------------- /test/data/jsonchecker/fail07.json: -------------------------------------------------------------------------------- 1 | ["Comma after the close"], -------------------------------------------------------------------------------- /test/data/jsonchecker/fail08.json: -------------------------------------------------------------------------------- 1 | ["Extra close"]] -------------------------------------------------------------------------------- /test/data/jsonchecker/fail09.json: -------------------------------------------------------------------------------- 1 | {"Extra comma": true,} -------------------------------------------------------------------------------- /test/data/jsonchecker/fail10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test/data/jsonchecker/fail10.json -------------------------------------------------------------------------------- /test/data/jsonchecker/fail11.json: -------------------------------------------------------------------------------- 1 | {"Illegal expression": 1 + 2} -------------------------------------------------------------------------------- /test/data/jsonchecker/fail12.json: -------------------------------------------------------------------------------- 1 | {"Illegal invocation": alert()} -------------------------------------------------------------------------------- /test/data/jsonchecker/fail13.json: -------------------------------------------------------------------------------- 1 | {"Numbers cannot have leading zeroes": 013} -------------------------------------------------------------------------------- /test/data/jsonchecker/fail14.json: -------------------------------------------------------------------------------- 1 | {"Numbers cannot be hex": 0x14} -------------------------------------------------------------------------------- /test/data/jsonchecker/fail15.json: -------------------------------------------------------------------------------- 1 | ["Illegal backslash escape: \x15"] -------------------------------------------------------------------------------- /test/data/jsonchecker/fail16.json: -------------------------------------------------------------------------------- 1 | [\naked] -------------------------------------------------------------------------------- /test/data/jsonchecker/fail17.json: -------------------------------------------------------------------------------- 1 | ["Illegal backslash escape: \017"] -------------------------------------------------------------------------------- /test/data/jsonchecker/fail18_EXCLUDE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test/data/jsonchecker/fail18_EXCLUDE.json -------------------------------------------------------------------------------- /test/data/jsonchecker/fail19.json: -------------------------------------------------------------------------------- 1 | {"Missing colon" null} -------------------------------------------------------------------------------- /test/data/jsonchecker/fail20.json: -------------------------------------------------------------------------------- 1 | {"Double colon":: null} -------------------------------------------------------------------------------- /test/data/jsonchecker/fail21.json: -------------------------------------------------------------------------------- 1 | {"Comma instead of colon", null} -------------------------------------------------------------------------------- /test/data/jsonchecker/fail22.json: -------------------------------------------------------------------------------- 1 | ["Colon instead of comma": false] -------------------------------------------------------------------------------- /test/data/jsonchecker/fail23.json: -------------------------------------------------------------------------------- 1 | ["Bad value", truth] -------------------------------------------------------------------------------- /test/data/jsonchecker/fail24.json: -------------------------------------------------------------------------------- 1 | ['single quote'] -------------------------------------------------------------------------------- /test/data/jsonchecker/fail25_EXCLUDE.json: -------------------------------------------------------------------------------- 1 | [" tab character in string "] -------------------------------------------------------------------------------- /test/data/jsonchecker/fail26_EXCLUDE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test/data/jsonchecker/fail26_EXCLUDE.json -------------------------------------------------------------------------------- /test/data/jsonchecker/fail27.json: -------------------------------------------------------------------------------- 1 | ["line 2 | break"] -------------------------------------------------------------------------------- /test/data/jsonchecker/fail28.json: -------------------------------------------------------------------------------- 1 | ["line\ 2 | break"] -------------------------------------------------------------------------------- /test/data/jsonchecker/fail29.json: -------------------------------------------------------------------------------- 1 | [0e] -------------------------------------------------------------------------------- /test/data/jsonchecker/fail30.json: -------------------------------------------------------------------------------- 1 | [0e+] -------------------------------------------------------------------------------- /test/data/jsonchecker/fail31.json: -------------------------------------------------------------------------------- 1 | [0e+-1] -------------------------------------------------------------------------------- /test/data/jsonchecker/fail32.json: -------------------------------------------------------------------------------- 1 | {"Comma instead if closing brace": true, -------------------------------------------------------------------------------- /test/data/jsonchecker/fail33.json: -------------------------------------------------------------------------------- 1 | ["mismatch"} -------------------------------------------------------------------------------- /test/data/jsonchecker/fail34.json: -------------------------------------------------------------------------------- 1 | {"mismatch":0] 2 | -------------------------------------------------------------------------------- /test/data/jsonchecker/pass.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test/data/jsonchecker/pass.sh -------------------------------------------------------------------------------- /test/data/jsonchecker/pass01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test/data/jsonchecker/pass01.json -------------------------------------------------------------------------------- /test/data/jsonchecker/pass02.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test/data/jsonchecker/pass02.json -------------------------------------------------------------------------------- /test/data/jsonchecker/pass03.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test/data/jsonchecker/pass03.json -------------------------------------------------------------------------------- /test/data/jsonchecker/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test/data/jsonchecker/readme.txt -------------------------------------------------------------------------------- /test/data/roundtrip/pass.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test/data/roundtrip/pass.sh -------------------------------------------------------------------------------- /test/data/roundtrip/roundtrip01.json: -------------------------------------------------------------------------------- 1 | [null] -------------------------------------------------------------------------------- /test/data/roundtrip/roundtrip02.json: -------------------------------------------------------------------------------- 1 | [true] -------------------------------------------------------------------------------- /test/data/roundtrip/roundtrip03.json: -------------------------------------------------------------------------------- 1 | [false] -------------------------------------------------------------------------------- /test/data/roundtrip/roundtrip04.json: -------------------------------------------------------------------------------- 1 | [0] -------------------------------------------------------------------------------- /test/data/roundtrip/roundtrip05.json: -------------------------------------------------------------------------------- 1 | ["foo"] -------------------------------------------------------------------------------- /test/data/roundtrip/roundtrip06.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /test/data/roundtrip/roundtrip07.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /test/data/roundtrip/roundtrip08.json: -------------------------------------------------------------------------------- 1 | [0,1] -------------------------------------------------------------------------------- /test/data/roundtrip/roundtrip09.json: -------------------------------------------------------------------------------- 1 | {"foo":"bar"} -------------------------------------------------------------------------------- /test/data/roundtrip/roundtrip10.json: -------------------------------------------------------------------------------- 1 | {"a":null,"foo":"bar"} -------------------------------------------------------------------------------- /test/data/roundtrip/roundtrip11.json: -------------------------------------------------------------------------------- 1 | [-1] -------------------------------------------------------------------------------- /test/data/roundtrip/roundtrip12.json: -------------------------------------------------------------------------------- 1 | [-2147483648] -------------------------------------------------------------------------------- /test/data/roundtrip/roundtrip13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test/data/roundtrip/roundtrip13.json -------------------------------------------------------------------------------- /test/data/roundtrip/roundtrip14.json: -------------------------------------------------------------------------------- 1 | [-9223372036854775808] -------------------------------------------------------------------------------- /test/data/roundtrip/roundtrip15.json: -------------------------------------------------------------------------------- 1 | [1] -------------------------------------------------------------------------------- /test/data/roundtrip/roundtrip16.json: -------------------------------------------------------------------------------- 1 | [2147483647] -------------------------------------------------------------------------------- /test/data/roundtrip/roundtrip17.json: -------------------------------------------------------------------------------- 1 | [4294967295] -------------------------------------------------------------------------------- /test/data/roundtrip/roundtrip18.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test/data/roundtrip/roundtrip18.json -------------------------------------------------------------------------------- /test/data/roundtrip/roundtrip19.json: -------------------------------------------------------------------------------- 1 | [9223372036854775807] -------------------------------------------------------------------------------- /test/data/roundtrip/roundtrip20.json: -------------------------------------------------------------------------------- 1 | [0.0] -------------------------------------------------------------------------------- /test/data/roundtrip/roundtrip21.json: -------------------------------------------------------------------------------- 1 | [-0.0] -------------------------------------------------------------------------------- /test/data/roundtrip/roundtrip22.json: -------------------------------------------------------------------------------- 1 | [1.2345] -------------------------------------------------------------------------------- /test/data/roundtrip/roundtrip23.json: -------------------------------------------------------------------------------- 1 | [-1.2345] -------------------------------------------------------------------------------- /test/data/roundtrip/roundtrip24.json: -------------------------------------------------------------------------------- 1 | [5e-324] -------------------------------------------------------------------------------- /test/data/roundtrip/roundtrip25.json: -------------------------------------------------------------------------------- 1 | [2.225073858507201e-308] -------------------------------------------------------------------------------- /test/data/roundtrip/roundtrip26.json: -------------------------------------------------------------------------------- 1 | [2.2250738585072014e-308] -------------------------------------------------------------------------------- /test/data/roundtrip/roundtrip27.json: -------------------------------------------------------------------------------- 1 | [1.7976931348623157e308] -------------------------------------------------------------------------------- /test/data/twitter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test/data/twitter.json -------------------------------------------------------------------------------- /test/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test/makefile -------------------------------------------------------------------------------- /test/makefile.AIX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test/makefile.AIX -------------------------------------------------------------------------------- /test/makefile.Linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test/makefile.Linux -------------------------------------------------------------------------------- /test/makefile.WINDOWS-MinGW: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test/makefile.WINDOWS-MinGW -------------------------------------------------------------------------------- /test/press_fasterjson.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test/press_fasterjson.c -------------------------------------------------------------------------------- /test/test_basic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test/test_basic.json -------------------------------------------------------------------------------- /test/test_basic2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test/test_basic2.json -------------------------------------------------------------------------------- /test/test_big.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test/test_big.json -------------------------------------------------------------------------------- /test/test_big2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test/test_big2.json -------------------------------------------------------------------------------- /test/test_details.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test/test_details.json -------------------------------------------------------------------------------- /test/test_details2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test/test_details2.json -------------------------------------------------------------------------------- /test/test_fasterjson.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test/test_fasterjson.c -------------------------------------------------------------------------------- /test/vc6/press_fasterjson/press_fasterjson.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test/vc6/press_fasterjson/press_fasterjson.dsp -------------------------------------------------------------------------------- /test/vc6/press_fasterjson/press_fasterjson.plg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test/vc6/press_fasterjson/press_fasterjson.plg -------------------------------------------------------------------------------- /test/vc6/test_fasterjson/Debug/test_fasterjson.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test/vc6/test_fasterjson/Debug/test_fasterjson.exp -------------------------------------------------------------------------------- /test/vc6/test_fasterjson/Debug/test_fasterjson.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test/vc6/test_fasterjson/Debug/test_fasterjson.lib -------------------------------------------------------------------------------- /test/vc6/test_fasterjson/test_fasterjson.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test/vc6/test_fasterjson/test_fasterjson.dsp -------------------------------------------------------------------------------- /test/vc6/test_fasterjson/test_fasterjson.plg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test/vc6/test_fasterjson/test_fasterjson.plg -------------------------------------------------------------------------------- /test/vc6/vc6.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test/vc6/vc6.dsw -------------------------------------------------------------------------------- /test/vc6/vc6.ncb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test/vc6/vc6.ncb -------------------------------------------------------------------------------- /test/vc6/vc6.opt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test/vc6/vc6.opt -------------------------------------------------------------------------------- /test_rapidjson-0.1/allocators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-0.1/allocators.h -------------------------------------------------------------------------------- /test_rapidjson-0.1/document.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-0.1/document.h -------------------------------------------------------------------------------- /test_rapidjson-0.1/encodedstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-0.1/encodedstream.h -------------------------------------------------------------------------------- /test_rapidjson-0.1/encodings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-0.1/encodings.h -------------------------------------------------------------------------------- /test_rapidjson-0.1/error/en.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-0.1/error/en.h -------------------------------------------------------------------------------- /test_rapidjson-0.1/error/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-0.1/error/error.h -------------------------------------------------------------------------------- /test_rapidjson-0.1/filereadstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-0.1/filereadstream.h -------------------------------------------------------------------------------- /test_rapidjson-0.1/filestream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-0.1/filestream.h -------------------------------------------------------------------------------- /test_rapidjson-0.1/filewritestream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-0.1/filewritestream.h -------------------------------------------------------------------------------- /test_rapidjson-0.1/internal/dtoa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-0.1/internal/dtoa.h -------------------------------------------------------------------------------- /test_rapidjson-0.1/internal/itoa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-0.1/internal/itoa.h -------------------------------------------------------------------------------- /test_rapidjson-0.1/internal/meta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-0.1/internal/meta.h -------------------------------------------------------------------------------- /test_rapidjson-0.1/internal/pow10.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-0.1/internal/pow10.h -------------------------------------------------------------------------------- /test_rapidjson-0.1/internal/stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-0.1/internal/stack.h -------------------------------------------------------------------------------- /test_rapidjson-0.1/internal/strfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-0.1/internal/strfunc.h -------------------------------------------------------------------------------- /test_rapidjson-0.1/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-0.1/license.txt -------------------------------------------------------------------------------- /test_rapidjson-0.1/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-0.1/makefile -------------------------------------------------------------------------------- /test_rapidjson-0.1/memorybuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-0.1/memorybuffer.h -------------------------------------------------------------------------------- /test_rapidjson-0.1/memorystream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-0.1/memorystream.h -------------------------------------------------------------------------------- /test_rapidjson-0.1/msinttypes/inttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-0.1/msinttypes/inttypes.h -------------------------------------------------------------------------------- /test_rapidjson-0.1/msinttypes/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-0.1/msinttypes/stdint.h -------------------------------------------------------------------------------- /test_rapidjson-0.1/press_rapidjson.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-0.1/press_rapidjson.cpp -------------------------------------------------------------------------------- /test_rapidjson-0.1/prettywriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-0.1/prettywriter.h -------------------------------------------------------------------------------- /test_rapidjson-0.1/rapidjson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-0.1/rapidjson.h -------------------------------------------------------------------------------- /test_rapidjson-0.1/reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-0.1/reader.h -------------------------------------------------------------------------------- /test_rapidjson-0.1/stringbuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-0.1/stringbuffer.h -------------------------------------------------------------------------------- /test_rapidjson-0.1/test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-0.1/test.json -------------------------------------------------------------------------------- /test_rapidjson-0.1/writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-0.1/writer.h -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-1.0.1/CHANGELOG.md -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-1.0.1/CMakeLists.txt -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/CMakeModules/FindGTestSrc.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-1.0.1/CMakeModules/FindGTestSrc.cmake -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/RapidJSON.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-1.0.1/RapidJSON.pc.in -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/RapidJSONConfig.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-1.0.1/RapidJSONConfig.cmake.in -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/RapidJSONConfigVersion.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-1.0.1/RapidJSONConfigVersion.cmake.in -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-1.0.1/appveyor.yml -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/bin/data/glossary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-1.0.1/bin/data/glossary.json -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/bin/data/menu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-1.0.1/bin/data/menu.json -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/bin/data/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-1.0.1/bin/data/readme.txt -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/bin/data/sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-1.0.1/bin/data/sample.json -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/bin/data/webapp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-1.0.1/bin/data/webapp.json -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/bin/data/widget.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-1.0.1/bin/data/widget.json -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/bin/encodings/utf16be.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-1.0.1/bin/encodings/utf16be.json -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/bin/encodings/utf16bebom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-1.0.1/bin/encodings/utf16bebom.json -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/bin/encodings/utf16le.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-1.0.1/bin/encodings/utf16le.json -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/bin/encodings/utf16lebom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-1.0.1/bin/encodings/utf16lebom.json -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/bin/encodings/utf32be.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-1.0.1/bin/encodings/utf32be.json -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/bin/encodings/utf32bebom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-1.0.1/bin/encodings/utf32bebom.json -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/bin/encodings/utf32le.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-1.0.1/bin/encodings/utf32le.json -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/bin/encodings/utf32lebom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-1.0.1/bin/encodings/utf32lebom.json -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/bin/encodings/utf8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-1.0.1/bin/encodings/utf8.json -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/bin/encodings/utf8bom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-1.0.1/bin/encodings/utf8bom.json -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/bin/jsonchecker/fail1.json: -------------------------------------------------------------------------------- 1 | "A JSON payload should be an object or array, not a string." -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/bin/jsonchecker/fail10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-1.0.1/bin/jsonchecker/fail10.json -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/bin/jsonchecker/fail11.json: -------------------------------------------------------------------------------- 1 | {"Illegal expression": 1 + 2} -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/bin/jsonchecker/fail12.json: -------------------------------------------------------------------------------- 1 | {"Illegal invocation": alert()} -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/bin/jsonchecker/fail13.json: -------------------------------------------------------------------------------- 1 | {"Numbers cannot have leading zeroes": 013} -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/bin/jsonchecker/fail14.json: -------------------------------------------------------------------------------- 1 | {"Numbers cannot be hex": 0x14} -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/bin/jsonchecker/fail15.json: -------------------------------------------------------------------------------- 1 | ["Illegal backslash escape: \x15"] -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/bin/jsonchecker/fail16.json: -------------------------------------------------------------------------------- 1 | [\naked] -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/bin/jsonchecker/fail17.json: -------------------------------------------------------------------------------- 1 | ["Illegal backslash escape: \017"] -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/bin/jsonchecker/fail18.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-1.0.1/bin/jsonchecker/fail18.json -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/bin/jsonchecker/fail19.json: -------------------------------------------------------------------------------- 1 | {"Missing colon" null} -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/bin/jsonchecker/fail2.json: -------------------------------------------------------------------------------- 1 | ["Unclosed array" -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/bin/jsonchecker/fail20.json: -------------------------------------------------------------------------------- 1 | {"Double colon":: null} -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/bin/jsonchecker/fail21.json: -------------------------------------------------------------------------------- 1 | {"Comma instead of colon", null} -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/bin/jsonchecker/fail22.json: -------------------------------------------------------------------------------- 1 | ["Colon instead of comma": false] -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/bin/jsonchecker/fail23.json: -------------------------------------------------------------------------------- 1 | ["Bad value", truth] -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/bin/jsonchecker/fail24.json: -------------------------------------------------------------------------------- 1 | ['single quote'] -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/bin/jsonchecker/fail25.json: -------------------------------------------------------------------------------- 1 | [" tab character in string "] -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/bin/jsonchecker/fail26.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-1.0.1/bin/jsonchecker/fail26.json -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/bin/jsonchecker/fail27.json: -------------------------------------------------------------------------------- 1 | ["line 2 | break"] -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/bin/jsonchecker/fail28.json: -------------------------------------------------------------------------------- 1 | ["line\ 2 | break"] -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/bin/jsonchecker/fail29.json: -------------------------------------------------------------------------------- 1 | [0e] -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/bin/jsonchecker/fail3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-1.0.1/bin/jsonchecker/fail3.json -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/bin/jsonchecker/fail30.json: -------------------------------------------------------------------------------- 1 | [0e+] -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/bin/jsonchecker/fail31.json: -------------------------------------------------------------------------------- 1 | [0e+-1] -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/bin/jsonchecker/fail32.json: -------------------------------------------------------------------------------- 1 | {"Comma instead if closing brace": true, -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/bin/jsonchecker/fail33.json: -------------------------------------------------------------------------------- 1 | ["mismatch"} -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/bin/jsonchecker/fail4.json: -------------------------------------------------------------------------------- 1 | ["extra comma",] -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/bin/jsonchecker/fail5.json: -------------------------------------------------------------------------------- 1 | ["double extra comma",,] -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/bin/jsonchecker/fail6.json: -------------------------------------------------------------------------------- 1 | [ , "<-- missing value"] -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/bin/jsonchecker/fail7.json: -------------------------------------------------------------------------------- 1 | ["Comma after the close"], -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/bin/jsonchecker/fail8.json: -------------------------------------------------------------------------------- 1 | ["Extra close"]] -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/bin/jsonchecker/fail9.json: -------------------------------------------------------------------------------- 1 | {"Extra comma": true,} -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/bin/jsonchecker/pass1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-1.0.1/bin/jsonchecker/pass1.json -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/bin/jsonchecker/pass2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-1.0.1/bin/jsonchecker/pass2.json -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/bin/jsonchecker/pass3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-1.0.1/bin/jsonchecker/pass3.json -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/bin/jsonchecker/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-1.0.1/bin/jsonchecker/readme.txt -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-1.0.1/doc/CMakeLists.txt -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/doc/Doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-1.0.1/doc/Doxyfile.in -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/doc/Doxyfile.zh-cn.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-1.0.1/doc/Doxyfile.zh-cn.in -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/doc/diagram/architecture.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-1.0.1/doc/diagram/architecture.dot -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/doc/diagram/architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-1.0.1/doc/diagram/architecture.png -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/doc/diagram/insituparsing.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-1.0.1/doc/diagram/insituparsing.dot -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/doc/diagram/insituparsing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-1.0.1/doc/diagram/insituparsing.png -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/doc/diagram/iterative-parser-states-diagram.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-1.0.1/doc/diagram/iterative-parser-states-diagram.dot -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/doc/diagram/iterative-parser-states-diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-1.0.1/doc/diagram/iterative-parser-states-diagram.png -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/doc/diagram/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-1.0.1/doc/diagram/makefile -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/doc/diagram/move1.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-1.0.1/doc/diagram/move1.dot -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/doc/diagram/move1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-1.0.1/doc/diagram/move1.png -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/doc/diagram/move2.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-1.0.1/doc/diagram/move2.dot -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/doc/diagram/move2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-1.0.1/doc/diagram/move2.png -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/doc/diagram/move3.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-1.0.1/doc/diagram/move3.dot -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/doc/diagram/move3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-1.0.1/doc/diagram/move3.png -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/doc/diagram/normalparsing.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-1.0.1/doc/diagram/normalparsing.dot -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/doc/diagram/normalparsing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-1.0.1/doc/diagram/normalparsing.png -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/doc/diagram/simpledom.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-1.0.1/doc/diagram/simpledom.dot -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/doc/diagram/simpledom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-1.0.1/doc/diagram/simpledom.png -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/doc/diagram/tutorial.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-1.0.1/doc/diagram/tutorial.dot -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/doc/diagram/tutorial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-1.0.1/doc/diagram/tutorial.png -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/doc/diagram/utilityclass.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-1.0.1/doc/diagram/utilityclass.dot -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/doc/diagram/utilityclass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-1.0.1/doc/diagram/utilityclass.png -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/doc/dom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-1.0.1/doc/dom.md -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/doc/dom.zh-cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-1.0.1/doc/dom.zh-cn.md -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/doc/encoding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-1.0.1/doc/encoding.md -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/doc/encoding.zh-cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-1.0.1/doc/encoding.zh-cn.md -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/doc/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-1.0.1/doc/faq.md -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/doc/faq.zh-cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-1.0.1/doc/faq.zh-cn.md -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/doc/features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-1.0.1/doc/features.md -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/doc/features.zh-cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-1.0.1/doc/features.zh-cn.md -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/doc/internals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-1.0.1/doc/internals.md -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/doc/logo/rapidjson.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-1.0.1/doc/logo/rapidjson.png -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/doc/logo/rapidjson.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-1.0.1/doc/logo/rapidjson.svg -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/doc/misc/DoxygenLayout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-1.0.1/doc/misc/DoxygenLayout.xml -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/doc/misc/doxygenextra.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-1.0.1/doc/misc/doxygenextra.css -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/doc/misc/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-1.0.1/doc/misc/footer.html -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/doc/misc/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-1.0.1/doc/misc/header.html -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/doc/performance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-1.0.1/doc/performance.md -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/doc/performance.zh-cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-1.0.1/doc/performance.zh-cn.md -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/doc/sax.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-1.0.1/doc/sax.md -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/doc/sax.zh-cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-1.0.1/doc/sax.zh-cn.md -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/doc/stream.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-1.0.1/doc/stream.md -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/doc/stream.zh-cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-1.0.1/doc/stream.zh-cn.md -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/doc/tutorial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-1.0.1/doc/tutorial.md -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/doc/tutorial.zh-cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-1.0.1/doc/tutorial.zh-cn.md -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/example/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-1.0.1/example/CMakeLists.txt -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/example/capitalize/capitalize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-1.0.1/example/capitalize/capitalize.cpp -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/example/condense/condense.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-1.0.1/example/condense/condense.cpp -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/example/messagereader/messagereader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-1.0.1/example/messagereader/messagereader.cpp -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/example/pretty/pretty.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-1.0.1/example/pretty/pretty.cpp -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/example/prettyauto/prettyauto.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-1.0.1/example/prettyauto/prettyauto.cpp -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/example/serialize/serialize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-1.0.1/example/serialize/serialize.cpp -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/example/simpledom/simpledom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-1.0.1/example/simpledom/simpledom.cpp -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/example/simplereader/simplereader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-1.0.1/example/simplereader/simplereader.cpp -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/example/simplewriter/simplewriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-1.0.1/example/simplewriter/simplewriter.cpp -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/example/tutorial/tutorial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-1.0.1/example/tutorial/tutorial.cpp -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/include/rapidjson/allocators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-1.0.1/include/rapidjson/allocators.h -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/include/rapidjson/document.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-1.0.1/include/rapidjson/document.h -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/include/rapidjson/encodedstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-1.0.1/include/rapidjson/encodedstream.h -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/include/rapidjson/encodings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-1.0.1/include/rapidjson/encodings.h -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/include/rapidjson/error/en.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-1.0.1/include/rapidjson/error/en.h -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/include/rapidjson/error/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-1.0.1/include/rapidjson/error/error.h -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/include/rapidjson/filereadstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-1.0.1/include/rapidjson/filereadstream.h -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/include/rapidjson/filewritestream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-1.0.1/include/rapidjson/filewritestream.h -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/include/rapidjson/internal/biginteger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-1.0.1/include/rapidjson/internal/biginteger.h -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/include/rapidjson/internal/diyfp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-1.0.1/include/rapidjson/internal/diyfp.h -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/include/rapidjson/internal/dtoa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-1.0.1/include/rapidjson/internal/dtoa.h -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/include/rapidjson/internal/ieee754.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-1.0.1/include/rapidjson/internal/ieee754.h -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/include/rapidjson/internal/itoa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-1.0.1/include/rapidjson/internal/itoa.h -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/include/rapidjson/internal/meta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-1.0.1/include/rapidjson/internal/meta.h -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/include/rapidjson/internal/pow10.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-1.0.1/include/rapidjson/internal/pow10.h -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/include/rapidjson/internal/stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-1.0.1/include/rapidjson/internal/stack.h -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/include/rapidjson/internal/strfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-1.0.1/include/rapidjson/internal/strfunc.h -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/include/rapidjson/internal/strtod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-1.0.1/include/rapidjson/internal/strtod.h -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/include/rapidjson/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-1.0.1/include/rapidjson/makefile -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/include/rapidjson/memorybuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-1.0.1/include/rapidjson/memorybuffer.h -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/include/rapidjson/memorystream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-1.0.1/include/rapidjson/memorystream.h -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/include/rapidjson/msinttypes/inttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-1.0.1/include/rapidjson/msinttypes/inttypes.h -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/include/rapidjson/msinttypes/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-1.0.1/include/rapidjson/msinttypes/stdint.h -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/include/rapidjson/press_rapidjson.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-1.0.1/include/rapidjson/press_rapidjson.cpp -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/include/rapidjson/prettywriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-1.0.1/include/rapidjson/prettywriter.h -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/include/rapidjson/rapidjson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-1.0.1/include/rapidjson/rapidjson.h -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/include/rapidjson/reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-1.0.1/include/rapidjson/reader.h -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/include/rapidjson/stringbuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-1.0.1/include/rapidjson/stringbuffer.h -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/include/rapidjson/writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-1.0.1/include/rapidjson/writer.h -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-1.0.1/license.txt -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-1.0.1/readme.md -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/readme.zh-cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-1.0.1/readme.zh-cn.md -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-1.0.1/test/CMakeLists.txt -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/test/perftest/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-1.0.1/test/perftest/CMakeLists.txt -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/test/perftest/misctest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-1.0.1/test/perftest/misctest.cpp -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/test/perftest/perftest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-1.0.1/test/perftest/perftest.cpp -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/test/perftest/perftest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-1.0.1/test/perftest/perftest.h -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/test/perftest/platformtest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-1.0.1/test/perftest/platformtest.cpp -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/test/perftest/rapidjsontest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-1.0.1/test/perftest/rapidjsontest.cpp -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/test/unittest/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-1.0.1/test/unittest/CMakeLists.txt -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/test/unittest/allocatorstest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-1.0.1/test/unittest/allocatorstest.cpp -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/test/unittest/bigintegertest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-1.0.1/test/unittest/bigintegertest.cpp -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/test/unittest/documenttest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-1.0.1/test/unittest/documenttest.cpp -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/test/unittest/encodedstreamtest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-1.0.1/test/unittest/encodedstreamtest.cpp -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/test/unittest/encodingstest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-1.0.1/test/unittest/encodingstest.cpp -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/test/unittest/filestreamtest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-1.0.1/test/unittest/filestreamtest.cpp -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/test/unittest/itoatest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-1.0.1/test/unittest/itoatest.cpp -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/test/unittest/jsoncheckertest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-1.0.1/test/unittest/jsoncheckertest.cpp -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/test/unittest/namespacetest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-1.0.1/test/unittest/namespacetest.cpp -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/test/unittest/prettywritertest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-1.0.1/test/unittest/prettywritertest.cpp -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/test/unittest/readertest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-1.0.1/test/unittest/readertest.cpp -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/test/unittest/simdtest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-1.0.1/test/unittest/simdtest.cpp -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/test/unittest/stringbuffertest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-1.0.1/test/unittest/stringbuffertest.cpp -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/test/unittest/strtodtest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-1.0.1/test/unittest/strtodtest.cpp -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/test/unittest/unittest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-1.0.1/test/unittest/unittest.cpp -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/test/unittest/unittest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-1.0.1/test/unittest/unittest.h -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/test/unittest/valuetest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-1.0.1/test/unittest/valuetest.cpp -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/test/unittest/writertest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-1.0.1/test/unittest/writertest.cpp -------------------------------------------------------------------------------- /test_rapidjson-1.0.1/travis-doxygen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinwilliams/fasterjson/HEAD/test_rapidjson-1.0.1/travis-doxygen.sh --------------------------------------------------------------------------------