yaml-cpp

FORK: A YAML parser and emitter in C++
git clone https://git.neptards.moe/neptards/yaml-cpp.git
Log | Files | Refs | README | LICENSE

ModeNameSize
-rw-r--r--.clang-format47L
-rw-r--r--.codedocs50L
-rw-r--r--.gitignore3L
-rw-r--r--.travis.yml37L
-rw-r--r--BUILD.bazel14L
-rw-r--r--CMakeLists.txt174L
-rw-r--r--CONTRIBUTING.md26L
-rw-r--r--LICENSE19L
-rw-r--r--README.md61L
-rw-r--r--WORKSPACE10L
-rw-r--r--appveyor.yml28L
-rw-r--r--docs/Breaking-Changes.md52L
-rw-r--r--docs/How-To-Emit-YAML.md230L
-rw-r--r--docs/How-To-Parse-A-Document-(Old-API).md265L
-rw-r--r--docs/Strings.md18L
-rw-r--r--docs/Tutorial.md201L
-rw-r--r--docs/_config.yml1L
-rw-r--r--docs/index.md1L
-rw-r--r--include/yaml-cpp/anchor.h17L
-rw-r--r--include/yaml-cpp/binary.h71L
-rw-r--r--include/yaml-cpp/contrib/anchordict.h40L
-rw-r--r--include/yaml-cpp/contrib/graphbuilder.h149L
-rw-r--r--include/yaml-cpp/depthguard.h77L
-rw-r--r--include/yaml-cpp/dll.h33L
-rw-r--r--include/yaml-cpp/emitfromevents.h57L
-rw-r--r--include/yaml-cpp/emitter.h281L
-rw-r--r--include/yaml-cpp/emitterdef.h16L
-rw-r--r--include/yaml-cpp/emittermanip.h144L
-rw-r--r--include/yaml-cpp/emitterstyle.h16L
-rw-r--r--include/yaml-cpp/eventhandler.h45L
-rw-r--r--include/yaml-cpp/exceptions.h303L
-rw-r--r--include/yaml-cpp/mark.h29L
-rw-r--r--include/yaml-cpp/node/convert.h392L
-rw-r--r--include/yaml-cpp/node/detail/impl.h235L
-rw-r--r--include/yaml-cpp/node/detail/iterator.h96L
-rw-r--r--include/yaml-cpp/node/detail/iterator_fwd.h27L
-rw-r--r--include/yaml-cpp/node/detail/memory.h47L
-rw-r--r--include/yaml-cpp/node/detail/node.h177L
-rw-r--r--include/yaml-cpp/node/detail/node_data.h127L
-rw-r--r--include/yaml-cpp/node/detail/node_iterator.h181L
-rw-r--r--include/yaml-cpp/node/detail/node_ref.h98L
-rw-r--r--include/yaml-cpp/node/emit.h32L
-rw-r--r--include/yaml-cpp/node/impl.h385L
-rw-r--r--include/yaml-cpp/node/iterator.h35L
-rw-r--r--include/yaml-cpp/node/node.h148L
-rw-r--r--include/yaml-cpp/node/parse.h78L
-rw-r--r--include/yaml-cpp/node/ptr.h29L
-rw-r--r--include/yaml-cpp/node/type.h16L
-rw-r--r--include/yaml-cpp/noexcept.h18L
-rw-r--r--include/yaml-cpp/null.h26L
-rw-r--r--include/yaml-cpp/ostream_wrapper.h76L
-rw-r--r--include/yaml-cpp/parser.h90L
-rw-r--r--include/yaml-cpp/stlemitter.h50L
-rw-r--r--include/yaml-cpp/traits.h135L
-rw-r--r--include/yaml-cpp/yaml.h24L
-rw-r--r--install.txt24L
-rw-r--r--src/binary.cpp100L
-rw-r--r--src/collectionstack.h41L
-rw-r--r--src/contrib/graphbuilder.cpp16L
-rw-r--r--src/contrib/graphbuilderadapter.cpp94L
-rw-r--r--src/contrib/graphbuilderadapter.h87L
-rw-r--r--src/contrib/yaml-cpp.natvis32L
-rw-r--r--src/contrib/yaml-cpp.natvis.md9L
-rw-r--r--src/convert.cpp74L
-rw-r--r--src/depthguard.cpp9L
-rw-r--r--src/directives.cpp17L
-rw-r--r--src/directives.h29L
-rw-r--r--src/emit.cpp25L
-rw-r--r--src/emitfromevents.cpp124L
-rw-r--r--src/emitter.cpp971L
-rw-r--r--src/emitterstate.cpp400L
-rw-r--r--src/emitterstate.h216L
-rw-r--r--src/emitterutils.cpp497L
-rw-r--r--src/emitterutils.h55L
-rw-r--r--src/exceptions.cpp20L
-rw-r--r--src/exp.cpp137L
-rw-r--r--src/exp.h222L
-rw-r--r--src/indentation.h41L
-rw-r--r--src/memory.cpp26L
-rw-r--r--src/node.cpp12L
-rw-r--r--src/node_data.cpp324L
-rw-r--r--src/nodebuilder.cpp134L
-rw-r--r--src/nodebuilder.h74L
-rw-r--r--src/nodeevents.cpp98L
-rw-r--r--src/nodeevents.h68L
-rw-r--r--src/null.cpp10L
-rw-r--r--src/ostream_wrapper.cpp62L
-rw-r--r--src/parse.cpp72L
-rw-r--r--src/parser.cpp119L
-rw-r--r--src/ptr_vector.h45L
-rw-r--r--src/regex_yaml.cpp43L
-rw-r--r--src/regex_yaml.h88L
-rw-r--r--src/regeximpl.h185L
-rw-r--r--src/scanner.cpp391L
-rw-r--r--src/scanner.h190L
-rw-r--r--src/scanscalar.cpp251L
-rw-r--r--src/scanscalar.h63L
-rw-r--r--src/scantag.cpp81L
-rw-r--r--src/scantag.h19L
-rw-r--r--src/scantoken.cpp437L
-rw-r--r--src/setting.h100L
-rw-r--r--src/simplekey.cpp132L
-rw-r--r--src/singledocparser.cpp432L
-rw-r--r--src/singledocparser.h71L
-rw-r--r--src/stream.cpp446L
-rw-r--r--src/stream.h82L
-rw-r--r--src/streamcharsource.h50L
-rw-r--r--src/stringsource.h48L
-rw-r--r--src/tag.cpp50L
-rw-r--r--src/tag.h33L
-rw-r--r--src/token.h70L
-rw-r--r--test/BUILD.bazel14L
-rw-r--r--test/CMakeLists.txt49L
-rw-r--r--test/create-emitter-tests.py223L
-rw-r--r--test/gtest-1.10.0/.clang-format4L
-rw-r--r--test/gtest-1.10.0/.gitignore84L
-rw-r--r--test/gtest-1.10.0/.travis.yml73L
-rw-r--r--test/gtest-1.10.0/BUILD.bazel179L
-rw-r--r--test/gtest-1.10.0/CMakeLists.txt36L
-rw-r--r--test/gtest-1.10.0/CONTRIBUTING.md142L
-rw-r--r--test/gtest-1.10.0/LICENSE28L
-rw-r--r--test/gtest-1.10.0/README.md134L
-rw-r--r--test/gtest-1.10.0/WORKSPACE23L
-rw-r--r--test/gtest-1.10.0/appveyor.yml154L
-rw-r--r--test/gtest-1.10.0/ci/build-linux-bazel.sh37L
-rw-r--r--test/gtest-1.10.0/ci/build-platformio.sh2L
-rw-r--r--test/gtest-1.10.0/ci/env-linux.sh41L
-rw-r--r--test/gtest-1.10.0/ci/env-osx.sh47L
-rw-r--r--test/gtest-1.10.0/ci/get-nprocessors.sh48L
-rw-r--r--test/gtest-1.10.0/ci/install-linux.sh49L
-rw-r--r--test/gtest-1.10.0/ci/install-osx.sh40L
-rw-r--r--test/gtest-1.10.0/ci/install-platformio.sh5L
-rw-r--r--test/gtest-1.10.0/ci/log-config.sh51L
-rw-r--r--test/gtest-1.10.0/ci/travis.sh44L
-rw-r--r--test/gtest-1.10.0/googlemock/CMakeLists.txt233L
-rw-r--r--test/gtest-1.10.0/googlemock/CONTRIBUTORS40L
-rw-r--r--test/gtest-1.10.0/googlemock/LICENSE28L
-rw-r--r--test/gtest-1.10.0/googlemock/README.md44L
-rw-r--r--test/gtest-1.10.0/googlemock/cmake/gmock.pc.in11L
-rw-r--r--test/gtest-1.10.0/googlemock/cmake/gmock_main.pc.in11L
-rw-r--r--test/gtest-1.10.0/googlemock/docs/cheat_sheet.md781L
-rw-r--r--test/gtest-1.10.0/googlemock/docs/cook_book.md4270L
-rw-r--r--test/gtest-1.10.0/googlemock/docs/for_dummies.md700L
-rw-r--r--test/gtest-1.10.0/googlemock/docs/gmock_faq.md396L
-rw-r--r--test/gtest-1.10.0/googlemock/include/gmock/gmock-actions.h1142L
-rw-r--r--test/gtest-1.10.0/googlemock/include/gmock/gmock-cardinalities.h157L
-rw-r--r--test/gtest-1.10.0/googlemock/include/gmock/gmock-function-mocker.h253L
-rw-r--r--test/gtest-1.10.0/googlemock/include/gmock/gmock-generated-actions.h1884L
-rw-r--r--test/gtest-1.10.0/googlemock/include/gmock/gmock-generated-actions.h.pump627L
-rw-r--r--test/gtest-1.10.0/googlemock/include/gmock/gmock-generated-function-mockers.h752L
-rw-r--r--test/gtest-1.10.0/googlemock/include/gmock/gmock-generated-function-mockers.h.pump227L
-rw-r--r--test/gtest-1.10.0/googlemock/include/gmock/gmock-generated-matchers.h1097L
-rw-r--r--test/gtest-1.10.0/googlemock/include/gmock/gmock-generated-matchers.h.pump346L
-rw-r--r--test/gtest-1.10.0/googlemock/include/gmock/gmock-matchers.h4568L
-rw-r--r--test/gtest-1.10.0/googlemock/include/gmock/gmock-more-actions.h162L
-rw-r--r--test/gtest-1.10.0/googlemock/include/gmock/gmock-more-matchers.h92L
-rw-r--r--test/gtest-1.10.0/googlemock/include/gmock/gmock-nice-strict.h215L
-rw-r--r--test/gtest-1.10.0/googlemock/include/gmock/gmock-spec-builders.h1985L
-rw-r--r--test/gtest-1.10.0/googlemock/include/gmock/gmock.h101L
-rw-r--r--test/gtest-1.10.0/googlemock/include/gmock/internal/custom/README.md16L
-rw-r--r--test/gtest-1.10.0/googlemock/include/gmock/internal/custom/gmock-generated-actions.h10L
-rw-r--r--test/gtest-1.10.0/googlemock/include/gmock/internal/custom/gmock-generated-actions.h.pump12L
-rw-r--r--test/gtest-1.10.0/googlemock/include/gmock/internal/custom/gmock-matchers.h36L
-rw-r--r--test/gtest-1.10.0/googlemock/include/gmock/internal/custom/gmock-port.h39L
-rw-r--r--test/gtest-1.10.0/googlemock/include/gmock/internal/gmock-internal-utils.h513L
-rw-r--r--test/gtest-1.10.0/googlemock/include/gmock/internal/gmock-port.h87L
-rw-r--r--test/gtest-1.10.0/googlemock/include/gmock/internal/gmock-pp.h317L
-rw-r--r--test/gtest-1.10.0/googlemock/scripts/fuse_gmock_files.py240L
-rw-r--r--test/gtest-1.10.0/googlemock/scripts/generator/LICENSE203L
-rw-r--r--test/gtest-1.10.0/googlemock/scripts/generator/README34L
-rw-r--r--test/gtest-1.10.0/googlemock/scripts/generator/README.cppclean115L
-rw-r--r--test/gtest-1.10.0/googlemock/scripts/generator/cpp/__init__.py0B
-rw-r--r--test/gtest-1.10.0/googlemock/scripts/generator/cpp/ast.py1736L
-rw-r--r--test/gtest-1.10.0/googlemock/scripts/generator/cpp/gmock_class.py227L
-rw-r--r--test/gtest-1.10.0/googlemock/scripts/generator/cpp/gmock_class_test.py466L
-rw-r--r--test/gtest-1.10.0/googlemock/scripts/generator/cpp/keywords.py59L
-rw-r--r--test/gtest-1.10.0/googlemock/scripts/generator/cpp/tokenize.py287L
-rw-r--r--test/gtest-1.10.0/googlemock/scripts/generator/cpp/utils.py41L
-rw-r--r--test/gtest-1.10.0/googlemock/scripts/generator/gmock_gen.py31L
-rw-r--r--test/gtest-1.10.0/googlemock/scripts/gmock-config.in303L
-rw-r--r--test/gtest-1.10.0/googlemock/scripts/gmock_doctor.py640L
-rw-r--r--test/gtest-1.10.0/googlemock/scripts/upload.py1387L
-rw-r--r--test/gtest-1.10.0/googlemock/scripts/upload_gmock.py78L
-rw-r--r--test/gtest-1.10.0/googlemock/src/gmock-all.cc46L
-rw-r--r--test/gtest-1.10.0/googlemock/src/gmock-cardinalities.cc155L
-rw-r--r--test/gtest-1.10.0/googlemock/src/gmock-internal-utils.cc200L
-rw-r--r--test/gtest-1.10.0/googlemock/src/gmock-matchers.cc462L
-rw-r--r--test/gtest-1.10.0/googlemock/src/gmock-spec-builders.cc888L
-rw-r--r--test/gtest-1.10.0/googlemock/src/gmock.cc213L
-rw-r--r--test/gtest-1.10.0/googlemock/src/gmock_main.cc65L
-rw-r--r--test/gtest-1.10.0/googlemock/test/BUILD.bazel110L
-rw-r--r--test/gtest-1.10.0/googlemock/test/gmock-actions_test.cc1445L
-rw-r--r--test/gtest-1.10.0/googlemock/test/gmock-cardinalities_test.cc429L
-rw-r--r--test/gtest-1.10.0/googlemock/test/gmock-function-mocker_nc.cc16L
-rw-r--r--test/gtest-1.10.0/googlemock/test/gmock-function-mocker_nc_test.py43L
-rw-r--r--test/gtest-1.10.0/googlemock/test/gmock-function-mocker_test.cc660L
-rw-r--r--test/gtest-1.10.0/googlemock/test/gmock-generated-actions_test.cc1064L
-rw-r--r--test/gtest-1.10.0/googlemock/test/gmock-generated-function-mockers_test.cc659L
-rw-r--r--test/gtest-1.10.0/googlemock/test/gmock-generated-matchers_test.cc1324L
-rw-r--r--test/gtest-1.10.0/googlemock/test/gmock-internal-utils_test.cc733L
-rw-r--r--test/gtest-1.10.0/googlemock/test/gmock-matchers_test.cc6801L
-rw-r--r--test/gtest-1.10.0/googlemock/test/gmock-more-actions_test.cc698L
-rw-r--r--test/gtest-1.10.0/googlemock/test/gmock-nice-strict_test.cc500L
-rw-r--r--test/gtest-1.10.0/googlemock/test/gmock-port_test.cc42L
-rw-r--r--test/gtest-1.10.0/googlemock/test/gmock-pp-string_test.cc206L
-rw-r--r--test/gtest-1.10.0/googlemock/test/gmock-pp_test.cc73L
-rw-r--r--test/gtest-1.10.0/googlemock/test/gmock-spec-builders_test.cc2775L
-rw-r--r--test/gtest-1.10.0/googlemock/test/gmock_all_test.cc49L
-rw-r--r--test/gtest-1.10.0/googlemock/test/gmock_ex_test.cc80L
-rw-r--r--test/gtest-1.10.0/googlemock/test/gmock_leak_test.py104L
-rw-r--r--test/gtest-1.10.0/googlemock/test/gmock_leak_test_.cc99L
-rw-r--r--test/gtest-1.10.0/googlemock/test/gmock_link2_test.cc39L
-rw-r--r--test/gtest-1.10.0/googlemock/test/gmock_link_test.cc39L
-rw-r--r--test/gtest-1.10.0/googlemock/test/gmock_link_test.h690L
-rw-r--r--test/gtest-1.10.0/googlemock/test/gmock_output_test.py183L
-rw-r--r--test/gtest-1.10.0/googlemock/test/gmock_output_test_.cc309L
-rw-r--r--test/gtest-1.10.0/googlemock/test/gmock_output_test_golden.txt317L
-rw-r--r--test/gtest-1.10.0/googlemock/test/gmock_stress_test.cc240L
-rw-r--r--test/gtest-1.10.0/googlemock/test/gmock_test.cc181L
-rw-r--r--test/gtest-1.10.0/googlemock/test/gmock_test_utils.py108L
-rw-r--r--test/gtest-1.10.0/googletest/CMakeLists.txt328L
-rw-r--r--test/gtest-1.10.0/googletest/CONTRIBUTORS37L
-rw-r--r--test/gtest-1.10.0/googletest/LICENSE28L
-rw-r--r--test/gtest-1.10.0/googletest/README.md244L
-rw-r--r--test/gtest-1.10.0/googletest/cmake/Config.cmake.in9L
-rw-r--r--test/gtest-1.10.0/googletest/cmake/gtest.pc.in10L
-rw-r--r--test/gtest-1.10.0/googletest/cmake/gtest_main.pc.in11L
-rw-r--r--test/gtest-1.10.0/googletest/cmake/internal_utils.cmake358L
-rw-r--r--test/gtest-1.10.0/googletest/cmake/libgtest.la.in21L
-rw-r--r--test/gtest-1.10.0/googletest/docs/advanced.md2567L
-rw-r--r--test/gtest-1.10.0/googletest/docs/faq.md753L
-rw-r--r--test/gtest-1.10.0/googletest/docs/pkgconfig.md141L
-rw-r--r--test/gtest-1.10.0/googletest/docs/primer.md567L
-rw-r--r--test/gtest-1.10.0/googletest/docs/pump_manual.md190L
-rw-r--r--test/gtest-1.10.0/googletest/docs/samples.md22L
-rw-r--r--test/gtest-1.10.0/googletest/include/gtest/gtest-death-test.h343L
-rw-r--r--test/gtest-1.10.0/googletest/include/gtest/gtest-matchers.h750L
-rw-r--r--test/gtest-1.10.0/googletest/include/gtest/gtest-message.h218L
-rw-r--r--test/gtest-1.10.0/googletest/include/gtest/gtest-param-test.h503L
-rw-r--r--test/gtest-1.10.0/googletest/include/gtest/gtest-printers.h928L
-rw-r--r--test/gtest-1.10.0/googletest/include/gtest/gtest-spi.h238L
-rw-r--r--test/gtest-1.10.0/googletest/include/gtest/gtest-test-part.h184L
-rw-r--r--test/gtest-1.10.0/googletest/include/gtest/gtest-typed-test.h330L
-rw-r--r--test/gtest-1.10.0/googletest/include/gtest/gtest.h2478L
-rw-r--r--test/gtest-1.10.0/googletest/include/gtest/gtest_pred_impl.h359L
-rw-r--r--test/gtest-1.10.0/googletest/include/gtest/gtest_prod.h61L
-rw-r--r--test/gtest-1.10.0/googletest/include/gtest/internal/custom/README.md56L
-rw-r--r--test/gtest-1.10.0/googletest/include/gtest/internal/custom/gtest-port.h37L
-rw-r--r--test/gtest-1.10.0/googletest/include/gtest/internal/custom/gtest-printers.h42L
-rw-r--r--test/gtest-1.10.0/googletest/include/gtest/internal/custom/gtest.h37L
-rw-r--r--test/gtest-1.10.0/googletest/include/gtest/internal/gtest-death-test-internal.h304L
-rw-r--r--test/gtest-1.10.0/googletest/include/gtest/internal/gtest-filepath.h211L
-rw-r--r--test/gtest-1.10.0/googletest/include/gtest/internal/gtest-internal.h1380L
-rw-r--r--test/gtest-1.10.0/googletest/include/gtest/internal/gtest-param-util.h883L
-rw-r--r--test/gtest-1.10.0/googletest/include/gtest/internal/gtest-port-arch.h107L
-rw-r--r--test/gtest-1.10.0/googletest/include/gtest/internal/gtest-port.h2231L
-rw-r--r--test/gtest-1.10.0/googletest/include/gtest/internal/gtest-string.h171L
-rw-r--r--test/gtest-1.10.0/googletest/include/gtest/internal/gtest-type-util.h3335L
-rw-r--r--test/gtest-1.10.0/googletest/include/gtest/internal/gtest-type-util.h.pump302L
-rw-r--r--test/gtest-1.10.0/googletest/samples/prime_tables.h126L
-rw-r--r--test/gtest-1.10.0/googletest/samples/sample1.cc66L
-rw-r--r--test/gtest-1.10.0/googletest/samples/sample1.h41L
-rw-r--r--test/gtest-1.10.0/googletest/samples/sample10_unittest.cc139L
-rw-r--r--test/gtest-1.10.0/googletest/samples/sample1_unittest.cc151L
-rw-r--r--test/gtest-1.10.0/googletest/samples/sample2.cc54L
-rw-r--r--test/gtest-1.10.0/googletest/samples/sample2.h81L
-rw-r--r--test/gtest-1.10.0/googletest/samples/sample2_unittest.cc107L
-rw-r--r--test/gtest-1.10.0/googletest/samples/sample3-inl.h172L
-rw-r--r--test/gtest-1.10.0/googletest/samples/sample3_unittest.cc149L
-rw-r--r--test/gtest-1.10.0/googletest/samples/sample4.cc54L
-rw-r--r--test/gtest-1.10.0/googletest/samples/sample4.h53L
-rw-r--r--test/gtest-1.10.0/googletest/samples/sample4_unittest.cc53L
-rw-r--r--test/gtest-1.10.0/googletest/samples/sample5_unittest.cc196L
-rw-r--r--test/gtest-1.10.0/googletest/samples/sample6_unittest.cc224L
-rw-r--r--test/gtest-1.10.0/googletest/samples/sample7_unittest.cc117L
-rw-r--r--test/gtest-1.10.0/googletest/samples/sample8_unittest.cc154L
-rw-r--r--test/gtest-1.10.0/googletest/samples/sample9_unittest.cc156L
-rw-r--r--test/gtest-1.10.0/googletest/scripts/common.py83L
-rw-r--r--test/gtest-1.10.0/googletest/scripts/fuse_gtest_files.py253L
-rw-r--r--test/gtest-1.10.0/googletest/scripts/gen_gtest_pred_impl.py730L
-rw-r--r--test/gtest-1.10.0/googletest/scripts/gtest-config.in274L
-rw-r--r--test/gtest-1.10.0/googletest/scripts/pump.py855L
-rw-r--r--test/gtest-1.10.0/googletest/scripts/release_docs.py158L
-rw-r--r--test/gtest-1.10.0/googletest/scripts/upload.py1387L
-rw-r--r--test/gtest-1.10.0/googletest/scripts/upload_gtest.py78L
-rw-r--r--test/gtest-1.10.0/googletest/src/gtest-all.cc48L
-rw-r--r--test/gtest-1.10.0/googletest/src/gtest-death-test.cc1653L
-rw-r--r--test/gtest-1.10.0/googletest/src/gtest-filepath.cc379L
-rw-r--r--test/gtest-1.10.0/googletest/src/gtest-internal-inl.h1211L
-rw-r--r--test/gtest-1.10.0/googletest/src/gtest-matchers.cc97L
-rw-r--r--test/gtest-1.10.0/googletest/src/gtest-port.cc1399L
-rw-r--r--test/gtest-1.10.0/googletest/src/gtest-printers.cc442L
-rw-r--r--test/gtest-1.10.0/googletest/src/gtest-test-part.cc104L
-rw-r--r--test/gtest-1.10.0/googletest/src/gtest-typed-test.cc118L
-rw-r--r--test/gtest-1.10.0/googletest/src/gtest.cc6177L
-rw-r--r--test/gtest-1.10.0/googletest/src/gtest_main.cc47L
-rw-r--r--test/gtest-1.10.0/googletest/test/BUILD.bazel521L
-rw-r--r--test/gtest-1.10.0/googletest/test/googletest-break-on-failure-unittest.py208L
-rw-r--r--test/gtest-1.10.0/googletest/test/googletest-break-on-failure-unittest_.cc86L
-rw-r--r--test/gtest-1.10.0/googletest/test/googletest-catch-exceptions-test.py236L
-rw-r--r--test/gtest-1.10.0/googletest/test/googletest-catch-exceptions-test_.cc293L
-rw-r--r--test/gtest-1.10.0/googletest/test/googletest-color-test.py127L
-rw-r--r--test/gtest-1.10.0/googletest/test/googletest-color-test_.cc62L
-rw-r--r--test/gtest-1.10.0/googletest/test/googletest-death-test-test.cc1516L
-rw-r--r--test/gtest-1.10.0/googletest/test/googletest-death-test_ex_test.cc92L
-rw-r--r--test/gtest-1.10.0/googletest/test/googletest-env-var-test.py117L
-rw-r--r--test/gtest-1.10.0/googletest/test/googletest-env-var-test_.cc122L
-rw-r--r--test/gtest-1.10.0/googletest/test/googletest-filepath-test.cc649L
-rw-r--r--test/gtest-1.10.0/googletest/test/googletest-filter-unittest.py639L
-rw-r--r--test/gtest-1.10.0/googletest/test/googletest-filter-unittest_.cc137L
-rw-r--r--test/gtest-1.10.0/googletest/test/googletest-json-outfiles-test.py191L
-rw-r--r--test/gtest-1.10.0/googletest/test/googletest-json-output-unittest.py778L
-rw-r--r--test/gtest-1.10.0/googletest/test/googletest-list-tests-unittest.py205L
-rw-r--r--test/gtest-1.10.0/googletest/test/googletest-list-tests-unittest_.cc156L
-rw-r--r--test/gtest-1.10.0/googletest/test/googletest-listener-test.cc518L
-rw-r--r--test/gtest-1.10.0/googletest/test/googletest-message-test.cc158L
-rw-r--r--test/gtest-1.10.0/googletest/test/googletest-options-test.cc216L
-rw-r--r--test/gtest-1.10.0/googletest/test/googletest-output-test-golden-lin.txt1140L
-rw-r--r--test/gtest-1.10.0/googletest/test/googletest-output-test.py346L
-rw-r--r--test/gtest-1.10.0/googletest/test/googletest-output-test_.cc1157L
-rw-r--r--test/gtest-1.10.0/googletest/test/googletest-param-test-invalid-name1-test.py63L
-rw-r--r--test/gtest-1.10.0/googletest/test/googletest-param-test-invalid-name1-test_.cc50L
-rw-r--r--test/gtest-1.10.0/googletest/test/googletest-param-test-invalid-name2-test.py62L
-rw-r--r--test/gtest-1.10.0/googletest/test/googletest-param-test-invalid-name2-test_.cc55L
-rw-r--r--test/gtest-1.10.0/googletest/test/googletest-param-test-test.cc1055L
-rw-r--r--test/gtest-1.10.0/googletest/test/googletest-param-test-test.h51L
-rw-r--r--test/gtest-1.10.0/googletest/test/googletest-param-test2-test.cc61L
-rw-r--r--test/gtest-1.10.0/googletest/test/googletest-port-test.cc1272L
-rw-r--r--test/gtest-1.10.0/googletest/test/googletest-printers-test.cc1620L
-rw-r--r--test/gtest-1.10.0/googletest/test/googletest-shuffle-test.py323L
-rw-r--r--test/gtest-1.10.0/googletest/test/googletest-shuffle-test_.cc101L
-rw-r--r--test/gtest-1.10.0/googletest/test/googletest-test-part-test.cc230L
-rw-r--r--test/gtest-1.10.0/googletest/test/googletest-test2_test.cc61L
-rw-r--r--test/gtest-1.10.0/googletest/test/googletest-throw-on-failure-test.py168L
-rw-r--r--test/gtest-1.10.0/googletest/test/googletest-throw-on-failure-test_.cc71L
-rw-r--r--test/gtest-1.10.0/googletest/test/googletest-uninitialized-test.py67L
-rw-r--r--test/gtest-1.10.0/googletest/test/googletest-uninitialized-test_.cc42L
-rw-r--r--test/gtest-1.10.0/googletest/test/gtest-typed-test2_test.cc44L
-rw-r--r--test/gtest-1.10.0/googletest/test/gtest-typed-test_test.cc462L
-rw-r--r--test/gtest-1.10.0/googletest/test/gtest-typed-test_test.h65L
-rw-r--r--test/gtest-1.10.0/googletest/test/gtest-unittest-api_test.cc340L
-rw-r--r--test/gtest-1.10.0/googletest/test/gtest_all_test.cc46L
-rw-r--r--test/gtest-1.10.0/googletest/test/gtest_assert_by_exception_test.cc116L
-rw-r--r--test/gtest-1.10.0/googletest/test/gtest_environment_test.cc188L
-rw-r--r--test/gtest-1.10.0/googletest/test/gtest_help_test.py170L
-rw-r--r--test/gtest-1.10.0/googletest/test/gtest_help_test_.cc45L
-rw-r--r--test/gtest-1.10.0/googletest/test/gtest_json_test_utils.py60L
-rw-r--r--test/gtest-1.10.0/googletest/test/gtest_list_output_unittest.py141L
-rw-r--r--test/gtest-1.10.0/googletest/test/gtest_list_output_unittest_.cc51L
-rw-r--r--test/gtest-1.10.0/googletest/test/gtest_main_unittest.cc44L
-rw-r--r--test/gtest-1.10.0/googletest/test/gtest_no_test_unittest.cc54L
-rw-r--r--test/gtest-1.10.0/googletest/test/gtest_pred_impl_unittest.cc2427L
-rw-r--r--test/gtest-1.10.0/googletest/test/gtest_premature_exit_test.cc126L
-rw-r--r--test/gtest-1.10.0/googletest/test/gtest_prod_test.cc56L
-rw-r--r--test/gtest-1.10.0/googletest/test/gtest_repeat_test.cc233L
-rw-r--r--test/gtest-1.10.0/googletest/test/gtest_skip_environment_check_output_test.py54L
-rw-r--r--test/gtest-1.10.0/googletest/test/gtest_skip_in_environment_setup_test.cc49L
-rw-r--r--test/gtest-1.10.0/googletest/test/gtest_skip_test.cc55L
-rw-r--r--test/gtest-1.10.0/googletest/test/gtest_sole_header_test.cc56L
-rw-r--r--test/gtest-1.10.0/googletest/test/gtest_stress_test.cc248L
-rw-r--r--test/gtest-1.10.0/googletest/test/gtest_test_macro_stack_footprint_test.cc89L
-rw-r--r--test/gtest-1.10.0/googletest/test/gtest_test_utils.py314L
-rw-r--r--test/gtest-1.10.0/googletest/test/gtest_testbridge_test.py63L
-rw-r--r--test/gtest-1.10.0/googletest/test/gtest_testbridge_test_.cc43L
-rw-r--r--test/gtest-1.10.0/googletest/test/gtest_throw_on_failure_ex_test.cc90L
-rw-r--r--test/gtest-1.10.0/googletest/test/gtest_unittest.cc7488L
-rw-r--r--test/gtest-1.10.0/googletest/test/gtest_xml_outfile1_test_.cc43L
-rw-r--r--test/gtest-1.10.0/googletest/test/gtest_xml_outfile2_test_.cc43L
-rw-r--r--test/gtest-1.10.0/googletest/test/gtest_xml_outfiles_test.py135L
-rw-r--r--test/gtest-1.10.0/googletest/test/gtest_xml_output_unittest.py389L
-rw-r--r--test/gtest-1.10.0/googletest/test/gtest_xml_output_unittest_.cc188L
-rw-r--r--test/gtest-1.10.0/googletest/test/gtest_xml_test_utils.py196L
-rw-r--r--test/gtest-1.10.0/googletest/test/production.cc35L
-rw-r--r--test/gtest-1.10.0/googletest/test/production.h54L
-rw-r--r--test/gtest-1.10.0/library.json59L
-rw-r--r--test/gtest-1.10.0/platformio.ini31L
-rw-r--r--test/handler_test.h32L
-rw-r--r--test/integration/emitter_test.cpp1690L
-rw-r--r--test/integration/encoding_test.cpp182L
-rw-r--r--test/integration/error_messages_test.cpp61L
-rw-r--r--test/integration/gen_emitter_test.cpp9936L
-rw-r--r--test/integration/handler_spec_test.cpp1686L
-rw-r--r--test/integration/handler_test.cpp76L
-rw-r--r--test/integration/load_node_test.cpp349L
-rw-r--r--test/integration/node_spec_test.cpp1136L
-rw-r--r--test/main.cpp6L
-rw-r--r--test/mock_event_handler.h30L
-rw-r--r--test/node/node_test.cpp773L
-rw-r--r--test/ostream_wrapper_test.cpp66L
-rw-r--r--test/parser_test.cpp64L
-rw-r--r--test/regex_test.cpp177L
-rw-r--r--test/specexamples.h868L
-rw-r--r--util/CMakeLists.txt32L
-rw-r--r--util/api.cpp137L
-rw-r--r--util/parse.cpp61L
-rw-r--r--util/read.cpp103L
-rw-r--r--util/sandbox.cpp36L
-rw-r--r--yaml-cpp-config.cmake.in14L
-rw-r--r--yaml-cpp.pc.in11L