├── .clang-format ├── .gitattributes ├── .github └── ISSUE_TEMPLATE.md ├── .gitignore ├── .mbedignore ├── .travis.yml ├── ArduinoJson.h ├── CHANGELOG.md ├── CMakeLists.txt ├── LICENSE.md ├── README.md ├── appveyor.yml ├── examples ├── IndentedPrintExample │ └── IndentedPrintExample.ino ├── JsonGeneratorExample │ └── JsonGeneratorExample.ino ├── JsonHttpClient │ └── JsonHttpClient.ino ├── JsonParserExample │ └── JsonParserExample.ino ├── JsonServer │ └── JsonServer.ino ├── JsonUdpBeacon │ └── JsonUdpBeacon.ino ├── ProgmemExample │ └── ProgmemExample.ino └── StringExample │ └── StringExample.ino ├── fuzzing ├── Makefile ├── fuzz.sh ├── fuzzer.cpp ├── my_corpus │ └── .gitignore └── seed_corpus │ ├── Comments.json │ ├── EmptyArray.json │ ├── EmptyObject.json │ ├── ExcessiveNesting.json │ ├── Numbers.json │ ├── OpenWeatherMap.json │ ├── Strings.json │ └── WeatherUnderground.json ├── include ├── ArduinoJson.h ├── ArduinoJson.hpp └── ArduinoJson │ ├── Configuration.hpp │ ├── Data │ ├── Encoding.hpp │ ├── JsonBufferAllocated.hpp │ ├── JsonFloat.hpp │ ├── JsonInteger.hpp │ ├── JsonVariantAs.hpp │ ├── JsonVariantComparer.hpp │ ├── JsonVariantContent.hpp │ ├── JsonVariantDefault.hpp │ ├── JsonVariantType.hpp │ ├── List.hpp │ ├── ListConstIterator.hpp │ ├── ListIterator.hpp │ ├── ListNode.hpp │ ├── Parse.hpp │ ├── ReferenceType.hpp │ └── ValueSetter.hpp │ ├── Deserialization │ ├── Comments.hpp │ ├── JsonParser.hpp │ ├── JsonParserImpl.hpp │ └── StringWriter.hpp │ ├── DynamicJsonBuffer.hpp │ ├── JsonArray.hpp │ ├── JsonArrayImpl.hpp │ ├── JsonArraySubscript.hpp │ ├── JsonBuffer.hpp │ ├── JsonBufferBase.hpp │ ├── JsonBufferImpl.hpp │ ├── JsonObject.hpp │ ├── JsonObjectImpl.hpp │ ├── JsonObjectSubscript.hpp │ ├── JsonPair.hpp │ ├── JsonVariant.hpp │ ├── JsonVariantBase.hpp │ ├── JsonVariantComparisons.hpp │ ├── JsonVariantImpl.hpp │ ├── Polyfills │ ├── attributes.hpp │ ├── math.hpp │ └── normalize.hpp │ ├── Print.hpp │ ├── RawJson.hpp │ ├── Serialization │ ├── DummyPrint.hpp │ ├── DynamicStringBuilder.hpp │ ├── IndentedPrint.hpp │ ├── JsonPrintable.hpp │ ├── JsonSerializer.hpp │ ├── JsonSerializerImpl.hpp │ ├── JsonWriter.hpp │ ├── Prettyfier.hpp │ ├── StaticStringBuilder.hpp │ └── StreamPrintAdapter.hpp │ ├── StaticJsonBuffer.hpp │ ├── StringTraits │ ├── ArduinoStream.hpp │ ├── CharPointer.hpp │ ├── FlashString.hpp │ ├── StdStream.hpp │ ├── StdString.hpp │ └── StringTraits.hpp │ └── TypeTraits │ ├── EnableIf.hpp │ ├── IsArray.hpp │ ├── IsBaseOf.hpp │ ├── IsChar.hpp │ ├── IsConst.hpp │ ├── IsFloatingPoint.hpp │ ├── IsIntegral.hpp │ ├── IsSame.hpp │ ├── IsSignedIntegral.hpp │ ├── IsUnsignedIntegral.hpp │ ├── RemoveConst.hpp │ └── RemoveReference.hpp ├── keywords.txt ├── library.json ├── library.properties ├── scripts ├── build-arduino-package.sh ├── cpplint.sh ├── create-build-envs.sh ├── create-size-graph.sh ├── format-code.sh ├── oss-fuzz │ ├── .gitignore │ └── Vagrantfile ├── run-tests.sh └── travis │ ├── arduino.sh │ ├── cmake.sh │ ├── coverage.sh │ └── platformio.sh ├── test ├── CMakeLists.txt ├── Deprecated_Tests.cpp ├── DynamicJsonBuffer_Array_Tests.cpp ├── DynamicJsonBuffer_Basic_Tests.cpp ├── DynamicJsonBuffer_NoMemory_Tests.cpp ├── DynamicJsonBuffer_Object_Tests.cpp ├── DynamicJsonBuffer_String_Tests.cpp ├── GbathreeBug.cpp ├── IntegrationTests.cpp ├── Issue10.cpp ├── Issue214.cpp ├── Issue34.cpp ├── Issue90.cpp ├── JsonArray_Add_Tests.cpp ├── JsonArray_Basic_Tests.cpp ├── JsonArray_CopyFrom_Tests.cpp ├── JsonArray_CopyTo_Tests.cpp ├── JsonArray_Invalid_Tests.cpp ├── JsonArray_Iterator_Tests.cpp ├── JsonArray_PrettyPrintTo_Tests.cpp ├── JsonArray_PrintTo_Tests.cpp ├── JsonArray_Remove_Tests.cpp ├── JsonArray_Set_Tests.cpp ├── JsonArray_Subscript_Tests.cpp ├── JsonObject_Basic_Tests.cpp ├── JsonObject_ContainsKey_Tests.cpp ├── JsonObject_Get_Tests.cpp ├── JsonObject_Invalid_Tests.cpp ├── JsonObject_Iterator_Tests.cpp ├── JsonObject_PrettyPrintTo_Tests.cpp ├── JsonObject_PrintTo_Tests.cpp ├── JsonObject_Remove_Tests.cpp ├── JsonObject_Set_Tests.cpp ├── JsonObject_Subscript_Tests.cpp ├── JsonParser_Array_Tests.cpp ├── JsonParser_Nested_Tests.cpp ├── JsonParser_NestingLimit_Tests.cpp ├── JsonParser_Object_Tests.cpp ├── JsonParser_Variant_Tests.cpp ├── JsonVariant_As_Tests.cpp ├── JsonVariant_Comparison_Tests.cpp ├── JsonVariant_Copy_Tests.cpp ├── JsonVariant_Is_Tests.cpp ├── JsonVariant_PrintTo_Tests.cpp ├── JsonVariant_Storage_Tests.cpp ├── JsonVariant_Subscript_Tests.cpp ├── JsonVariant_Success_Tests.cpp ├── JsonVariant_Undefined_Tests.cpp ├── JsonWriter_WriteFloat_Tests.cpp ├── JsonWriter_WriteString_Tests.cpp ├── StaticJsonBuffer_Basic_Tests.cpp ├── StaticJsonBuffer_CreateArray_Tests.cpp ├── StaticJsonBuffer_CreateObject_Tests.cpp ├── StaticJsonBuffer_ParseArray_Tests.cpp ├── StaticJsonBuffer_ParseObject_Tests.cpp ├── StaticJsonBuffer_String_Tests.cpp ├── StdStream_Tests.cpp ├── StringBuilderTests.cpp ├── String_Tests.cpp ├── TypeTraits_Tests.cpp ├── UnsignedChar_Tests.cpp ├── VariableLengthArray_Tests.cpp └── gtest.cmake └── third-party ├── cpplint └── cpplint.py └── gtest-1.7.0 ├── CHANGES ├── CMakeLists.txt ├── CONTRIBUTORS ├── LICENSE ├── Makefile.am ├── Makefile.in ├── README ├── aclocal.m4 ├── build-aux ├── config.guess ├── config.h.in ├── config.sub ├── depcomp ├── install-sh ├── ltmain.sh └── missing ├── cmake └── internal_utils.cmake ├── codegear ├── gtest.cbproj ├── gtest.groupproj ├── gtest_all.cc ├── gtest_link.cc ├── gtest_main.cbproj └── gtest_unittest.cbproj ├── configure ├── configure.ac ├── fused-src └── gtest │ ├── gtest-all.cc │ ├── gtest.h │ └── gtest_main.cc ├── include └── gtest │ ├── gtest-death-test.h │ ├── gtest-message.h │ ├── gtest-param-test.h │ ├── gtest-param-test.h.pump │ ├── gtest-printers.h │ ├── gtest-spi.h │ ├── gtest-test-part.h │ ├── gtest-typed-test.h │ ├── gtest.h │ ├── gtest_pred_impl.h │ ├── gtest_prod.h │ └── internal │ ├── gtest-death-test-internal.h │ ├── gtest-filepath.h │ ├── gtest-internal.h │ ├── gtest-linked_ptr.h │ ├── gtest-param-util-generated.h │ ├── gtest-param-util-generated.h.pump │ ├── gtest-param-util.h │ ├── gtest-port.h │ ├── gtest-string.h │ ├── gtest-tuple.h │ ├── gtest-tuple.h.pump │ ├── gtest-type-util.h │ └── gtest-type-util.h.pump ├── m4 ├── acx_pthread.m4 ├── gtest.m4 ├── libtool.m4 ├── ltoptions.m4 ├── ltsugar.m4 ├── ltversion.m4 └── lt~obsolete.m4 ├── make └── Makefile ├── msvc ├── gtest-md.sln ├── gtest-md.vcproj ├── gtest.sln ├── gtest.vcproj ├── gtest_main-md.vcproj ├── gtest_main.vcproj ├── gtest_prod_test-md.vcproj ├── gtest_prod_test.vcproj ├── gtest_unittest-md.vcproj └── gtest_unittest.vcproj ├── samples ├── prime_tables.h ├── sample1.cc ├── sample1.h ├── sample10_unittest.cc ├── sample1_unittest.cc ├── sample2.cc ├── sample2.h ├── sample2_unittest.cc ├── sample3-inl.h ├── sample3_unittest.cc ├── sample4.cc ├── sample4.h ├── sample4_unittest.cc ├── sample5_unittest.cc ├── sample6_unittest.cc ├── sample7_unittest.cc ├── sample8_unittest.cc └── sample9_unittest.cc ├── scripts ├── fuse_gtest_files.py ├── gen_gtest_pred_impl.py ├── gtest-config.in ├── pump.py └── test │ └── Makefile ├── src ├── gtest-all.cc ├── gtest-death-test.cc ├── gtest-filepath.cc ├── gtest-internal-inl.h ├── gtest-port.cc ├── gtest-printers.cc ├── gtest-test-part.cc ├── gtest-typed-test.cc ├── gtest.cc └── gtest_main.cc ├── test ├── gtest-death-test_ex_test.cc ├── gtest-death-test_test.cc ├── gtest-filepath_test.cc ├── gtest-linked_ptr_test.cc ├── gtest-listener_test.cc ├── gtest-message_test.cc ├── gtest-options_test.cc ├── gtest-param-test2_test.cc ├── gtest-param-test_test.cc ├── gtest-param-test_test.h ├── gtest-port_test.cc ├── gtest-printers_test.cc ├── gtest-test-part_test.cc ├── gtest-tuple_test.cc ├── gtest-typed-test2_test.cc ├── gtest-typed-test_test.cc ├── gtest-typed-test_test.h ├── gtest-unittest-api_test.cc ├── gtest_all_test.cc ├── gtest_break_on_failure_unittest.py ├── gtest_break_on_failure_unittest_.cc ├── gtest_catch_exceptions_test.py ├── gtest_catch_exceptions_test_.cc ├── gtest_color_test.py ├── gtest_color_test_.cc ├── gtest_env_var_test.py ├── gtest_env_var_test_.cc ├── gtest_environment_test.cc ├── gtest_filter_unittest.py ├── gtest_filter_unittest_.cc ├── gtest_help_test.py ├── gtest_help_test_.cc ├── gtest_list_tests_unittest.py ├── gtest_list_tests_unittest_.cc ├── gtest_main_unittest.cc ├── gtest_no_test_unittest.cc ├── gtest_output_test.py ├── gtest_output_test_.cc ├── gtest_output_test_golden_lin.txt ├── gtest_pred_impl_unittest.cc ├── gtest_premature_exit_test.cc ├── gtest_prod_test.cc ├── gtest_repeat_test.cc ├── gtest_shuffle_test.py ├── gtest_shuffle_test_.cc ├── gtest_sole_header_test.cc ├── gtest_stress_test.cc ├── gtest_test_utils.py ├── gtest_throw_on_failure_ex_test.cc ├── gtest_throw_on_failure_test.py ├── gtest_throw_on_failure_test_.cc ├── gtest_uninitialized_test.py ├── gtest_uninitialized_test_.cc ├── gtest_unittest.cc ├── gtest_xml_outfile1_test_.cc ├── gtest_xml_outfile2_test_.cc ├── gtest_xml_outfiles_test.py ├── gtest_xml_output_unittest.py ├── gtest_xml_output_unittest_.cc ├── gtest_xml_test_utils.py ├── production.cc └── production.h └── xcode ├── Config ├── DebugProject.xcconfig ├── FrameworkTarget.xcconfig ├── General.xcconfig ├── ReleaseProject.xcconfig ├── StaticLibraryTarget.xcconfig └── TestTarget.xcconfig ├── Resources └── Info.plist ├── Samples └── FrameworkSample │ ├── Info.plist │ ├── WidgetFramework.xcodeproj │ └── project.pbxproj │ ├── runtests.sh │ ├── widget.cc │ ├── widget.h │ └── widget_test.cc ├── Scripts ├── runtests.sh └── versiongenerate.py └── gtest.xcodeproj └── project.pbxproj /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.sh text eol=lf -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/.gitignore -------------------------------------------------------------------------------- /.mbedignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/.mbedignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/.travis.yml -------------------------------------------------------------------------------- /ArduinoJson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/ArduinoJson.h -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/appveyor.yml -------------------------------------------------------------------------------- /examples/IndentedPrintExample/IndentedPrintExample.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/examples/IndentedPrintExample/IndentedPrintExample.ino -------------------------------------------------------------------------------- /examples/JsonGeneratorExample/JsonGeneratorExample.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/examples/JsonGeneratorExample/JsonGeneratorExample.ino -------------------------------------------------------------------------------- /examples/JsonHttpClient/JsonHttpClient.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/examples/JsonHttpClient/JsonHttpClient.ino -------------------------------------------------------------------------------- /examples/JsonParserExample/JsonParserExample.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/examples/JsonParserExample/JsonParserExample.ino -------------------------------------------------------------------------------- /examples/JsonServer/JsonServer.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/examples/JsonServer/JsonServer.ino -------------------------------------------------------------------------------- /examples/JsonUdpBeacon/JsonUdpBeacon.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/examples/JsonUdpBeacon/JsonUdpBeacon.ino -------------------------------------------------------------------------------- /examples/ProgmemExample/ProgmemExample.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/examples/ProgmemExample/ProgmemExample.ino -------------------------------------------------------------------------------- /examples/StringExample/StringExample.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/examples/StringExample/StringExample.ino -------------------------------------------------------------------------------- /fuzzing/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/fuzzing/Makefile -------------------------------------------------------------------------------- /fuzzing/fuzz.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/fuzzing/fuzz.sh -------------------------------------------------------------------------------- /fuzzing/fuzzer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/fuzzing/fuzzer.cpp -------------------------------------------------------------------------------- /fuzzing/my_corpus/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /fuzzing/seed_corpus/Comments.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/fuzzing/seed_corpus/Comments.json -------------------------------------------------------------------------------- /fuzzing/seed_corpus/EmptyArray.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /fuzzing/seed_corpus/EmptyObject.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /fuzzing/seed_corpus/ExcessiveNesting.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/fuzzing/seed_corpus/ExcessiveNesting.json -------------------------------------------------------------------------------- /fuzzing/seed_corpus/Numbers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/fuzzing/seed_corpus/Numbers.json -------------------------------------------------------------------------------- /fuzzing/seed_corpus/OpenWeatherMap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/fuzzing/seed_corpus/OpenWeatherMap.json -------------------------------------------------------------------------------- /fuzzing/seed_corpus/Strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/fuzzing/seed_corpus/Strings.json -------------------------------------------------------------------------------- /fuzzing/seed_corpus/WeatherUnderground.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/fuzzing/seed_corpus/WeatherUnderground.json -------------------------------------------------------------------------------- /include/ArduinoJson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/include/ArduinoJson.h -------------------------------------------------------------------------------- /include/ArduinoJson.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/include/ArduinoJson.hpp -------------------------------------------------------------------------------- /include/ArduinoJson/Configuration.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/include/ArduinoJson/Configuration.hpp -------------------------------------------------------------------------------- /include/ArduinoJson/Data/Encoding.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/include/ArduinoJson/Data/Encoding.hpp -------------------------------------------------------------------------------- /include/ArduinoJson/Data/JsonBufferAllocated.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/include/ArduinoJson/Data/JsonBufferAllocated.hpp -------------------------------------------------------------------------------- /include/ArduinoJson/Data/JsonFloat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/include/ArduinoJson/Data/JsonFloat.hpp -------------------------------------------------------------------------------- /include/ArduinoJson/Data/JsonInteger.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/include/ArduinoJson/Data/JsonInteger.hpp -------------------------------------------------------------------------------- /include/ArduinoJson/Data/JsonVariantAs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/include/ArduinoJson/Data/JsonVariantAs.hpp -------------------------------------------------------------------------------- /include/ArduinoJson/Data/JsonVariantComparer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/include/ArduinoJson/Data/JsonVariantComparer.hpp -------------------------------------------------------------------------------- /include/ArduinoJson/Data/JsonVariantContent.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/include/ArduinoJson/Data/JsonVariantContent.hpp -------------------------------------------------------------------------------- /include/ArduinoJson/Data/JsonVariantDefault.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/include/ArduinoJson/Data/JsonVariantDefault.hpp -------------------------------------------------------------------------------- /include/ArduinoJson/Data/JsonVariantType.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/include/ArduinoJson/Data/JsonVariantType.hpp -------------------------------------------------------------------------------- /include/ArduinoJson/Data/List.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/include/ArduinoJson/Data/List.hpp -------------------------------------------------------------------------------- /include/ArduinoJson/Data/ListConstIterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/include/ArduinoJson/Data/ListConstIterator.hpp -------------------------------------------------------------------------------- /include/ArduinoJson/Data/ListIterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/include/ArduinoJson/Data/ListIterator.hpp -------------------------------------------------------------------------------- /include/ArduinoJson/Data/ListNode.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/include/ArduinoJson/Data/ListNode.hpp -------------------------------------------------------------------------------- /include/ArduinoJson/Data/Parse.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/include/ArduinoJson/Data/Parse.hpp -------------------------------------------------------------------------------- /include/ArduinoJson/Data/ReferenceType.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/include/ArduinoJson/Data/ReferenceType.hpp -------------------------------------------------------------------------------- /include/ArduinoJson/Data/ValueSetter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/include/ArduinoJson/Data/ValueSetter.hpp -------------------------------------------------------------------------------- /include/ArduinoJson/Deserialization/Comments.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/include/ArduinoJson/Deserialization/Comments.hpp -------------------------------------------------------------------------------- /include/ArduinoJson/Deserialization/JsonParser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/include/ArduinoJson/Deserialization/JsonParser.hpp -------------------------------------------------------------------------------- /include/ArduinoJson/Deserialization/JsonParserImpl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/include/ArduinoJson/Deserialization/JsonParserImpl.hpp -------------------------------------------------------------------------------- /include/ArduinoJson/Deserialization/StringWriter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/include/ArduinoJson/Deserialization/StringWriter.hpp -------------------------------------------------------------------------------- /include/ArduinoJson/DynamicJsonBuffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/include/ArduinoJson/DynamicJsonBuffer.hpp -------------------------------------------------------------------------------- /include/ArduinoJson/JsonArray.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/include/ArduinoJson/JsonArray.hpp -------------------------------------------------------------------------------- /include/ArduinoJson/JsonArrayImpl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/include/ArduinoJson/JsonArrayImpl.hpp -------------------------------------------------------------------------------- /include/ArduinoJson/JsonArraySubscript.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/include/ArduinoJson/JsonArraySubscript.hpp -------------------------------------------------------------------------------- /include/ArduinoJson/JsonBuffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/include/ArduinoJson/JsonBuffer.hpp -------------------------------------------------------------------------------- /include/ArduinoJson/JsonBufferBase.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/include/ArduinoJson/JsonBufferBase.hpp -------------------------------------------------------------------------------- /include/ArduinoJson/JsonBufferImpl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/include/ArduinoJson/JsonBufferImpl.hpp -------------------------------------------------------------------------------- /include/ArduinoJson/JsonObject.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/include/ArduinoJson/JsonObject.hpp -------------------------------------------------------------------------------- /include/ArduinoJson/JsonObjectImpl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/include/ArduinoJson/JsonObjectImpl.hpp -------------------------------------------------------------------------------- /include/ArduinoJson/JsonObjectSubscript.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/include/ArduinoJson/JsonObjectSubscript.hpp -------------------------------------------------------------------------------- /include/ArduinoJson/JsonPair.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/include/ArduinoJson/JsonPair.hpp -------------------------------------------------------------------------------- /include/ArduinoJson/JsonVariant.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/include/ArduinoJson/JsonVariant.hpp -------------------------------------------------------------------------------- /include/ArduinoJson/JsonVariantBase.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/include/ArduinoJson/JsonVariantBase.hpp -------------------------------------------------------------------------------- /include/ArduinoJson/JsonVariantComparisons.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/include/ArduinoJson/JsonVariantComparisons.hpp -------------------------------------------------------------------------------- /include/ArduinoJson/JsonVariantImpl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/include/ArduinoJson/JsonVariantImpl.hpp -------------------------------------------------------------------------------- /include/ArduinoJson/Polyfills/attributes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/include/ArduinoJson/Polyfills/attributes.hpp -------------------------------------------------------------------------------- /include/ArduinoJson/Polyfills/math.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/include/ArduinoJson/Polyfills/math.hpp -------------------------------------------------------------------------------- /include/ArduinoJson/Polyfills/normalize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/include/ArduinoJson/Polyfills/normalize.hpp -------------------------------------------------------------------------------- /include/ArduinoJson/Print.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/include/ArduinoJson/Print.hpp -------------------------------------------------------------------------------- /include/ArduinoJson/RawJson.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/include/ArduinoJson/RawJson.hpp -------------------------------------------------------------------------------- /include/ArduinoJson/Serialization/DummyPrint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/include/ArduinoJson/Serialization/DummyPrint.hpp -------------------------------------------------------------------------------- /include/ArduinoJson/Serialization/DynamicStringBuilder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/include/ArduinoJson/Serialization/DynamicStringBuilder.hpp -------------------------------------------------------------------------------- /include/ArduinoJson/Serialization/IndentedPrint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/include/ArduinoJson/Serialization/IndentedPrint.hpp -------------------------------------------------------------------------------- /include/ArduinoJson/Serialization/JsonPrintable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/include/ArduinoJson/Serialization/JsonPrintable.hpp -------------------------------------------------------------------------------- /include/ArduinoJson/Serialization/JsonSerializer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/include/ArduinoJson/Serialization/JsonSerializer.hpp -------------------------------------------------------------------------------- /include/ArduinoJson/Serialization/JsonSerializerImpl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/include/ArduinoJson/Serialization/JsonSerializerImpl.hpp -------------------------------------------------------------------------------- /include/ArduinoJson/Serialization/JsonWriter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/include/ArduinoJson/Serialization/JsonWriter.hpp -------------------------------------------------------------------------------- /include/ArduinoJson/Serialization/Prettyfier.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/include/ArduinoJson/Serialization/Prettyfier.hpp -------------------------------------------------------------------------------- /include/ArduinoJson/Serialization/StaticStringBuilder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/include/ArduinoJson/Serialization/StaticStringBuilder.hpp -------------------------------------------------------------------------------- /include/ArduinoJson/Serialization/StreamPrintAdapter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/include/ArduinoJson/Serialization/StreamPrintAdapter.hpp -------------------------------------------------------------------------------- /include/ArduinoJson/StaticJsonBuffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/include/ArduinoJson/StaticJsonBuffer.hpp -------------------------------------------------------------------------------- /include/ArduinoJson/StringTraits/ArduinoStream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/include/ArduinoJson/StringTraits/ArduinoStream.hpp -------------------------------------------------------------------------------- /include/ArduinoJson/StringTraits/CharPointer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/include/ArduinoJson/StringTraits/CharPointer.hpp -------------------------------------------------------------------------------- /include/ArduinoJson/StringTraits/FlashString.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/include/ArduinoJson/StringTraits/FlashString.hpp -------------------------------------------------------------------------------- /include/ArduinoJson/StringTraits/StdStream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/include/ArduinoJson/StringTraits/StdStream.hpp -------------------------------------------------------------------------------- /include/ArduinoJson/StringTraits/StdString.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/include/ArduinoJson/StringTraits/StdString.hpp -------------------------------------------------------------------------------- /include/ArduinoJson/StringTraits/StringTraits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/include/ArduinoJson/StringTraits/StringTraits.hpp -------------------------------------------------------------------------------- /include/ArduinoJson/TypeTraits/EnableIf.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/include/ArduinoJson/TypeTraits/EnableIf.hpp -------------------------------------------------------------------------------- /include/ArduinoJson/TypeTraits/IsArray.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/include/ArduinoJson/TypeTraits/IsArray.hpp -------------------------------------------------------------------------------- /include/ArduinoJson/TypeTraits/IsBaseOf.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/include/ArduinoJson/TypeTraits/IsBaseOf.hpp -------------------------------------------------------------------------------- /include/ArduinoJson/TypeTraits/IsChar.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/include/ArduinoJson/TypeTraits/IsChar.hpp -------------------------------------------------------------------------------- /include/ArduinoJson/TypeTraits/IsConst.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/include/ArduinoJson/TypeTraits/IsConst.hpp -------------------------------------------------------------------------------- /include/ArduinoJson/TypeTraits/IsFloatingPoint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/include/ArduinoJson/TypeTraits/IsFloatingPoint.hpp -------------------------------------------------------------------------------- /include/ArduinoJson/TypeTraits/IsIntegral.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/include/ArduinoJson/TypeTraits/IsIntegral.hpp -------------------------------------------------------------------------------- /include/ArduinoJson/TypeTraits/IsSame.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/include/ArduinoJson/TypeTraits/IsSame.hpp -------------------------------------------------------------------------------- /include/ArduinoJson/TypeTraits/IsSignedIntegral.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/include/ArduinoJson/TypeTraits/IsSignedIntegral.hpp -------------------------------------------------------------------------------- /include/ArduinoJson/TypeTraits/IsUnsignedIntegral.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/include/ArduinoJson/TypeTraits/IsUnsignedIntegral.hpp -------------------------------------------------------------------------------- /include/ArduinoJson/TypeTraits/RemoveConst.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/include/ArduinoJson/TypeTraits/RemoveConst.hpp -------------------------------------------------------------------------------- /include/ArduinoJson/TypeTraits/RemoveReference.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/include/ArduinoJson/TypeTraits/RemoveReference.hpp -------------------------------------------------------------------------------- /keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/keywords.txt -------------------------------------------------------------------------------- /library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/library.json -------------------------------------------------------------------------------- /library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/library.properties -------------------------------------------------------------------------------- /scripts/build-arduino-package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/scripts/build-arduino-package.sh -------------------------------------------------------------------------------- /scripts/cpplint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/scripts/cpplint.sh -------------------------------------------------------------------------------- /scripts/create-build-envs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/scripts/create-build-envs.sh -------------------------------------------------------------------------------- /scripts/create-size-graph.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/scripts/create-size-graph.sh -------------------------------------------------------------------------------- /scripts/format-code.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/scripts/format-code.sh -------------------------------------------------------------------------------- /scripts/oss-fuzz/.gitignore: -------------------------------------------------------------------------------- 1 | /.vagrant/ 2 | *.log 3 | -------------------------------------------------------------------------------- /scripts/oss-fuzz/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/scripts/oss-fuzz/Vagrantfile -------------------------------------------------------------------------------- /scripts/run-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/scripts/run-tests.sh -------------------------------------------------------------------------------- /scripts/travis/arduino.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/scripts/travis/arduino.sh -------------------------------------------------------------------------------- /scripts/travis/cmake.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/scripts/travis/cmake.sh -------------------------------------------------------------------------------- /scripts/travis/coverage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/scripts/travis/coverage.sh -------------------------------------------------------------------------------- /scripts/travis/platformio.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/scripts/travis/platformio.sh -------------------------------------------------------------------------------- /test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/test/CMakeLists.txt -------------------------------------------------------------------------------- /test/Deprecated_Tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/test/Deprecated_Tests.cpp -------------------------------------------------------------------------------- /test/DynamicJsonBuffer_Array_Tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/test/DynamicJsonBuffer_Array_Tests.cpp -------------------------------------------------------------------------------- /test/DynamicJsonBuffer_Basic_Tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/test/DynamicJsonBuffer_Basic_Tests.cpp -------------------------------------------------------------------------------- /test/DynamicJsonBuffer_NoMemory_Tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/test/DynamicJsonBuffer_NoMemory_Tests.cpp -------------------------------------------------------------------------------- /test/DynamicJsonBuffer_Object_Tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/test/DynamicJsonBuffer_Object_Tests.cpp -------------------------------------------------------------------------------- /test/DynamicJsonBuffer_String_Tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/test/DynamicJsonBuffer_String_Tests.cpp -------------------------------------------------------------------------------- /test/GbathreeBug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/test/GbathreeBug.cpp -------------------------------------------------------------------------------- /test/IntegrationTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/test/IntegrationTests.cpp -------------------------------------------------------------------------------- /test/Issue10.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/test/Issue10.cpp -------------------------------------------------------------------------------- /test/Issue214.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/test/Issue214.cpp -------------------------------------------------------------------------------- /test/Issue34.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/test/Issue34.cpp -------------------------------------------------------------------------------- /test/Issue90.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/test/Issue90.cpp -------------------------------------------------------------------------------- /test/JsonArray_Add_Tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/test/JsonArray_Add_Tests.cpp -------------------------------------------------------------------------------- /test/JsonArray_Basic_Tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/test/JsonArray_Basic_Tests.cpp -------------------------------------------------------------------------------- /test/JsonArray_CopyFrom_Tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/test/JsonArray_CopyFrom_Tests.cpp -------------------------------------------------------------------------------- /test/JsonArray_CopyTo_Tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/test/JsonArray_CopyTo_Tests.cpp -------------------------------------------------------------------------------- /test/JsonArray_Invalid_Tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/test/JsonArray_Invalid_Tests.cpp -------------------------------------------------------------------------------- /test/JsonArray_Iterator_Tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/test/JsonArray_Iterator_Tests.cpp -------------------------------------------------------------------------------- /test/JsonArray_PrettyPrintTo_Tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/test/JsonArray_PrettyPrintTo_Tests.cpp -------------------------------------------------------------------------------- /test/JsonArray_PrintTo_Tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/test/JsonArray_PrintTo_Tests.cpp -------------------------------------------------------------------------------- /test/JsonArray_Remove_Tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/test/JsonArray_Remove_Tests.cpp -------------------------------------------------------------------------------- /test/JsonArray_Set_Tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/test/JsonArray_Set_Tests.cpp -------------------------------------------------------------------------------- /test/JsonArray_Subscript_Tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/test/JsonArray_Subscript_Tests.cpp -------------------------------------------------------------------------------- /test/JsonObject_Basic_Tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/test/JsonObject_Basic_Tests.cpp -------------------------------------------------------------------------------- /test/JsonObject_ContainsKey_Tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/test/JsonObject_ContainsKey_Tests.cpp -------------------------------------------------------------------------------- /test/JsonObject_Get_Tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/test/JsonObject_Get_Tests.cpp -------------------------------------------------------------------------------- /test/JsonObject_Invalid_Tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/test/JsonObject_Invalid_Tests.cpp -------------------------------------------------------------------------------- /test/JsonObject_Iterator_Tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/test/JsonObject_Iterator_Tests.cpp -------------------------------------------------------------------------------- /test/JsonObject_PrettyPrintTo_Tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/test/JsonObject_PrettyPrintTo_Tests.cpp -------------------------------------------------------------------------------- /test/JsonObject_PrintTo_Tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/test/JsonObject_PrintTo_Tests.cpp -------------------------------------------------------------------------------- /test/JsonObject_Remove_Tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/test/JsonObject_Remove_Tests.cpp -------------------------------------------------------------------------------- /test/JsonObject_Set_Tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/test/JsonObject_Set_Tests.cpp -------------------------------------------------------------------------------- /test/JsonObject_Subscript_Tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/test/JsonObject_Subscript_Tests.cpp -------------------------------------------------------------------------------- /test/JsonParser_Array_Tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/test/JsonParser_Array_Tests.cpp -------------------------------------------------------------------------------- /test/JsonParser_Nested_Tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/test/JsonParser_Nested_Tests.cpp -------------------------------------------------------------------------------- /test/JsonParser_NestingLimit_Tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/test/JsonParser_NestingLimit_Tests.cpp -------------------------------------------------------------------------------- /test/JsonParser_Object_Tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/test/JsonParser_Object_Tests.cpp -------------------------------------------------------------------------------- /test/JsonParser_Variant_Tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/test/JsonParser_Variant_Tests.cpp -------------------------------------------------------------------------------- /test/JsonVariant_As_Tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/test/JsonVariant_As_Tests.cpp -------------------------------------------------------------------------------- /test/JsonVariant_Comparison_Tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/test/JsonVariant_Comparison_Tests.cpp -------------------------------------------------------------------------------- /test/JsonVariant_Copy_Tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/test/JsonVariant_Copy_Tests.cpp -------------------------------------------------------------------------------- /test/JsonVariant_Is_Tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/test/JsonVariant_Is_Tests.cpp -------------------------------------------------------------------------------- /test/JsonVariant_PrintTo_Tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/test/JsonVariant_PrintTo_Tests.cpp -------------------------------------------------------------------------------- /test/JsonVariant_Storage_Tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/test/JsonVariant_Storage_Tests.cpp -------------------------------------------------------------------------------- /test/JsonVariant_Subscript_Tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/test/JsonVariant_Subscript_Tests.cpp -------------------------------------------------------------------------------- /test/JsonVariant_Success_Tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/test/JsonVariant_Success_Tests.cpp -------------------------------------------------------------------------------- /test/JsonVariant_Undefined_Tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/test/JsonVariant_Undefined_Tests.cpp -------------------------------------------------------------------------------- /test/JsonWriter_WriteFloat_Tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/test/JsonWriter_WriteFloat_Tests.cpp -------------------------------------------------------------------------------- /test/JsonWriter_WriteString_Tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/test/JsonWriter_WriteString_Tests.cpp -------------------------------------------------------------------------------- /test/StaticJsonBuffer_Basic_Tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/test/StaticJsonBuffer_Basic_Tests.cpp -------------------------------------------------------------------------------- /test/StaticJsonBuffer_CreateArray_Tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/test/StaticJsonBuffer_CreateArray_Tests.cpp -------------------------------------------------------------------------------- /test/StaticJsonBuffer_CreateObject_Tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/test/StaticJsonBuffer_CreateObject_Tests.cpp -------------------------------------------------------------------------------- /test/StaticJsonBuffer_ParseArray_Tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/test/StaticJsonBuffer_ParseArray_Tests.cpp -------------------------------------------------------------------------------- /test/StaticJsonBuffer_ParseObject_Tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/test/StaticJsonBuffer_ParseObject_Tests.cpp -------------------------------------------------------------------------------- /test/StaticJsonBuffer_String_Tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/test/StaticJsonBuffer_String_Tests.cpp -------------------------------------------------------------------------------- /test/StdStream_Tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/test/StdStream_Tests.cpp -------------------------------------------------------------------------------- /test/StringBuilderTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/test/StringBuilderTests.cpp -------------------------------------------------------------------------------- /test/String_Tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/test/String_Tests.cpp -------------------------------------------------------------------------------- /test/TypeTraits_Tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/test/TypeTraits_Tests.cpp -------------------------------------------------------------------------------- /test/UnsignedChar_Tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/test/UnsignedChar_Tests.cpp -------------------------------------------------------------------------------- /test/VariableLengthArray_Tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/test/VariableLengthArray_Tests.cpp -------------------------------------------------------------------------------- /test/gtest.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/test/gtest.cmake -------------------------------------------------------------------------------- /third-party/cpplint/cpplint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/cpplint/cpplint.py -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/CHANGES -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/CMakeLists.txt -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/CONTRIBUTORS -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/LICENSE -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/Makefile.am -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/Makefile.in -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/README -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/aclocal.m4 -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/build-aux/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/build-aux/config.guess -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/build-aux/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/build-aux/config.h.in -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/build-aux/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/build-aux/config.sub -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/build-aux/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/build-aux/depcomp -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/build-aux/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/build-aux/install-sh -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/build-aux/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/build-aux/ltmain.sh -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/build-aux/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/build-aux/missing -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/cmake/internal_utils.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/cmake/internal_utils.cmake -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/codegear/gtest.cbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/codegear/gtest.cbproj -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/codegear/gtest.groupproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/codegear/gtest.groupproj -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/codegear/gtest_all.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/codegear/gtest_all.cc -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/codegear/gtest_link.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/codegear/gtest_link.cc -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/codegear/gtest_main.cbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/codegear/gtest_main.cbproj -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/codegear/gtest_unittest.cbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/codegear/gtest_unittest.cbproj -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/configure -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/configure.ac -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/fused-src/gtest/gtest-all.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/fused-src/gtest/gtest-all.cc -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/fused-src/gtest/gtest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/fused-src/gtest/gtest.h -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/fused-src/gtest/gtest_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/fused-src/gtest/gtest_main.cc -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/include/gtest/gtest-death-test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/include/gtest/gtest-death-test.h -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/include/gtest/gtest-message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/include/gtest/gtest-message.h -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/include/gtest/gtest-param-test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/include/gtest/gtest-param-test.h -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/include/gtest/gtest-param-test.h.pump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/include/gtest/gtest-param-test.h.pump -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/include/gtest/gtest-printers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/include/gtest/gtest-printers.h -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/include/gtest/gtest-spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/include/gtest/gtest-spi.h -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/include/gtest/gtest-test-part.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/include/gtest/gtest-test-part.h -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/include/gtest/gtest-typed-test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/include/gtest/gtest-typed-test.h -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/include/gtest/gtest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/include/gtest/gtest.h -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/include/gtest/gtest_pred_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/include/gtest/gtest_pred_impl.h -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/include/gtest/gtest_prod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/include/gtest/gtest_prod.h -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/include/gtest/internal/gtest-death-test-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/include/gtest/internal/gtest-death-test-internal.h -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/include/gtest/internal/gtest-filepath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/include/gtest/internal/gtest-filepath.h -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/include/gtest/internal/gtest-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/include/gtest/internal/gtest-internal.h -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/include/gtest/internal/gtest-linked_ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/include/gtest/internal/gtest-linked_ptr.h -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/include/gtest/internal/gtest-param-util-generated.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/include/gtest/internal/gtest-param-util-generated.h -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/include/gtest/internal/gtest-param-util-generated.h.pump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/include/gtest/internal/gtest-param-util-generated.h.pump -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/include/gtest/internal/gtest-param-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/include/gtest/internal/gtest-param-util.h -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/include/gtest/internal/gtest-port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/include/gtest/internal/gtest-port.h -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/include/gtest/internal/gtest-string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/include/gtest/internal/gtest-string.h -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/include/gtest/internal/gtest-tuple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/include/gtest/internal/gtest-tuple.h -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/include/gtest/internal/gtest-tuple.h.pump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/include/gtest/internal/gtest-tuple.h.pump -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/include/gtest/internal/gtest-type-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/include/gtest/internal/gtest-type-util.h -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/include/gtest/internal/gtest-type-util.h.pump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/include/gtest/internal/gtest-type-util.h.pump -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/m4/acx_pthread.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/m4/acx_pthread.m4 -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/m4/gtest.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/m4/gtest.m4 -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/m4/libtool.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/m4/libtool.m4 -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/m4/ltoptions.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/m4/ltoptions.m4 -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/m4/ltsugar.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/m4/ltsugar.m4 -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/m4/ltversion.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/m4/ltversion.m4 -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/m4/lt~obsolete.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/m4/lt~obsolete.m4 -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/make/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/make/Makefile -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/msvc/gtest-md.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/msvc/gtest-md.sln -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/msvc/gtest-md.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/msvc/gtest-md.vcproj -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/msvc/gtest.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/msvc/gtest.sln -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/msvc/gtest.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/msvc/gtest.vcproj -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/msvc/gtest_main-md.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/msvc/gtest_main-md.vcproj -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/msvc/gtest_main.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/msvc/gtest_main.vcproj -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/msvc/gtest_prod_test-md.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/msvc/gtest_prod_test-md.vcproj -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/msvc/gtest_prod_test.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/msvc/gtest_prod_test.vcproj -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/msvc/gtest_unittest-md.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/msvc/gtest_unittest-md.vcproj -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/msvc/gtest_unittest.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/msvc/gtest_unittest.vcproj -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/samples/prime_tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/samples/prime_tables.h -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/samples/sample1.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/samples/sample1.cc -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/samples/sample1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/samples/sample1.h -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/samples/sample10_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/samples/sample10_unittest.cc -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/samples/sample1_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/samples/sample1_unittest.cc -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/samples/sample2.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/samples/sample2.cc -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/samples/sample2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/samples/sample2.h -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/samples/sample2_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/samples/sample2_unittest.cc -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/samples/sample3-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/samples/sample3-inl.h -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/samples/sample3_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/samples/sample3_unittest.cc -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/samples/sample4.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/samples/sample4.cc -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/samples/sample4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/samples/sample4.h -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/samples/sample4_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/samples/sample4_unittest.cc -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/samples/sample5_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/samples/sample5_unittest.cc -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/samples/sample6_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/samples/sample6_unittest.cc -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/samples/sample7_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/samples/sample7_unittest.cc -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/samples/sample8_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/samples/sample8_unittest.cc -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/samples/sample9_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/samples/sample9_unittest.cc -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/scripts/fuse_gtest_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/scripts/fuse_gtest_files.py -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/scripts/gen_gtest_pred_impl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/scripts/gen_gtest_pred_impl.py -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/scripts/gtest-config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/scripts/gtest-config.in -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/scripts/pump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/scripts/pump.py -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/scripts/test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/scripts/test/Makefile -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/src/gtest-all.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/src/gtest-all.cc -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/src/gtest-death-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/src/gtest-death-test.cc -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/src/gtest-filepath.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/src/gtest-filepath.cc -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/src/gtest-internal-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/src/gtest-internal-inl.h -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/src/gtest-port.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/src/gtest-port.cc -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/src/gtest-printers.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/src/gtest-printers.cc -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/src/gtest-test-part.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/src/gtest-test-part.cc -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/src/gtest-typed-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/src/gtest-typed-test.cc -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/src/gtest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/src/gtest.cc -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/src/gtest_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/src/gtest_main.cc -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/test/gtest-death-test_ex_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/test/gtest-death-test_ex_test.cc -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/test/gtest-death-test_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/test/gtest-death-test_test.cc -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/test/gtest-filepath_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/test/gtest-filepath_test.cc -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/test/gtest-linked_ptr_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/test/gtest-linked_ptr_test.cc -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/test/gtest-listener_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/test/gtest-listener_test.cc -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/test/gtest-message_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/test/gtest-message_test.cc -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/test/gtest-options_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/test/gtest-options_test.cc -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/test/gtest-param-test2_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/test/gtest-param-test2_test.cc -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/test/gtest-param-test_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/test/gtest-param-test_test.cc -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/test/gtest-param-test_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/test/gtest-param-test_test.h -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/test/gtest-port_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/test/gtest-port_test.cc -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/test/gtest-printers_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/test/gtest-printers_test.cc -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/test/gtest-test-part_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/test/gtest-test-part_test.cc -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/test/gtest-tuple_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/test/gtest-tuple_test.cc -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/test/gtest-typed-test2_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/test/gtest-typed-test2_test.cc -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/test/gtest-typed-test_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/test/gtest-typed-test_test.cc -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/test/gtest-typed-test_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/test/gtest-typed-test_test.h -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/test/gtest-unittest-api_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/test/gtest-unittest-api_test.cc -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/test/gtest_all_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/test/gtest_all_test.cc -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/test/gtest_break_on_failure_unittest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/test/gtest_break_on_failure_unittest.py -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/test/gtest_break_on_failure_unittest_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/test/gtest_break_on_failure_unittest_.cc -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/test/gtest_catch_exceptions_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/test/gtest_catch_exceptions_test.py -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/test/gtest_catch_exceptions_test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/test/gtest_catch_exceptions_test_.cc -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/test/gtest_color_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/test/gtest_color_test.py -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/test/gtest_color_test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/test/gtest_color_test_.cc -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/test/gtest_env_var_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/test/gtest_env_var_test.py -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/test/gtest_env_var_test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/test/gtest_env_var_test_.cc -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/test/gtest_environment_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/test/gtest_environment_test.cc -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/test/gtest_filter_unittest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/test/gtest_filter_unittest.py -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/test/gtest_filter_unittest_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/test/gtest_filter_unittest_.cc -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/test/gtest_help_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/test/gtest_help_test.py -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/test/gtest_help_test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/test/gtest_help_test_.cc -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/test/gtest_list_tests_unittest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/test/gtest_list_tests_unittest.py -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/test/gtest_list_tests_unittest_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/test/gtest_list_tests_unittest_.cc -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/test/gtest_main_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/test/gtest_main_unittest.cc -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/test/gtest_no_test_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/test/gtest_no_test_unittest.cc -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/test/gtest_output_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/test/gtest_output_test.py -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/test/gtest_output_test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/test/gtest_output_test_.cc -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/test/gtest_output_test_golden_lin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/test/gtest_output_test_golden_lin.txt -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/test/gtest_pred_impl_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/test/gtest_pred_impl_unittest.cc -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/test/gtest_premature_exit_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/test/gtest_premature_exit_test.cc -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/test/gtest_prod_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/test/gtest_prod_test.cc -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/test/gtest_repeat_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/test/gtest_repeat_test.cc -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/test/gtest_shuffle_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/test/gtest_shuffle_test.py -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/test/gtest_shuffle_test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/test/gtest_shuffle_test_.cc -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/test/gtest_sole_header_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/test/gtest_sole_header_test.cc -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/test/gtest_stress_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/test/gtest_stress_test.cc -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/test/gtest_test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/test/gtest_test_utils.py -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/test/gtest_throw_on_failure_ex_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/test/gtest_throw_on_failure_ex_test.cc -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/test/gtest_throw_on_failure_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/test/gtest_throw_on_failure_test.py -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/test/gtest_throw_on_failure_test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/test/gtest_throw_on_failure_test_.cc -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/test/gtest_uninitialized_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/test/gtest_uninitialized_test.py -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/test/gtest_uninitialized_test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/test/gtest_uninitialized_test_.cc -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/test/gtest_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/test/gtest_unittest.cc -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/test/gtest_xml_outfile1_test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/test/gtest_xml_outfile1_test_.cc -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/test/gtest_xml_outfile2_test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/test/gtest_xml_outfile2_test_.cc -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/test/gtest_xml_outfiles_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/test/gtest_xml_outfiles_test.py -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/test/gtest_xml_output_unittest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/test/gtest_xml_output_unittest.py -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/test/gtest_xml_output_unittest_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/test/gtest_xml_output_unittest_.cc -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/test/gtest_xml_test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/test/gtest_xml_test_utils.py -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/test/production.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/test/production.cc -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/test/production.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/test/production.h -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/xcode/Config/DebugProject.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/xcode/Config/DebugProject.xcconfig -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/xcode/Config/FrameworkTarget.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/xcode/Config/FrameworkTarget.xcconfig -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/xcode/Config/General.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/xcode/Config/General.xcconfig -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/xcode/Config/ReleaseProject.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/xcode/Config/ReleaseProject.xcconfig -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/xcode/Config/StaticLibraryTarget.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/xcode/Config/StaticLibraryTarget.xcconfig -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/xcode/Config/TestTarget.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/xcode/Config/TestTarget.xcconfig -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/xcode/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/xcode/Resources/Info.plist -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/xcode/Samples/FrameworkSample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/xcode/Samples/FrameworkSample/Info.plist -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/xcode/Samples/FrameworkSample/WidgetFramework.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/xcode/Samples/FrameworkSample/WidgetFramework.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/xcode/Samples/FrameworkSample/runtests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/xcode/Samples/FrameworkSample/runtests.sh -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/xcode/Samples/FrameworkSample/widget.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/xcode/Samples/FrameworkSample/widget.cc -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/xcode/Samples/FrameworkSample/widget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/xcode/Samples/FrameworkSample/widget.h -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/xcode/Samples/FrameworkSample/widget_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/xcode/Samples/FrameworkSample/widget_test.cc -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/xcode/Scripts/runtests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/xcode/Scripts/runtests.sh -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/xcode/Scripts/versiongenerate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/xcode/Scripts/versiongenerate.py -------------------------------------------------------------------------------- /third-party/gtest-1.7.0/xcode/gtest.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muratdemirtas/ARMeabiJson/HEAD/third-party/gtest-1.7.0/xcode/gtest.xcodeproj/project.pbxproj --------------------------------------------------------------------------------