├── .azure-pipelines.yml ├── .ci ├── azure-pipelines │ ├── docker.yml │ └── native.yml ├── docker │ ├── Dockerfile.ubuntu-bionic │ ├── Dockerfile.ubuntu-eoan │ ├── Dockerfile.ubuntu-focal │ ├── Dockerfile.ubuntu-xenial │ └── env.list ├── install.sh ├── install_linux.sh ├── install_macos.sh └── script.sh ├── .clang-format ├── .codecov.yml ├── .dockerignore ├── .github └── workflows │ └── ccpp.yml ├── .gitignore ├── .travis.yml ├── Brewfile ├── CMakeLists.txt ├── Dockerfile ├── LICENSE ├── README.md ├── bindings ├── CMakeLists.txt ├── binding-impl.h.tmpl ├── binding.cpp.tmpl ├── boost_python │ ├── class.cpp.tmpl │ ├── class.h.tmpl │ ├── enum.cpp.tmpl │ ├── enum.h.tmpl │ ├── function.cpp.tmpl │ ├── function.h.tmpl │ ├── module.cpp.tmpl │ ├── module.h.tmpl │ ├── typedef.cpp.tmpl │ ├── typedef.h.tmpl │ ├── variable.cpp.tmpl │ └── variable.h.tmpl └── pybind11 │ ├── class.cpp.tmpl │ ├── class.h.tmpl │ ├── enum.cpp.tmpl │ ├── enum.h.tmpl │ ├── function.cpp.tmpl │ ├── function.h.tmpl │ ├── module.cpp.tmpl │ ├── module.h.tmpl │ ├── typedef.cpp.tmpl │ ├── typedef.h.tmpl │ ├── variable.cpp.tmpl │ └── variable.h.tmpl ├── cmake ├── ClangFormat.cmake ├── CodeCoverage.cmake ├── FindClang.cmake ├── FindYamlCpp.cmake ├── chimeraConfig.cmake.in ├── chimeraFindLLVM.cmake ├── chimeraFunctions.cmake └── generateChimeraBinding.cmake ├── external ├── CMakeLists.txt ├── cling │ ├── CMakeLists.txt │ ├── cling_license.txt │ ├── include │ │ └── cling_utils_AST.h │ └── src │ │ └── cling_utils_AST.cpp └── mstch │ ├── .appveyor.yml │ ├── .gitignore │ ├── .travis.yml │ ├── CMakeLists.txt │ ├── LICENSE │ ├── README.md │ ├── benchmark │ ├── CMakeLists.txt │ └── benchmark_main.cpp │ ├── cmake │ └── mstch-config.cmake │ ├── include │ └── mstch │ │ └── mstch.hpp │ ├── src │ ├── CMakeLists.txt │ ├── mstch.cpp │ ├── render_context.cpp │ ├── render_context.hpp │ ├── state │ │ ├── in_section.cpp │ │ ├── in_section.hpp │ │ ├── outside_section.cpp │ │ ├── outside_section.hpp │ │ └── render_state.hpp │ ├── template_type.cpp │ ├── template_type.hpp │ ├── token.cpp │ ├── token.hpp │ ├── utils.cpp │ ├── utils.hpp │ └── visitor │ │ ├── get_token.hpp │ │ ├── has_token.hpp │ │ ├── is_node_empty.hpp │ │ ├── render_node.hpp │ │ └── render_section.hpp │ └── test │ ├── CMakeLists.txt │ ├── data │ ├── ampersand_escape.hpp │ ├── ampersand_escape.mustache │ ├── ampersand_escape.txt │ ├── apostrophe.hpp │ ├── apostrophe.mustache │ ├── apostrophe.txt │ ├── array_of_strings.hpp │ ├── array_of_strings.mustache │ ├── array_of_strings.txt │ ├── backslashes.hpp │ ├── backslashes.mustache │ ├── backslashes.txt │ ├── bug_11_eating_whitespace.hpp │ ├── bug_11_eating_whitespace.mustache │ ├── bug_11_eating_whitespace.txt │ ├── bug_length_property.hpp │ ├── bug_length_property.mustache │ ├── bug_length_property.txt │ ├── changing_delimiters.hpp │ ├── changing_delimiters.mustache │ ├── changing_delimiters.txt │ ├── comments.hpp │ ├── comments.mustache │ ├── comments.txt │ ├── complex.hpp │ ├── complex.mustache │ ├── complex.txt │ ├── context_lookup.hpp │ ├── context_lookup.mustache │ ├── context_lookup.txt │ ├── delimiters.hpp │ ├── delimiters.mustache │ ├── delimiters.txt │ ├── disappearing_whitespace.hpp │ ├── disappearing_whitespace.mustache │ ├── disappearing_whitespace.txt │ ├── dot_notation.hpp │ ├── dot_notation.mustache │ ├── dot_notation.txt │ ├── double_render.hpp │ ├── double_render.mustache │ ├── double_render.txt │ ├── empty_list.hpp │ ├── empty_list.mustache │ ├── empty_list.txt │ ├── empty_sections.hpp │ ├── empty_sections.mustache │ ├── empty_sections.txt │ ├── empty_string.hpp │ ├── empty_string.mustache │ ├── empty_string.txt │ ├── empty_template.hpp │ ├── empty_template.mustache │ ├── empty_template.txt │ ├── error_eof_in_section.hpp │ ├── error_eof_in_section.mustache │ ├── error_eof_in_section.txt │ ├── error_eof_in_tag.hpp │ ├── error_eof_in_tag.mustache │ ├── error_eof_in_tag.txt │ ├── error_not_found.hpp │ ├── error_not_found.mustache │ ├── error_not_found.txt │ ├── escaped.hpp │ ├── escaped.mustache │ ├── escaped.txt │ ├── falsy.hpp │ ├── falsy.mustache │ ├── falsy.txt │ ├── falsy_array.hpp │ ├── falsy_array.mustache │ ├── falsy_array.txt │ ├── grandparent_context.hpp │ ├── grandparent_context.mustache │ ├── grandparent_context.txt │ ├── higher_order_sections.hpp │ ├── higher_order_sections.mustache │ ├── higher_order_sections.txt │ ├── implicit_iterator.hpp │ ├── implicit_iterator.mustache │ ├── implicit_iterator.txt │ ├── included_tag.hpp │ ├── included_tag.mustache │ ├── included_tag.txt │ ├── inverted_section.hpp │ ├── inverted_section.mustache │ ├── inverted_section.txt │ ├── keys_with_questionmarks.hpp │ ├── keys_with_questionmarks.mustache │ ├── keys_with_questionmarks.txt │ ├── multiline_comment.hpp │ ├── multiline_comment.mustache │ ├── multiline_comment.txt │ ├── nested_dot.hpp │ ├── nested_dot.mustache │ ├── nested_dot.txt │ ├── nested_higher_order_sections.hpp │ ├── nested_higher_order_sections.mustache │ ├── nested_higher_order_sections.txt │ ├── nested_iterating.hpp │ ├── nested_iterating.mustache │ ├── nested_iterating.txt │ ├── nesting.hpp │ ├── nesting.mustache │ ├── nesting.txt │ ├── nesting_same_name.hpp │ ├── nesting_same_name.mustache │ ├── nesting_same_name.txt │ ├── null_lookup_array.hpp │ ├── null_lookup_array.mustache │ ├── null_lookup_array.txt │ ├── null_lookup_object.hpp │ ├── null_lookup_object.mustache │ ├── null_lookup_object.txt │ ├── null_string.hpp │ ├── null_string.mustache │ ├── null_string.txt │ ├── null_view.hpp │ ├── null_view.mustache │ ├── null_view.txt │ ├── partial_array.hpp │ ├── partial_array.mustache │ ├── partial_array.partial │ ├── partial_array.txt │ ├── partial_array_of_partials.hpp │ ├── partial_array_of_partials.mustache │ ├── partial_array_of_partials.partial │ ├── partial_array_of_partials.txt │ ├── partial_array_of_partials_implicit.hpp │ ├── partial_array_of_partials_implicit.mustache │ ├── partial_array_of_partials_implicit.partial │ ├── partial_array_of_partials_implicit.txt │ ├── partial_empty.hpp │ ├── partial_empty.mustache │ ├── partial_empty.partial │ ├── partial_empty.txt │ ├── partial_template.hpp │ ├── partial_template.mustache │ ├── partial_template.partial │ ├── partial_template.txt │ ├── partial_view.hpp │ ├── partial_view.mustache │ ├── partial_view.partial │ ├── partial_view.txt │ ├── partial_whitespace.hpp │ ├── partial_whitespace.mustache │ ├── partial_whitespace.partial │ ├── partial_whitespace.txt │ ├── recursion_with_same_names.hpp │ ├── recursion_with_same_names.mustache │ ├── recursion_with_same_names.txt │ ├── reuse_of_enumerables.hpp │ ├── reuse_of_enumerables.mustache │ ├── reuse_of_enumerables.txt │ ├── section_as_context.hpp │ ├── section_as_context.mustache │ ├── section_as_context.txt │ ├── section_functions_in_partials.hpp │ ├── section_functions_in_partials.mustache │ ├── section_functions_in_partials.partial │ ├── section_functions_in_partials.txt │ ├── simple.hpp │ ├── simple.mustache │ ├── simple.txt │ ├── string_as_context.hpp │ ├── string_as_context.mustache │ ├── string_as_context.txt │ ├── two_in_a_row.hpp │ ├── two_in_a_row.mustache │ ├── two_in_a_row.txt │ ├── two_sections.hpp │ ├── two_sections.mustache │ ├── two_sections.txt │ ├── unescaped.hpp │ ├── unescaped.mustache │ ├── unescaped.txt │ ├── whitespace.hpp │ ├── whitespace.mustache │ ├── whitespace.txt │ ├── zero_view.hpp │ ├── zero_view.mustache │ └── zero_view.txt │ ├── specs_lambdas.hpp │ ├── test_context.hpp │ └── test_main.cpp ├── include └── chimera │ ├── binding.h │ ├── chimera.h │ ├── configuration.h │ ├── consumer.h │ ├── frontend_action.h │ ├── mstch.h │ ├── util.h │ └── visitor.h ├── package.xml ├── src ├── chimera.cpp ├── chimera_main.cpp ├── configuration.cpp ├── consumer.cpp ├── frontend_action.cpp ├── mstch.cpp ├── util.cpp └── visitor.cpp ├── test ├── CMakeLists.txt ├── emulator.cpp ├── emulator.h ├── examples │ ├── 00_module │ │ ├── CMakeLists.txt │ │ ├── module.h │ │ ├── module.py │ │ ├── module_boost_python.yaml │ │ └── module_pybind11.yaml │ ├── 01_function │ │ ├── CMakeLists.txt │ │ ├── function.cpp │ │ ├── function.h │ │ ├── function.py │ │ ├── function_boost_python.yaml │ │ └── function_pybind11.yaml │ ├── 02_class │ │ ├── CMakeLists.txt │ │ ├── class.cpp │ │ ├── class.h │ │ ├── class.py │ │ └── class.yaml │ ├── 03_smart_pointers │ │ ├── CMakeLists.txt │ │ ├── smart_pointers.cpp │ │ ├── smart_pointers.h │ │ ├── smart_pointers.py │ │ ├── smart_pointers_boost_python.yaml │ │ └── smart_pointers_pybind11.yaml │ ├── 04_enumeration │ │ ├── CMakeLists.txt │ │ ├── enumeration.cpp │ │ ├── enumeration.h │ │ ├── enumeration.py │ │ └── enumeration.yaml │ ├── 05_variable │ │ ├── CMakeLists.txt │ │ ├── variable.cpp │ │ ├── variable.h │ │ ├── variable.py │ │ └── variable.yaml │ ├── 06_template_class │ │ ├── CMakeLists.txt │ │ ├── boost_python.yaml │ │ ├── pybind11.yaml │ │ ├── template_class.cpp │ │ ├── template_class.h │ │ └── template_class.py │ ├── 07_typedef │ │ ├── CMakeLists.txt │ │ ├── typedef.h │ │ ├── typedef.py │ │ └── typedef.yaml │ ├── 20_eigen │ │ ├── CMakeLists.txt │ │ ├── eigen.cpp │ │ ├── eigen.h │ │ ├── eigen.py │ │ ├── eigen_boost_python.yaml │ │ └── eigen_pybind11.yaml │ ├── 30_pybind11_examples │ │ ├── 01_basics │ │ │ ├── 01_first_steps │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── chimera_boost_python.yaml │ │ │ │ ├── chimera_pybind11.yaml │ │ │ │ ├── first_steps.cpp │ │ │ │ ├── first_steps.h │ │ │ │ └── first_steps.py │ │ │ ├── 02_object_oriented_code │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── chimera_boost_python.yaml │ │ │ │ ├── chimera_pybind11.yaml │ │ │ │ ├── object_oriented_code.cpp │ │ │ │ ├── object_oriented_code.h │ │ │ │ └── object_oriented_code.py │ │ │ └── CMakeLists.txt │ │ ├── 02_advanced │ │ │ ├── 01_functions │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── chimera_boost_python.yaml │ │ │ │ ├── chimera_pybind11.yaml │ │ │ │ ├── functions.cpp │ │ │ │ ├── functions.h │ │ │ │ └── functions.py │ │ │ ├── 02_classes │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── chimera_boost_python.yaml │ │ │ │ ├── chimera_pybind11.yaml │ │ │ │ ├── classes.cpp │ │ │ │ ├── classes.h │ │ │ │ └── classes.py │ │ │ ├── 03_exceptions │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── chimera_boost_python.yaml │ │ │ │ ├── chimera_pybind11.yaml │ │ │ │ ├── exceptions.cpp │ │ │ │ ├── exceptions.h │ │ │ │ └── exceptions.py │ │ │ ├── 05_type_conversions │ │ │ │ ├── 03_functional │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── chimera_boost_python.yaml │ │ │ │ │ ├── chimera_pybind11.yaml │ │ │ │ │ ├── functional.cpp │ │ │ │ │ ├── functional.h │ │ │ │ │ └── functional.py │ │ │ │ └── CMakeLists.txt │ │ │ └── CMakeLists.txt │ │ └── CMakeLists.txt │ ├── 99_dart_example │ │ ├── CMakeLists.txt │ │ ├── dart_example.h │ │ ├── dart_example.py │ │ └── dart_example.yaml │ ├── CMakeLists.txt │ ├── cmake │ │ ├── chimeraTest.cmake │ │ ├── chimeraTestBoostPython.cmake │ │ └── chimeraTestPybind11.cmake │ └── regression │ │ ├── CMakeLists.txt │ │ ├── issue105_extra_commas │ │ ├── CMakeLists.txt │ │ ├── boost_python.yaml │ │ ├── issue105_extra_commas.h │ │ ├── issue105_extra_commas.py │ │ └── pybind11.yaml │ │ ├── issue148_lambda_function │ │ ├── CMakeLists.txt │ │ ├── boost_python.yaml │ │ ├── issue148_lambda_function.cpp │ │ ├── issue148_lambda_function.h │ │ ├── issue148_lambda_function.py │ │ └── pybind11.yaml │ │ ├── issue216_template_param │ │ ├── CMakeLists.txt │ │ ├── issue216_template_param.cpp │ │ ├── issue216_template_param.h │ │ ├── issue216_template_param.py │ │ ├── issue216_template_param_boost_python.yaml │ │ └── issue216_template_param_pybind11.yaml │ │ ├── issue228_template_type_alias │ │ ├── CMakeLists.txt │ │ ├── issue228_template_type_alias.cpp │ │ ├── issue228_template_type_alias.h │ │ ├── issue228_template_type_alias.py │ │ ├── issue228_template_type_alias_boost_python.yaml │ │ └── issue228_template_type_alias_pybind11.yaml │ │ ├── issue262_static_method │ │ ├── CMakeLists.txt │ │ ├── boost_python.yaml │ │ ├── issue262_static_method.h │ │ ├── issue262_static_method.py │ │ └── pybind11.yaml │ │ ├── issue297_template_variable │ │ ├── CMakeLists.txt │ │ ├── boost_python.yaml │ │ ├── issue297_template_variable.cpp │ │ ├── issue297_template_variable.h │ │ ├── issue297_template_variable.py │ │ └── pybind11.yaml │ │ ├── issue310_nested_class_name │ │ ├── CMakeLists.txt │ │ ├── boost_python.yaml │ │ ├── issue310_nested_class_name.cpp │ │ ├── issue310_nested_class_name.h │ │ ├── issue310_nested_class_name.py │ │ └── pybind11.yaml │ │ └── issue328_dependent_name │ │ ├── CMakeLists.txt │ │ ├── boost_python.yaml │ │ ├── issue328_dependent_name.h │ │ ├── issue328_dependent_name.py │ │ └── pybind11.yaml ├── gtest │ ├── cmake │ │ ├── Config.cmake.in │ │ ├── gtest.pc.in │ │ ├── gtest_main.pc.in │ │ └── internal_utils.cmake │ ├── 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 │ │ │ ├── custom │ │ │ ├── README.md │ │ │ ├── gtest-port.h │ │ │ ├── gtest-printers.h │ │ │ └── gtest.h │ │ │ ├── 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-arch.h │ │ │ ├── gtest-port.h │ │ │ ├── gtest-string.h │ │ │ ├── gtest-tuple.h │ │ │ ├── gtest-tuple.h.pump │ │ │ ├── gtest-type-util.h │ │ │ └── gtest-type-util.h.pump │ └── 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_emulator.cpp └── tools └── check_format.sh /.azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/.azure-pipelines.yml -------------------------------------------------------------------------------- /.ci/azure-pipelines/docker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/.ci/azure-pipelines/docker.yml -------------------------------------------------------------------------------- /.ci/azure-pipelines/native.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/.ci/azure-pipelines/native.yml -------------------------------------------------------------------------------- /.ci/docker/Dockerfile.ubuntu-bionic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/.ci/docker/Dockerfile.ubuntu-bionic -------------------------------------------------------------------------------- /.ci/docker/Dockerfile.ubuntu-eoan: -------------------------------------------------------------------------------- 1 | FROM ubuntu:eoan 2 | -------------------------------------------------------------------------------- /.ci/docker/Dockerfile.ubuntu-focal: -------------------------------------------------------------------------------- 1 | FROM ubuntu:focal 2 | 3 | ENV DEBIAN_FRONTEND=noninteractive 4 | -------------------------------------------------------------------------------- /.ci/docker/Dockerfile.ubuntu-xenial: -------------------------------------------------------------------------------- 1 | FROM ubuntu:xenial 2 | -------------------------------------------------------------------------------- /.ci/docker/env.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/.ci/docker/env.list -------------------------------------------------------------------------------- /.ci/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/.ci/install.sh -------------------------------------------------------------------------------- /.ci/install_linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/.ci/install_linux.sh -------------------------------------------------------------------------------- /.ci/install_macos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/.ci/install_macos.sh -------------------------------------------------------------------------------- /.ci/script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/.ci/script.sh -------------------------------------------------------------------------------- /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/.clang-format -------------------------------------------------------------------------------- /.codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/.codecov.yml -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/workflows/ccpp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/.github/workflows/ccpp.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/.travis.yml -------------------------------------------------------------------------------- /Brewfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/Brewfile -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/README.md -------------------------------------------------------------------------------- /bindings/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/bindings/CMakeLists.txt -------------------------------------------------------------------------------- /bindings/binding-impl.h.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/bindings/binding-impl.h.tmpl -------------------------------------------------------------------------------- /bindings/binding.cpp.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/bindings/binding.cpp.tmpl -------------------------------------------------------------------------------- /bindings/boost_python/class.cpp.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/bindings/boost_python/class.cpp.tmpl -------------------------------------------------------------------------------- /bindings/boost_python/class.h.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/bindings/boost_python/class.h.tmpl -------------------------------------------------------------------------------- /bindings/boost_python/enum.cpp.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/bindings/boost_python/enum.cpp.tmpl -------------------------------------------------------------------------------- /bindings/boost_python/enum.h.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/bindings/boost_python/enum.h.tmpl -------------------------------------------------------------------------------- /bindings/boost_python/function.cpp.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/bindings/boost_python/function.cpp.tmpl -------------------------------------------------------------------------------- /bindings/boost_python/function.h.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/bindings/boost_python/function.h.tmpl -------------------------------------------------------------------------------- /bindings/boost_python/module.cpp.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/bindings/boost_python/module.cpp.tmpl -------------------------------------------------------------------------------- /bindings/boost_python/module.h.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/bindings/boost_python/module.h.tmpl -------------------------------------------------------------------------------- /bindings/boost_python/typedef.cpp.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/bindings/boost_python/typedef.cpp.tmpl -------------------------------------------------------------------------------- /bindings/boost_python/typedef.h.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/bindings/boost_python/typedef.h.tmpl -------------------------------------------------------------------------------- /bindings/boost_python/variable.cpp.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/bindings/boost_python/variable.cpp.tmpl -------------------------------------------------------------------------------- /bindings/boost_python/variable.h.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/bindings/boost_python/variable.h.tmpl -------------------------------------------------------------------------------- /bindings/pybind11/class.cpp.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/bindings/pybind11/class.cpp.tmpl -------------------------------------------------------------------------------- /bindings/pybind11/class.h.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/bindings/pybind11/class.h.tmpl -------------------------------------------------------------------------------- /bindings/pybind11/enum.cpp.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/bindings/pybind11/enum.cpp.tmpl -------------------------------------------------------------------------------- /bindings/pybind11/enum.h.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/bindings/pybind11/enum.h.tmpl -------------------------------------------------------------------------------- /bindings/pybind11/function.cpp.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/bindings/pybind11/function.cpp.tmpl -------------------------------------------------------------------------------- /bindings/pybind11/function.h.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/bindings/pybind11/function.h.tmpl -------------------------------------------------------------------------------- /bindings/pybind11/module.cpp.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/bindings/pybind11/module.cpp.tmpl -------------------------------------------------------------------------------- /bindings/pybind11/module.h.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/bindings/pybind11/module.h.tmpl -------------------------------------------------------------------------------- /bindings/pybind11/typedef.cpp.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/bindings/pybind11/typedef.cpp.tmpl -------------------------------------------------------------------------------- /bindings/pybind11/typedef.h.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/bindings/pybind11/typedef.h.tmpl -------------------------------------------------------------------------------- /bindings/pybind11/variable.cpp.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/bindings/pybind11/variable.cpp.tmpl -------------------------------------------------------------------------------- /bindings/pybind11/variable.h.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/bindings/pybind11/variable.h.tmpl -------------------------------------------------------------------------------- /cmake/ClangFormat.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/cmake/ClangFormat.cmake -------------------------------------------------------------------------------- /cmake/CodeCoverage.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/cmake/CodeCoverage.cmake -------------------------------------------------------------------------------- /cmake/FindClang.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/cmake/FindClang.cmake -------------------------------------------------------------------------------- /cmake/FindYamlCpp.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/cmake/FindYamlCpp.cmake -------------------------------------------------------------------------------- /cmake/chimeraConfig.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/cmake/chimeraConfig.cmake.in -------------------------------------------------------------------------------- /cmake/chimeraFindLLVM.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/cmake/chimeraFindLLVM.cmake -------------------------------------------------------------------------------- /cmake/chimeraFunctions.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/cmake/chimeraFunctions.cmake -------------------------------------------------------------------------------- /cmake/generateChimeraBinding.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/cmake/generateChimeraBinding.cmake -------------------------------------------------------------------------------- /external/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/CMakeLists.txt -------------------------------------------------------------------------------- /external/cling/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/cling/CMakeLists.txt -------------------------------------------------------------------------------- /external/cling/cling_license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/cling/cling_license.txt -------------------------------------------------------------------------------- /external/cling/include/cling_utils_AST.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/cling/include/cling_utils_AST.h -------------------------------------------------------------------------------- /external/cling/src/cling_utils_AST.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/cling/src/cling_utils_AST.cpp -------------------------------------------------------------------------------- /external/mstch/.appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/.appveyor.yml -------------------------------------------------------------------------------- /external/mstch/.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | build* 3 | -------------------------------------------------------------------------------- /external/mstch/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/.travis.yml -------------------------------------------------------------------------------- /external/mstch/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/CMakeLists.txt -------------------------------------------------------------------------------- /external/mstch/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/LICENSE -------------------------------------------------------------------------------- /external/mstch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/README.md -------------------------------------------------------------------------------- /external/mstch/benchmark/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/benchmark/CMakeLists.txt -------------------------------------------------------------------------------- /external/mstch/benchmark/benchmark_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/benchmark/benchmark_main.cpp -------------------------------------------------------------------------------- /external/mstch/cmake/mstch-config.cmake: -------------------------------------------------------------------------------- 1 | include("${CMAKE_CURRENT_LIST_DIR}/mstch-targets.cmake") -------------------------------------------------------------------------------- /external/mstch/include/mstch/mstch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/include/mstch/mstch.hpp -------------------------------------------------------------------------------- /external/mstch/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/src/CMakeLists.txt -------------------------------------------------------------------------------- /external/mstch/src/mstch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/src/mstch.cpp -------------------------------------------------------------------------------- /external/mstch/src/render_context.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/src/render_context.cpp -------------------------------------------------------------------------------- /external/mstch/src/render_context.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/src/render_context.hpp -------------------------------------------------------------------------------- /external/mstch/src/state/in_section.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/src/state/in_section.cpp -------------------------------------------------------------------------------- /external/mstch/src/state/in_section.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/src/state/in_section.hpp -------------------------------------------------------------------------------- /external/mstch/src/state/outside_section.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/src/state/outside_section.cpp -------------------------------------------------------------------------------- /external/mstch/src/state/outside_section.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/src/state/outside_section.hpp -------------------------------------------------------------------------------- /external/mstch/src/state/render_state.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/src/state/render_state.hpp -------------------------------------------------------------------------------- /external/mstch/src/template_type.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/src/template_type.cpp -------------------------------------------------------------------------------- /external/mstch/src/template_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/src/template_type.hpp -------------------------------------------------------------------------------- /external/mstch/src/token.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/src/token.cpp -------------------------------------------------------------------------------- /external/mstch/src/token.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/src/token.hpp -------------------------------------------------------------------------------- /external/mstch/src/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/src/utils.cpp -------------------------------------------------------------------------------- /external/mstch/src/utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/src/utils.hpp -------------------------------------------------------------------------------- /external/mstch/src/visitor/get_token.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/src/visitor/get_token.hpp -------------------------------------------------------------------------------- /external/mstch/src/visitor/has_token.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/src/visitor/has_token.hpp -------------------------------------------------------------------------------- /external/mstch/src/visitor/is_node_empty.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/src/visitor/is_node_empty.hpp -------------------------------------------------------------------------------- /external/mstch/src/visitor/render_node.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/src/visitor/render_node.hpp -------------------------------------------------------------------------------- /external/mstch/src/visitor/render_section.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/src/visitor/render_section.hpp -------------------------------------------------------------------------------- /external/mstch/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/test/CMakeLists.txt -------------------------------------------------------------------------------- /external/mstch/test/data/ampersand_escape.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/test/data/ampersand_escape.hpp -------------------------------------------------------------------------------- /external/mstch/test/data/ampersand_escape.mustache: -------------------------------------------------------------------------------- 1 | {{&message}} 2 | -------------------------------------------------------------------------------- /external/mstch/test/data/ampersand_escape.txt: -------------------------------------------------------------------------------- 1 | Some 2 | -------------------------------------------------------------------------------- /external/mstch/test/data/apostrophe.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/test/data/apostrophe.hpp -------------------------------------------------------------------------------- /external/mstch/test/data/apostrophe.mustache: -------------------------------------------------------------------------------- 1 | {{apos}}{{control}} 2 | -------------------------------------------------------------------------------- /external/mstch/test/data/apostrophe.txt: -------------------------------------------------------------------------------- 1 | 'X 2 | -------------------------------------------------------------------------------- /external/mstch/test/data/array_of_strings.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/test/data/array_of_strings.hpp -------------------------------------------------------------------------------- /external/mstch/test/data/array_of_strings.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/test/data/array_of_strings.mustache -------------------------------------------------------------------------------- /external/mstch/test/data/array_of_strings.txt: -------------------------------------------------------------------------------- 1 | hello world 2 | -------------------------------------------------------------------------------- /external/mstch/test/data/backslashes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/test/data/backslashes.hpp -------------------------------------------------------------------------------- /external/mstch/test/data/backslashes.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/test/data/backslashes.mustache -------------------------------------------------------------------------------- /external/mstch/test/data/backslashes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/test/data/backslashes.txt -------------------------------------------------------------------------------- /external/mstch/test/data/bug_11_eating_whitespace.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/test/data/bug_11_eating_whitespace.hpp -------------------------------------------------------------------------------- /external/mstch/test/data/bug_11_eating_whitespace.mustache: -------------------------------------------------------------------------------- 1 | {{tag}} foo 2 | -------------------------------------------------------------------------------- /external/mstch/test/data/bug_11_eating_whitespace.txt: -------------------------------------------------------------------------------- 1 | yo foo 2 | -------------------------------------------------------------------------------- /external/mstch/test/data/bug_length_property.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/test/data/bug_length_property.hpp -------------------------------------------------------------------------------- /external/mstch/test/data/bug_length_property.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/test/data/bug_length_property.mustache -------------------------------------------------------------------------------- /external/mstch/test/data/bug_length_property.txt: -------------------------------------------------------------------------------- 1 | The length variable is: hello 2 | -------------------------------------------------------------------------------- /external/mstch/test/data/changing_delimiters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/test/data/changing_delimiters.hpp -------------------------------------------------------------------------------- /external/mstch/test/data/changing_delimiters.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/test/data/changing_delimiters.mustache -------------------------------------------------------------------------------- /external/mstch/test/data/changing_delimiters.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/test/data/changing_delimiters.txt -------------------------------------------------------------------------------- /external/mstch/test/data/comments.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/test/data/comments.hpp -------------------------------------------------------------------------------- /external/mstch/test/data/comments.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/test/data/comments.mustache -------------------------------------------------------------------------------- /external/mstch/test/data/comments.txt: -------------------------------------------------------------------------------- 1 |

A Comedy of Errors

2 | -------------------------------------------------------------------------------- /external/mstch/test/data/complex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/test/data/complex.hpp -------------------------------------------------------------------------------- /external/mstch/test/data/complex.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/test/data/complex.mustache -------------------------------------------------------------------------------- /external/mstch/test/data/complex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/test/data/complex.txt -------------------------------------------------------------------------------- /external/mstch/test/data/context_lookup.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/test/data/context_lookup.hpp -------------------------------------------------------------------------------- /external/mstch/test/data/context_lookup.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/test/data/context_lookup.mustache -------------------------------------------------------------------------------- /external/mstch/test/data/context_lookup.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /external/mstch/test/data/delimiters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/test/data/delimiters.hpp -------------------------------------------------------------------------------- /external/mstch/test/data/delimiters.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/test/data/delimiters.mustache -------------------------------------------------------------------------------- /external/mstch/test/data/delimiters.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/test/data/delimiters.txt -------------------------------------------------------------------------------- /external/mstch/test/data/disappearing_whitespace.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/test/data/disappearing_whitespace.hpp -------------------------------------------------------------------------------- /external/mstch/test/data/disappearing_whitespace.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/test/data/disappearing_whitespace.mustache -------------------------------------------------------------------------------- /external/mstch/test/data/disappearing_whitespace.txt: -------------------------------------------------------------------------------- 1 | 1 BED 2 | -------------------------------------------------------------------------------- /external/mstch/test/data/dot_notation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/test/data/dot_notation.hpp -------------------------------------------------------------------------------- /external/mstch/test/data/dot_notation.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/test/data/dot_notation.mustache -------------------------------------------------------------------------------- /external/mstch/test/data/dot_notation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/test/data/dot_notation.txt -------------------------------------------------------------------------------- /external/mstch/test/data/double_render.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/test/data/double_render.hpp -------------------------------------------------------------------------------- /external/mstch/test/data/double_render.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/test/data/double_render.mustache -------------------------------------------------------------------------------- /external/mstch/test/data/double_render.txt: -------------------------------------------------------------------------------- 1 | {{win}} 2 | -------------------------------------------------------------------------------- /external/mstch/test/data/empty_list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/test/data/empty_list.hpp -------------------------------------------------------------------------------- /external/mstch/test/data/empty_list.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/test/data/empty_list.mustache -------------------------------------------------------------------------------- /external/mstch/test/data/empty_list.txt: -------------------------------------------------------------------------------- 1 | These are the jobs: 2 | -------------------------------------------------------------------------------- /external/mstch/test/data/empty_sections.hpp: -------------------------------------------------------------------------------- 1 | const auto empty_sections_data = mstch::map{}; -------------------------------------------------------------------------------- /external/mstch/test/data/empty_sections.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/test/data/empty_sections.mustache -------------------------------------------------------------------------------- /external/mstch/test/data/empty_sections.txt: -------------------------------------------------------------------------------- 1 | foo 2 | -------------------------------------------------------------------------------- /external/mstch/test/data/empty_string.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/test/data/empty_string.hpp -------------------------------------------------------------------------------- /external/mstch/test/data/empty_string.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/test/data/empty_string.mustache -------------------------------------------------------------------------------- /external/mstch/test/data/empty_string.txt: -------------------------------------------------------------------------------- 1 | That is all! 2 | -------------------------------------------------------------------------------- /external/mstch/test/data/empty_template.hpp: -------------------------------------------------------------------------------- 1 | const auto empty_template_data = mstch::map{}; -------------------------------------------------------------------------------- /external/mstch/test/data/empty_template.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/test/data/empty_template.mustache -------------------------------------------------------------------------------- /external/mstch/test/data/empty_template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/test/data/empty_template.txt -------------------------------------------------------------------------------- /external/mstch/test/data/error_eof_in_section.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/test/data/error_eof_in_section.hpp -------------------------------------------------------------------------------- /external/mstch/test/data/error_eof_in_section.mustache: -------------------------------------------------------------------------------- 1 | yay{{#hello}}{{.}} -------------------------------------------------------------------------------- /external/mstch/test/data/error_eof_in_section.txt: -------------------------------------------------------------------------------- 1 | yay -------------------------------------------------------------------------------- /external/mstch/test/data/error_eof_in_tag.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/test/data/error_eof_in_tag.hpp -------------------------------------------------------------------------------- /external/mstch/test/data/error_eof_in_tag.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/test/data/error_eof_in_tag.mustache -------------------------------------------------------------------------------- /external/mstch/test/data/error_eof_in_tag.txt: -------------------------------------------------------------------------------- 1 | {{hello -------------------------------------------------------------------------------- /external/mstch/test/data/error_not_found.hpp: -------------------------------------------------------------------------------- 1 | const auto error_not_found_data = mstch::map{ 2 | {"bar", 2} 3 | }; -------------------------------------------------------------------------------- /external/mstch/test/data/error_not_found.mustache: -------------------------------------------------------------------------------- 1 | {{foo}} -------------------------------------------------------------------------------- /external/mstch/test/data/error_not_found.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external/mstch/test/data/escaped.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/test/data/escaped.hpp -------------------------------------------------------------------------------- /external/mstch/test/data/escaped.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/test/data/escaped.mustache -------------------------------------------------------------------------------- /external/mstch/test/data/escaped.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/test/data/escaped.txt -------------------------------------------------------------------------------- /external/mstch/test/data/falsy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/test/data/falsy.hpp -------------------------------------------------------------------------------- /external/mstch/test/data/falsy.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/test/data/falsy.mustache -------------------------------------------------------------------------------- /external/mstch/test/data/falsy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/test/data/falsy.txt -------------------------------------------------------------------------------- /external/mstch/test/data/falsy_array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/test/data/falsy_array.hpp -------------------------------------------------------------------------------- /external/mstch/test/data/falsy_array.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/test/data/falsy_array.mustache -------------------------------------------------------------------------------- /external/mstch/test/data/falsy_array.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/test/data/falsy_array.txt -------------------------------------------------------------------------------- /external/mstch/test/data/grandparent_context.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/test/data/grandparent_context.hpp -------------------------------------------------------------------------------- /external/mstch/test/data/grandparent_context.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/test/data/grandparent_context.mustache -------------------------------------------------------------------------------- /external/mstch/test/data/grandparent_context.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/test/data/grandparent_context.txt -------------------------------------------------------------------------------- /external/mstch/test/data/higher_order_sections.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/test/data/higher_order_sections.hpp -------------------------------------------------------------------------------- /external/mstch/test/data/higher_order_sections.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/test/data/higher_order_sections.mustache -------------------------------------------------------------------------------- /external/mstch/test/data/higher_order_sections.txt: -------------------------------------------------------------------------------- 1 | Hi Tater. To tinker? 2 | -------------------------------------------------------------------------------- /external/mstch/test/data/implicit_iterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/test/data/implicit_iterator.hpp -------------------------------------------------------------------------------- /external/mstch/test/data/implicit_iterator.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/test/data/implicit_iterator.mustache -------------------------------------------------------------------------------- /external/mstch/test/data/implicit_iterator.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/test/data/implicit_iterator.txt -------------------------------------------------------------------------------- /external/mstch/test/data/included_tag.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/test/data/included_tag.hpp -------------------------------------------------------------------------------- /external/mstch/test/data/included_tag.mustache: -------------------------------------------------------------------------------- 1 | You said "{{{html}}}" today 2 | -------------------------------------------------------------------------------- /external/mstch/test/data/included_tag.txt: -------------------------------------------------------------------------------- 1 | You said "I like {{mustache}}" today 2 | -------------------------------------------------------------------------------- /external/mstch/test/data/inverted_section.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/test/data/inverted_section.hpp -------------------------------------------------------------------------------- /external/mstch/test/data/inverted_section.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/test/data/inverted_section.mustache -------------------------------------------------------------------------------- /external/mstch/test/data/inverted_section.txt: -------------------------------------------------------------------------------- 1 | 2 | No repos :( 3 | Hello! 4 | -------------------------------------------------------------------------------- /external/mstch/test/data/keys_with_questionmarks.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/test/data/keys_with_questionmarks.hpp -------------------------------------------------------------------------------- /external/mstch/test/data/keys_with_questionmarks.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/test/data/keys_with_questionmarks.mustache -------------------------------------------------------------------------------- /external/mstch/test/data/keys_with_questionmarks.txt: -------------------------------------------------------------------------------- 1 | Hi Jon! 2 | -------------------------------------------------------------------------------- /external/mstch/test/data/multiline_comment.hpp: -------------------------------------------------------------------------------- 1 | const auto multiline_comment_data = mstch::map{}; -------------------------------------------------------------------------------- /external/mstch/test/data/multiline_comment.mustache: -------------------------------------------------------------------------------- 1 | {{! 2 | 3 | This is a multi-line comment. 4 | 5 | }} 6 | Hello world! 7 | -------------------------------------------------------------------------------- /external/mstch/test/data/multiline_comment.txt: -------------------------------------------------------------------------------- 1 | Hello world! 2 | -------------------------------------------------------------------------------- /external/mstch/test/data/nested_dot.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/test/data/nested_dot.hpp -------------------------------------------------------------------------------- /external/mstch/test/data/nested_dot.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/test/data/nested_dot.mustache -------------------------------------------------------------------------------- /external/mstch/test/data/nested_dot.txt: -------------------------------------------------------------------------------- 1 | Hello Bruno -------------------------------------------------------------------------------- /external/mstch/test/data/nested_higher_order_sections.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/test/data/nested_higher_order_sections.hpp -------------------------------------------------------------------------------- /external/mstch/test/data/nested_higher_order_sections.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/test/data/nested_higher_order_sections.mustache -------------------------------------------------------------------------------- /external/mstch/test/data/nested_higher_order_sections.txt: -------------------------------------------------------------------------------- 1 | My name is Jonas! 2 | -------------------------------------------------------------------------------- /external/mstch/test/data/nested_iterating.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/test/data/nested_iterating.hpp -------------------------------------------------------------------------------- /external/mstch/test/data/nested_iterating.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/test/data/nested_iterating.mustache -------------------------------------------------------------------------------- /external/mstch/test/data/nested_iterating.txt: -------------------------------------------------------------------------------- 1 | foobar 2 | -------------------------------------------------------------------------------- /external/mstch/test/data/nesting.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/test/data/nesting.hpp -------------------------------------------------------------------------------- /external/mstch/test/data/nesting.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/test/data/nesting.mustache -------------------------------------------------------------------------------- /external/mstch/test/data/nesting.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/test/data/nesting.txt -------------------------------------------------------------------------------- /external/mstch/test/data/nesting_same_name.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/test/data/nesting_same_name.hpp -------------------------------------------------------------------------------- /external/mstch/test/data/nesting_same_name.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/test/data/nesting_same_name.mustache -------------------------------------------------------------------------------- /external/mstch/test/data/nesting_same_name.txt: -------------------------------------------------------------------------------- 1 | name1234 2 | -------------------------------------------------------------------------------- /external/mstch/test/data/null_lookup_array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/test/data/null_lookup_array.hpp -------------------------------------------------------------------------------- /external/mstch/test/data/null_lookup_array.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/test/data/null_lookup_array.mustache -------------------------------------------------------------------------------- /external/mstch/test/data/null_lookup_array.txt: -------------------------------------------------------------------------------- 1 | Flor @florrts 2 | Miquel no twitter 3 | -------------------------------------------------------------------------------- /external/mstch/test/data/null_lookup_object.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/test/data/null_lookup_object.hpp -------------------------------------------------------------------------------- /external/mstch/test/data/null_lookup_object.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/test/data/null_lookup_object.mustache -------------------------------------------------------------------------------- /external/mstch/test/data/null_lookup_object.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/test/data/null_lookup_object.txt -------------------------------------------------------------------------------- /external/mstch/test/data/null_string.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/test/data/null_string.hpp -------------------------------------------------------------------------------- /external/mstch/test/data/null_string.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/test/data/null_string.mustache -------------------------------------------------------------------------------- /external/mstch/test/data/null_string.txt: -------------------------------------------------------------------------------- 1 | Hello Elise 2 | glytch true 3 | binary false 4 | value 5 | -------------------------------------------------------------------------------- /external/mstch/test/data/null_view.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/test/data/null_view.hpp -------------------------------------------------------------------------------- /external/mstch/test/data/null_view.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/test/data/null_view.mustache -------------------------------------------------------------------------------- /external/mstch/test/data/null_view.txt: -------------------------------------------------------------------------------- 1 | Joe's friends: -------------------------------------------------------------------------------- /external/mstch/test/data/partial_array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/test/data/partial_array.hpp -------------------------------------------------------------------------------- /external/mstch/test/data/partial_array.mustache: -------------------------------------------------------------------------------- 1 | {{>partial}} -------------------------------------------------------------------------------- /external/mstch/test/data/partial_array.partial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/test/data/partial_array.partial -------------------------------------------------------------------------------- /external/mstch/test/data/partial_array.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/test/data/partial_array.txt -------------------------------------------------------------------------------- /external/mstch/test/data/partial_array_of_partials.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/test/data/partial_array_of_partials.hpp -------------------------------------------------------------------------------- /external/mstch/test/data/partial_array_of_partials.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/test/data/partial_array_of_partials.mustache -------------------------------------------------------------------------------- /external/mstch/test/data/partial_array_of_partials.partial: -------------------------------------------------------------------------------- 1 | {{i}} 2 | -------------------------------------------------------------------------------- /external/mstch/test/data/partial_array_of_partials.txt: -------------------------------------------------------------------------------- 1 | Here is some stuff! 2 | 1 3 | 2 4 | 3 5 | 4 6 | -------------------------------------------------------------------------------- /external/mstch/test/data/partial_array_of_partials_implicit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/test/data/partial_array_of_partials_implicit.hpp -------------------------------------------------------------------------------- /external/mstch/test/data/partial_array_of_partials_implicit.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/test/data/partial_array_of_partials_implicit.mustache -------------------------------------------------------------------------------- /external/mstch/test/data/partial_array_of_partials_implicit.partial: -------------------------------------------------------------------------------- 1 | {{.}} 2 | -------------------------------------------------------------------------------- /external/mstch/test/data/partial_array_of_partials_implicit.txt: -------------------------------------------------------------------------------- 1 | Here is some stuff! 2 | 1 3 | 2 4 | 3 5 | 4 6 | -------------------------------------------------------------------------------- /external/mstch/test/data/partial_empty.hpp: -------------------------------------------------------------------------------- 1 | const auto partial_empty_data = mstch::map{ 2 | {"foo", 1} 3 | }; -------------------------------------------------------------------------------- /external/mstch/test/data/partial_empty.mustache: -------------------------------------------------------------------------------- 1 | hey {{foo}} 2 | {{>partial}} 3 | -------------------------------------------------------------------------------- /external/mstch/test/data/partial_empty.partial: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external/mstch/test/data/partial_empty.txt: -------------------------------------------------------------------------------- 1 | hey 1 2 | -------------------------------------------------------------------------------- /external/mstch/test/data/partial_template.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/test/data/partial_template.hpp -------------------------------------------------------------------------------- /external/mstch/test/data/partial_template.mustache: -------------------------------------------------------------------------------- 1 |

{{title}}

2 | {{>partial}} 3 | -------------------------------------------------------------------------------- /external/mstch/test/data/partial_template.partial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/test/data/partial_template.partial -------------------------------------------------------------------------------- /external/mstch/test/data/partial_template.txt: -------------------------------------------------------------------------------- 1 |

Welcome

2 | Again, Goodbye! 3 | -------------------------------------------------------------------------------- /external/mstch/test/data/partial_view.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/test/data/partial_view.hpp -------------------------------------------------------------------------------- /external/mstch/test/data/partial_view.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/test/data/partial_view.mustache -------------------------------------------------------------------------------- /external/mstch/test/data/partial_view.partial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/test/data/partial_view.partial -------------------------------------------------------------------------------- /external/mstch/test/data/partial_view.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/test/data/partial_view.txt -------------------------------------------------------------------------------- /external/mstch/test/data/partial_whitespace.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/test/data/partial_whitespace.hpp -------------------------------------------------------------------------------- /external/mstch/test/data/partial_whitespace.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/test/data/partial_whitespace.mustache -------------------------------------------------------------------------------- /external/mstch/test/data/partial_whitespace.partial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/test/data/partial_whitespace.partial -------------------------------------------------------------------------------- /external/mstch/test/data/partial_whitespace.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/test/data/partial_whitespace.txt -------------------------------------------------------------------------------- /external/mstch/test/data/recursion_with_same_names.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/test/data/recursion_with_same_names.hpp -------------------------------------------------------------------------------- /external/mstch/test/data/recursion_with_same_names.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/test/data/recursion_with_same_names.mustache -------------------------------------------------------------------------------- /external/mstch/test/data/recursion_with_same_names.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/test/data/recursion_with_same_names.txt -------------------------------------------------------------------------------- /external/mstch/test/data/reuse_of_enumerables.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/test/data/reuse_of_enumerables.hpp -------------------------------------------------------------------------------- /external/mstch/test/data/reuse_of_enumerables.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/test/data/reuse_of_enumerables.mustache -------------------------------------------------------------------------------- /external/mstch/test/data/reuse_of_enumerables.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/test/data/reuse_of_enumerables.txt -------------------------------------------------------------------------------- /external/mstch/test/data/section_as_context.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/test/data/section_as_context.hpp -------------------------------------------------------------------------------- /external/mstch/test/data/section_as_context.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/test/data/section_as_context.mustache -------------------------------------------------------------------------------- /external/mstch/test/data/section_as_context.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/test/data/section_as_context.txt -------------------------------------------------------------------------------- /external/mstch/test/data/section_functions_in_partials.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/test/data/section_functions_in_partials.hpp -------------------------------------------------------------------------------- /external/mstch/test/data/section_functions_in_partials.mustache: -------------------------------------------------------------------------------- 1 | {{> partial}} 2 | 3 |

some more text

4 | -------------------------------------------------------------------------------- /external/mstch/test/data/section_functions_in_partials.partial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/test/data/section_functions_in_partials.partial -------------------------------------------------------------------------------- /external/mstch/test/data/section_functions_in_partials.txt: -------------------------------------------------------------------------------- 1 | Hello There 2 | 3 |

some more text

4 | -------------------------------------------------------------------------------- /external/mstch/test/data/simple.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/test/data/simple.hpp -------------------------------------------------------------------------------- /external/mstch/test/data/simple.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/test/data/simple.mustache -------------------------------------------------------------------------------- /external/mstch/test/data/simple.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/test/data/simple.txt -------------------------------------------------------------------------------- /external/mstch/test/data/string_as_context.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/test/data/string_as_context.hpp -------------------------------------------------------------------------------- /external/mstch/test/data/string_as_context.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/test/data/string_as_context.mustache -------------------------------------------------------------------------------- /external/mstch/test/data/string_as_context.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/test/data/string_as_context.txt -------------------------------------------------------------------------------- /external/mstch/test/data/two_in_a_row.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/test/data/two_in_a_row.hpp -------------------------------------------------------------------------------- /external/mstch/test/data/two_in_a_row.mustache: -------------------------------------------------------------------------------- 1 | {{greeting}}, {{name}}! 2 | -------------------------------------------------------------------------------- /external/mstch/test/data/two_in_a_row.txt: -------------------------------------------------------------------------------- 1 | Welcome, Joe! 2 | -------------------------------------------------------------------------------- /external/mstch/test/data/two_sections.hpp: -------------------------------------------------------------------------------- 1 | const auto two_sections_data = mstch::map{}; -------------------------------------------------------------------------------- /external/mstch/test/data/two_sections.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/test/data/two_sections.mustache -------------------------------------------------------------------------------- /external/mstch/test/data/two_sections.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external/mstch/test/data/unescaped.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/test/data/unescaped.hpp -------------------------------------------------------------------------------- /external/mstch/test/data/unescaped.mustache: -------------------------------------------------------------------------------- 1 |

{{{title}}}

2 | -------------------------------------------------------------------------------- /external/mstch/test/data/unescaped.txt: -------------------------------------------------------------------------------- 1 |

Bear > Shark

2 | -------------------------------------------------------------------------------- /external/mstch/test/data/whitespace.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/test/data/whitespace.hpp -------------------------------------------------------------------------------- /external/mstch/test/data/whitespace.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/test/data/whitespace.mustache -------------------------------------------------------------------------------- /external/mstch/test/data/whitespace.txt: -------------------------------------------------------------------------------- 1 | Hello 2 | 3 | 4 | World. 5 | -------------------------------------------------------------------------------- /external/mstch/test/data/zero_view.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/test/data/zero_view.hpp -------------------------------------------------------------------------------- /external/mstch/test/data/zero_view.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/test/data/zero_view.mustache -------------------------------------------------------------------------------- /external/mstch/test/data/zero_view.txt: -------------------------------------------------------------------------------- 1 | 0,1,2, -------------------------------------------------------------------------------- /external/mstch/test/specs_lambdas.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/test/specs_lambdas.hpp -------------------------------------------------------------------------------- /external/mstch/test/test_context.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/test/test_context.hpp -------------------------------------------------------------------------------- /external/mstch/test/test_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/external/mstch/test/test_main.cpp -------------------------------------------------------------------------------- /include/chimera/binding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/include/chimera/binding.h -------------------------------------------------------------------------------- /include/chimera/chimera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/include/chimera/chimera.h -------------------------------------------------------------------------------- /include/chimera/configuration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/include/chimera/configuration.h -------------------------------------------------------------------------------- /include/chimera/consumer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/include/chimera/consumer.h -------------------------------------------------------------------------------- /include/chimera/frontend_action.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/include/chimera/frontend_action.h -------------------------------------------------------------------------------- /include/chimera/mstch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/include/chimera/mstch.h -------------------------------------------------------------------------------- /include/chimera/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/include/chimera/util.h -------------------------------------------------------------------------------- /include/chimera/visitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/include/chimera/visitor.h -------------------------------------------------------------------------------- /package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/package.xml -------------------------------------------------------------------------------- /src/chimera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/src/chimera.cpp -------------------------------------------------------------------------------- /src/chimera_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/src/chimera_main.cpp -------------------------------------------------------------------------------- /src/configuration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/src/configuration.cpp -------------------------------------------------------------------------------- /src/consumer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/src/consumer.cpp -------------------------------------------------------------------------------- /src/frontend_action.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/src/frontend_action.cpp -------------------------------------------------------------------------------- /src/mstch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/src/mstch.cpp -------------------------------------------------------------------------------- /src/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/src/util.cpp -------------------------------------------------------------------------------- /src/visitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/src/visitor.cpp -------------------------------------------------------------------------------- /test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/CMakeLists.txt -------------------------------------------------------------------------------- /test/emulator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/emulator.cpp -------------------------------------------------------------------------------- /test/emulator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/emulator.h -------------------------------------------------------------------------------- /test/examples/00_module/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/examples/00_module/CMakeLists.txt -------------------------------------------------------------------------------- /test/examples/00_module/module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/examples/00_module/module.h -------------------------------------------------------------------------------- /test/examples/00_module/module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/examples/00_module/module.py -------------------------------------------------------------------------------- /test/examples/00_module/module_boost_python.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/examples/00_module/module_boost_python.yaml -------------------------------------------------------------------------------- /test/examples/00_module/module_pybind11.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/examples/00_module/module_pybind11.yaml -------------------------------------------------------------------------------- /test/examples/01_function/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/examples/01_function/CMakeLists.txt -------------------------------------------------------------------------------- /test/examples/01_function/function.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/examples/01_function/function.cpp -------------------------------------------------------------------------------- /test/examples/01_function/function.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/examples/01_function/function.h -------------------------------------------------------------------------------- /test/examples/01_function/function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/examples/01_function/function.py -------------------------------------------------------------------------------- /test/examples/01_function/function_boost_python.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/examples/01_function/function_boost_python.yaml -------------------------------------------------------------------------------- /test/examples/01_function/function_pybind11.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/examples/01_function/function_pybind11.yaml -------------------------------------------------------------------------------- /test/examples/02_class/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/examples/02_class/CMakeLists.txt -------------------------------------------------------------------------------- /test/examples/02_class/class.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/examples/02_class/class.cpp -------------------------------------------------------------------------------- /test/examples/02_class/class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/examples/02_class/class.h -------------------------------------------------------------------------------- /test/examples/02_class/class.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/examples/02_class/class.py -------------------------------------------------------------------------------- /test/examples/02_class/class.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/examples/02_class/class.yaml -------------------------------------------------------------------------------- /test/examples/03_smart_pointers/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/examples/03_smart_pointers/CMakeLists.txt -------------------------------------------------------------------------------- /test/examples/03_smart_pointers/smart_pointers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/examples/03_smart_pointers/smart_pointers.cpp -------------------------------------------------------------------------------- /test/examples/03_smart_pointers/smart_pointers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/examples/03_smart_pointers/smart_pointers.h -------------------------------------------------------------------------------- /test/examples/03_smart_pointers/smart_pointers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/examples/03_smart_pointers/smart_pointers.py -------------------------------------------------------------------------------- /test/examples/03_smart_pointers/smart_pointers_boost_python.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/examples/03_smart_pointers/smart_pointers_boost_python.yaml -------------------------------------------------------------------------------- /test/examples/03_smart_pointers/smart_pointers_pybind11.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/examples/03_smart_pointers/smart_pointers_pybind11.yaml -------------------------------------------------------------------------------- /test/examples/04_enumeration/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/examples/04_enumeration/CMakeLists.txt -------------------------------------------------------------------------------- /test/examples/04_enumeration/enumeration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/examples/04_enumeration/enumeration.cpp -------------------------------------------------------------------------------- /test/examples/04_enumeration/enumeration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/examples/04_enumeration/enumeration.h -------------------------------------------------------------------------------- /test/examples/04_enumeration/enumeration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/examples/04_enumeration/enumeration.py -------------------------------------------------------------------------------- /test/examples/04_enumeration/enumeration.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/examples/04_enumeration/enumeration.yaml -------------------------------------------------------------------------------- /test/examples/05_variable/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/examples/05_variable/CMakeLists.txt -------------------------------------------------------------------------------- /test/examples/05_variable/variable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/examples/05_variable/variable.cpp -------------------------------------------------------------------------------- /test/examples/05_variable/variable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/examples/05_variable/variable.h -------------------------------------------------------------------------------- /test/examples/05_variable/variable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/examples/05_variable/variable.py -------------------------------------------------------------------------------- /test/examples/05_variable/variable.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/examples/05_variable/variable.yaml -------------------------------------------------------------------------------- /test/examples/06_template_class/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/examples/06_template_class/CMakeLists.txt -------------------------------------------------------------------------------- /test/examples/06_template_class/boost_python.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/examples/06_template_class/boost_python.yaml -------------------------------------------------------------------------------- /test/examples/06_template_class/pybind11.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/examples/06_template_class/pybind11.yaml -------------------------------------------------------------------------------- /test/examples/06_template_class/template_class.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/examples/06_template_class/template_class.cpp -------------------------------------------------------------------------------- /test/examples/06_template_class/template_class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/examples/06_template_class/template_class.h -------------------------------------------------------------------------------- /test/examples/06_template_class/template_class.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/examples/06_template_class/template_class.py -------------------------------------------------------------------------------- /test/examples/07_typedef/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/examples/07_typedef/CMakeLists.txt -------------------------------------------------------------------------------- /test/examples/07_typedef/typedef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/examples/07_typedef/typedef.h -------------------------------------------------------------------------------- /test/examples/07_typedef/typedef.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/examples/07_typedef/typedef.py -------------------------------------------------------------------------------- /test/examples/07_typedef/typedef.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/examples/07_typedef/typedef.yaml -------------------------------------------------------------------------------- /test/examples/20_eigen/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/examples/20_eigen/CMakeLists.txt -------------------------------------------------------------------------------- /test/examples/20_eigen/eigen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/examples/20_eigen/eigen.cpp -------------------------------------------------------------------------------- /test/examples/20_eigen/eigen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/examples/20_eigen/eigen.h -------------------------------------------------------------------------------- /test/examples/20_eigen/eigen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/examples/20_eigen/eigen.py -------------------------------------------------------------------------------- /test/examples/20_eigen/eigen_boost_python.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/examples/20_eigen/eigen_boost_python.yaml -------------------------------------------------------------------------------- /test/examples/20_eigen/eigen_pybind11.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/examples/20_eigen/eigen_pybind11.yaml -------------------------------------------------------------------------------- /test/examples/30_pybind11_examples/01_basics/01_first_steps/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/examples/30_pybind11_examples/01_basics/01_first_steps/CMakeLists.txt -------------------------------------------------------------------------------- /test/examples/30_pybind11_examples/01_basics/01_first_steps/chimera_boost_python.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/examples/30_pybind11_examples/01_basics/01_first_steps/chimera_boost_python.yaml -------------------------------------------------------------------------------- /test/examples/30_pybind11_examples/01_basics/01_first_steps/chimera_pybind11.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/examples/30_pybind11_examples/01_basics/01_first_steps/chimera_pybind11.yaml -------------------------------------------------------------------------------- /test/examples/30_pybind11_examples/01_basics/01_first_steps/first_steps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/examples/30_pybind11_examples/01_basics/01_first_steps/first_steps.cpp -------------------------------------------------------------------------------- /test/examples/30_pybind11_examples/01_basics/01_first_steps/first_steps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/examples/30_pybind11_examples/01_basics/01_first_steps/first_steps.h -------------------------------------------------------------------------------- /test/examples/30_pybind11_examples/01_basics/01_first_steps/first_steps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/examples/30_pybind11_examples/01_basics/01_first_steps/first_steps.py -------------------------------------------------------------------------------- /test/examples/30_pybind11_examples/01_basics/02_object_oriented_code/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/examples/30_pybind11_examples/01_basics/02_object_oriented_code/CMakeLists.txt -------------------------------------------------------------------------------- /test/examples/30_pybind11_examples/01_basics/02_object_oriented_code/chimera_boost_python.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/examples/30_pybind11_examples/01_basics/02_object_oriented_code/chimera_boost_python.yaml -------------------------------------------------------------------------------- /test/examples/30_pybind11_examples/01_basics/02_object_oriented_code/chimera_pybind11.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/examples/30_pybind11_examples/01_basics/02_object_oriented_code/chimera_pybind11.yaml -------------------------------------------------------------------------------- /test/examples/30_pybind11_examples/01_basics/02_object_oriented_code/object_oriented_code.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/examples/30_pybind11_examples/01_basics/02_object_oriented_code/object_oriented_code.cpp -------------------------------------------------------------------------------- /test/examples/30_pybind11_examples/01_basics/02_object_oriented_code/object_oriented_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/examples/30_pybind11_examples/01_basics/02_object_oriented_code/object_oriented_code.h -------------------------------------------------------------------------------- /test/examples/30_pybind11_examples/01_basics/02_object_oriented_code/object_oriented_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/examples/30_pybind11_examples/01_basics/02_object_oriented_code/object_oriented_code.py -------------------------------------------------------------------------------- /test/examples/30_pybind11_examples/01_basics/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/examples/30_pybind11_examples/01_basics/CMakeLists.txt -------------------------------------------------------------------------------- /test/examples/30_pybind11_examples/02_advanced/01_functions/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/examples/30_pybind11_examples/02_advanced/01_functions/CMakeLists.txt -------------------------------------------------------------------------------- /test/examples/30_pybind11_examples/02_advanced/01_functions/chimera_boost_python.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/examples/30_pybind11_examples/02_advanced/01_functions/chimera_boost_python.yaml -------------------------------------------------------------------------------- /test/examples/30_pybind11_examples/02_advanced/01_functions/chimera_pybind11.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/examples/30_pybind11_examples/02_advanced/01_functions/chimera_pybind11.yaml -------------------------------------------------------------------------------- /test/examples/30_pybind11_examples/02_advanced/01_functions/functions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/examples/30_pybind11_examples/02_advanced/01_functions/functions.cpp -------------------------------------------------------------------------------- /test/examples/30_pybind11_examples/02_advanced/01_functions/functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/examples/30_pybind11_examples/02_advanced/01_functions/functions.h -------------------------------------------------------------------------------- /test/examples/30_pybind11_examples/02_advanced/01_functions/functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/examples/30_pybind11_examples/02_advanced/01_functions/functions.py -------------------------------------------------------------------------------- /test/examples/30_pybind11_examples/02_advanced/02_classes/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/examples/30_pybind11_examples/02_advanced/02_classes/CMakeLists.txt -------------------------------------------------------------------------------- /test/examples/30_pybind11_examples/02_advanced/02_classes/chimera_boost_python.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/examples/30_pybind11_examples/02_advanced/02_classes/chimera_boost_python.yaml -------------------------------------------------------------------------------- /test/examples/30_pybind11_examples/02_advanced/02_classes/chimera_pybind11.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/examples/30_pybind11_examples/02_advanced/02_classes/chimera_pybind11.yaml -------------------------------------------------------------------------------- /test/examples/30_pybind11_examples/02_advanced/02_classes/classes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/examples/30_pybind11_examples/02_advanced/02_classes/classes.cpp -------------------------------------------------------------------------------- /test/examples/30_pybind11_examples/02_advanced/02_classes/classes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/examples/30_pybind11_examples/02_advanced/02_classes/classes.h -------------------------------------------------------------------------------- /test/examples/30_pybind11_examples/02_advanced/02_classes/classes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/examples/30_pybind11_examples/02_advanced/02_classes/classes.py -------------------------------------------------------------------------------- /test/examples/30_pybind11_examples/02_advanced/03_exceptions/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/examples/30_pybind11_examples/02_advanced/03_exceptions/CMakeLists.txt -------------------------------------------------------------------------------- /test/examples/30_pybind11_examples/02_advanced/03_exceptions/chimera_boost_python.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/examples/30_pybind11_examples/02_advanced/03_exceptions/chimera_boost_python.yaml -------------------------------------------------------------------------------- /test/examples/30_pybind11_examples/02_advanced/03_exceptions/chimera_pybind11.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/examples/30_pybind11_examples/02_advanced/03_exceptions/chimera_pybind11.yaml -------------------------------------------------------------------------------- /test/examples/30_pybind11_examples/02_advanced/03_exceptions/exceptions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/examples/30_pybind11_examples/02_advanced/03_exceptions/exceptions.cpp -------------------------------------------------------------------------------- /test/examples/30_pybind11_examples/02_advanced/03_exceptions/exceptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/examples/30_pybind11_examples/02_advanced/03_exceptions/exceptions.h -------------------------------------------------------------------------------- /test/examples/30_pybind11_examples/02_advanced/03_exceptions/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/examples/30_pybind11_examples/02_advanced/03_exceptions/exceptions.py -------------------------------------------------------------------------------- /test/examples/30_pybind11_examples/02_advanced/05_type_conversions/03_functional/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/examples/30_pybind11_examples/02_advanced/05_type_conversions/03_functional/CMakeLists.txt -------------------------------------------------------------------------------- /test/examples/30_pybind11_examples/02_advanced/05_type_conversions/03_functional/chimera_boost_python.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/examples/30_pybind11_examples/02_advanced/05_type_conversions/03_functional/chimera_boost_python.yaml -------------------------------------------------------------------------------- /test/examples/30_pybind11_examples/02_advanced/05_type_conversions/03_functional/chimera_pybind11.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/examples/30_pybind11_examples/02_advanced/05_type_conversions/03_functional/chimera_pybind11.yaml -------------------------------------------------------------------------------- /test/examples/30_pybind11_examples/02_advanced/05_type_conversions/03_functional/functional.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/examples/30_pybind11_examples/02_advanced/05_type_conversions/03_functional/functional.cpp -------------------------------------------------------------------------------- /test/examples/30_pybind11_examples/02_advanced/05_type_conversions/03_functional/functional.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/examples/30_pybind11_examples/02_advanced/05_type_conversions/03_functional/functional.h -------------------------------------------------------------------------------- /test/examples/30_pybind11_examples/02_advanced/05_type_conversions/03_functional/functional.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/examples/30_pybind11_examples/02_advanced/05_type_conversions/03_functional/functional.py -------------------------------------------------------------------------------- /test/examples/30_pybind11_examples/02_advanced/05_type_conversions/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(03_functional) 2 | -------------------------------------------------------------------------------- /test/examples/30_pybind11_examples/02_advanced/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/examples/30_pybind11_examples/02_advanced/CMakeLists.txt -------------------------------------------------------------------------------- /test/examples/30_pybind11_examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/examples/30_pybind11_examples/CMakeLists.txt -------------------------------------------------------------------------------- /test/examples/99_dart_example/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/examples/99_dart_example/CMakeLists.txt -------------------------------------------------------------------------------- /test/examples/99_dart_example/dart_example.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/examples/99_dart_example/dart_example.h -------------------------------------------------------------------------------- /test/examples/99_dart_example/dart_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/examples/99_dart_example/dart_example.py -------------------------------------------------------------------------------- /test/examples/99_dart_example/dart_example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/examples/99_dart_example/dart_example.yaml -------------------------------------------------------------------------------- /test/examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/examples/CMakeLists.txt -------------------------------------------------------------------------------- /test/examples/cmake/chimeraTest.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/examples/cmake/chimeraTest.cmake -------------------------------------------------------------------------------- /test/examples/cmake/chimeraTestBoostPython.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/examples/cmake/chimeraTestBoostPython.cmake -------------------------------------------------------------------------------- /test/examples/cmake/chimeraTestPybind11.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/examples/cmake/chimeraTestPybind11.cmake -------------------------------------------------------------------------------- /test/examples/regression/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/examples/regression/CMakeLists.txt -------------------------------------------------------------------------------- /test/examples/regression/issue105_extra_commas/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/examples/regression/issue105_extra_commas/CMakeLists.txt -------------------------------------------------------------------------------- /test/examples/regression/issue105_extra_commas/boost_python.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/examples/regression/issue105_extra_commas/boost_python.yaml -------------------------------------------------------------------------------- /test/examples/regression/issue105_extra_commas/issue105_extra_commas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/examples/regression/issue105_extra_commas/issue105_extra_commas.h -------------------------------------------------------------------------------- /test/examples/regression/issue105_extra_commas/issue105_extra_commas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/examples/regression/issue105_extra_commas/issue105_extra_commas.py -------------------------------------------------------------------------------- /test/examples/regression/issue105_extra_commas/pybind11.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/examples/regression/issue105_extra_commas/pybind11.yaml -------------------------------------------------------------------------------- /test/examples/regression/issue148_lambda_function/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/examples/regression/issue148_lambda_function/CMakeLists.txt -------------------------------------------------------------------------------- /test/examples/regression/issue148_lambda_function/boost_python.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/examples/regression/issue148_lambda_function/boost_python.yaml -------------------------------------------------------------------------------- /test/examples/regression/issue148_lambda_function/issue148_lambda_function.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/examples/regression/issue148_lambda_function/issue148_lambda_function.cpp -------------------------------------------------------------------------------- /test/examples/regression/issue148_lambda_function/issue148_lambda_function.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/examples/regression/issue148_lambda_function/issue148_lambda_function.h -------------------------------------------------------------------------------- /test/examples/regression/issue148_lambda_function/issue148_lambda_function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/examples/regression/issue148_lambda_function/issue148_lambda_function.py -------------------------------------------------------------------------------- /test/examples/regression/issue148_lambda_function/pybind11.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/examples/regression/issue148_lambda_function/pybind11.yaml -------------------------------------------------------------------------------- /test/examples/regression/issue216_template_param/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/examples/regression/issue216_template_param/CMakeLists.txt -------------------------------------------------------------------------------- /test/examples/regression/issue216_template_param/issue216_template_param.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/examples/regression/issue216_template_param/issue216_template_param.cpp -------------------------------------------------------------------------------- /test/examples/regression/issue216_template_param/issue216_template_param.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/examples/regression/issue216_template_param/issue216_template_param.h -------------------------------------------------------------------------------- /test/examples/regression/issue216_template_param/issue216_template_param.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/examples/regression/issue216_template_param/issue216_template_param.py -------------------------------------------------------------------------------- /test/examples/regression/issue216_template_param/issue216_template_param_boost_python.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/examples/regression/issue216_template_param/issue216_template_param_boost_python.yaml -------------------------------------------------------------------------------- /test/examples/regression/issue216_template_param/issue216_template_param_pybind11.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/examples/regression/issue216_template_param/issue216_template_param_pybind11.yaml -------------------------------------------------------------------------------- /test/examples/regression/issue228_template_type_alias/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/examples/regression/issue228_template_type_alias/CMakeLists.txt -------------------------------------------------------------------------------- /test/examples/regression/issue228_template_type_alias/issue228_template_type_alias.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/examples/regression/issue228_template_type_alias/issue228_template_type_alias.cpp -------------------------------------------------------------------------------- /test/examples/regression/issue228_template_type_alias/issue228_template_type_alias.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/examples/regression/issue228_template_type_alias/issue228_template_type_alias.h -------------------------------------------------------------------------------- /test/examples/regression/issue228_template_type_alias/issue228_template_type_alias.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/examples/regression/issue228_template_type_alias/issue228_template_type_alias.py -------------------------------------------------------------------------------- /test/examples/regression/issue228_template_type_alias/issue228_template_type_alias_boost_python.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/examples/regression/issue228_template_type_alias/issue228_template_type_alias_boost_python.yaml -------------------------------------------------------------------------------- /test/examples/regression/issue228_template_type_alias/issue228_template_type_alias_pybind11.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/examples/regression/issue228_template_type_alias/issue228_template_type_alias_pybind11.yaml -------------------------------------------------------------------------------- /test/examples/regression/issue262_static_method/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/examples/regression/issue262_static_method/CMakeLists.txt -------------------------------------------------------------------------------- /test/examples/regression/issue262_static_method/boost_python.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/examples/regression/issue262_static_method/boost_python.yaml -------------------------------------------------------------------------------- /test/examples/regression/issue262_static_method/issue262_static_method.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/examples/regression/issue262_static_method/issue262_static_method.h -------------------------------------------------------------------------------- /test/examples/regression/issue262_static_method/issue262_static_method.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/examples/regression/issue262_static_method/issue262_static_method.py -------------------------------------------------------------------------------- /test/examples/regression/issue262_static_method/pybind11.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/examples/regression/issue262_static_method/pybind11.yaml -------------------------------------------------------------------------------- /test/examples/regression/issue297_template_variable/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/examples/regression/issue297_template_variable/CMakeLists.txt -------------------------------------------------------------------------------- /test/examples/regression/issue297_template_variable/boost_python.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/examples/regression/issue297_template_variable/boost_python.yaml -------------------------------------------------------------------------------- /test/examples/regression/issue297_template_variable/issue297_template_variable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/examples/regression/issue297_template_variable/issue297_template_variable.cpp -------------------------------------------------------------------------------- /test/examples/regression/issue297_template_variable/issue297_template_variable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/examples/regression/issue297_template_variable/issue297_template_variable.h -------------------------------------------------------------------------------- /test/examples/regression/issue297_template_variable/issue297_template_variable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/examples/regression/issue297_template_variable/issue297_template_variable.py -------------------------------------------------------------------------------- /test/examples/regression/issue297_template_variable/pybind11.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/examples/regression/issue297_template_variable/pybind11.yaml -------------------------------------------------------------------------------- /test/examples/regression/issue310_nested_class_name/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/examples/regression/issue310_nested_class_name/CMakeLists.txt -------------------------------------------------------------------------------- /test/examples/regression/issue310_nested_class_name/boost_python.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/examples/regression/issue310_nested_class_name/boost_python.yaml -------------------------------------------------------------------------------- /test/examples/regression/issue310_nested_class_name/issue310_nested_class_name.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/examples/regression/issue310_nested_class_name/issue310_nested_class_name.cpp -------------------------------------------------------------------------------- /test/examples/regression/issue310_nested_class_name/issue310_nested_class_name.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/examples/regression/issue310_nested_class_name/issue310_nested_class_name.h -------------------------------------------------------------------------------- /test/examples/regression/issue310_nested_class_name/issue310_nested_class_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/examples/regression/issue310_nested_class_name/issue310_nested_class_name.py -------------------------------------------------------------------------------- /test/examples/regression/issue310_nested_class_name/pybind11.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/examples/regression/issue310_nested_class_name/pybind11.yaml -------------------------------------------------------------------------------- /test/examples/regression/issue328_dependent_name/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/examples/regression/issue328_dependent_name/CMakeLists.txt -------------------------------------------------------------------------------- /test/examples/regression/issue328_dependent_name/boost_python.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/examples/regression/issue328_dependent_name/boost_python.yaml -------------------------------------------------------------------------------- /test/examples/regression/issue328_dependent_name/issue328_dependent_name.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/examples/regression/issue328_dependent_name/issue328_dependent_name.h -------------------------------------------------------------------------------- /test/examples/regression/issue328_dependent_name/issue328_dependent_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/examples/regression/issue328_dependent_name/issue328_dependent_name.py -------------------------------------------------------------------------------- /test/examples/regression/issue328_dependent_name/pybind11.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/examples/regression/issue328_dependent_name/pybind11.yaml -------------------------------------------------------------------------------- /test/gtest/cmake/Config.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/gtest/cmake/Config.cmake.in -------------------------------------------------------------------------------- /test/gtest/cmake/gtest.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/gtest/cmake/gtest.pc.in -------------------------------------------------------------------------------- /test/gtest/cmake/gtest_main.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/gtest/cmake/gtest_main.pc.in -------------------------------------------------------------------------------- /test/gtest/cmake/internal_utils.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/gtest/cmake/internal_utils.cmake -------------------------------------------------------------------------------- /test/gtest/include/gtest/gtest-death-test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/gtest/include/gtest/gtest-death-test.h -------------------------------------------------------------------------------- /test/gtest/include/gtest/gtest-message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/gtest/include/gtest/gtest-message.h -------------------------------------------------------------------------------- /test/gtest/include/gtest/gtest-param-test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/gtest/include/gtest/gtest-param-test.h -------------------------------------------------------------------------------- /test/gtest/include/gtest/gtest-param-test.h.pump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/gtest/include/gtest/gtest-param-test.h.pump -------------------------------------------------------------------------------- /test/gtest/include/gtest/gtest-printers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/gtest/include/gtest/gtest-printers.h -------------------------------------------------------------------------------- /test/gtest/include/gtest/gtest-spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/gtest/include/gtest/gtest-spi.h -------------------------------------------------------------------------------- /test/gtest/include/gtest/gtest-test-part.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/gtest/include/gtest/gtest-test-part.h -------------------------------------------------------------------------------- /test/gtest/include/gtest/gtest-typed-test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/gtest/include/gtest/gtest-typed-test.h -------------------------------------------------------------------------------- /test/gtest/include/gtest/gtest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/gtest/include/gtest/gtest.h -------------------------------------------------------------------------------- /test/gtest/include/gtest/gtest_pred_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/gtest/include/gtest/gtest_pred_impl.h -------------------------------------------------------------------------------- /test/gtest/include/gtest/gtest_prod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/gtest/include/gtest/gtest_prod.h -------------------------------------------------------------------------------- /test/gtest/include/gtest/internal/custom/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/gtest/include/gtest/internal/custom/README.md -------------------------------------------------------------------------------- /test/gtest/include/gtest/internal/custom/gtest-port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/gtest/include/gtest/internal/custom/gtest-port.h -------------------------------------------------------------------------------- /test/gtest/include/gtest/internal/custom/gtest-printers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/gtest/include/gtest/internal/custom/gtest-printers.h -------------------------------------------------------------------------------- /test/gtest/include/gtest/internal/custom/gtest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/gtest/include/gtest/internal/custom/gtest.h -------------------------------------------------------------------------------- /test/gtest/include/gtest/internal/gtest-death-test-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/gtest/include/gtest/internal/gtest-death-test-internal.h -------------------------------------------------------------------------------- /test/gtest/include/gtest/internal/gtest-filepath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/gtest/include/gtest/internal/gtest-filepath.h -------------------------------------------------------------------------------- /test/gtest/include/gtest/internal/gtest-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/gtest/include/gtest/internal/gtest-internal.h -------------------------------------------------------------------------------- /test/gtest/include/gtest/internal/gtest-linked_ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/gtest/include/gtest/internal/gtest-linked_ptr.h -------------------------------------------------------------------------------- /test/gtest/include/gtest/internal/gtest-param-util-generated.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/gtest/include/gtest/internal/gtest-param-util-generated.h -------------------------------------------------------------------------------- /test/gtest/include/gtest/internal/gtest-param-util-generated.h.pump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/gtest/include/gtest/internal/gtest-param-util-generated.h.pump -------------------------------------------------------------------------------- /test/gtest/include/gtest/internal/gtest-param-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/gtest/include/gtest/internal/gtest-param-util.h -------------------------------------------------------------------------------- /test/gtest/include/gtest/internal/gtest-port-arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/gtest/include/gtest/internal/gtest-port-arch.h -------------------------------------------------------------------------------- /test/gtest/include/gtest/internal/gtest-port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/gtest/include/gtest/internal/gtest-port.h -------------------------------------------------------------------------------- /test/gtest/include/gtest/internal/gtest-string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/gtest/include/gtest/internal/gtest-string.h -------------------------------------------------------------------------------- /test/gtest/include/gtest/internal/gtest-tuple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/gtest/include/gtest/internal/gtest-tuple.h -------------------------------------------------------------------------------- /test/gtest/include/gtest/internal/gtest-tuple.h.pump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/gtest/include/gtest/internal/gtest-tuple.h.pump -------------------------------------------------------------------------------- /test/gtest/include/gtest/internal/gtest-type-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/gtest/include/gtest/internal/gtest-type-util.h -------------------------------------------------------------------------------- /test/gtest/include/gtest/internal/gtest-type-util.h.pump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/gtest/include/gtest/internal/gtest-type-util.h.pump -------------------------------------------------------------------------------- /test/gtest/src/gtest-all.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/gtest/src/gtest-all.cc -------------------------------------------------------------------------------- /test/gtest/src/gtest-death-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/gtest/src/gtest-death-test.cc -------------------------------------------------------------------------------- /test/gtest/src/gtest-filepath.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/gtest/src/gtest-filepath.cc -------------------------------------------------------------------------------- /test/gtest/src/gtest-internal-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/gtest/src/gtest-internal-inl.h -------------------------------------------------------------------------------- /test/gtest/src/gtest-port.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/gtest/src/gtest-port.cc -------------------------------------------------------------------------------- /test/gtest/src/gtest-printers.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/gtest/src/gtest-printers.cc -------------------------------------------------------------------------------- /test/gtest/src/gtest-test-part.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/gtest/src/gtest-test-part.cc -------------------------------------------------------------------------------- /test/gtest/src/gtest-typed-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/gtest/src/gtest-typed-test.cc -------------------------------------------------------------------------------- /test/gtest/src/gtest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/gtest/src/gtest.cc -------------------------------------------------------------------------------- /test/gtest/src/gtest_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/gtest/src/gtest_main.cc -------------------------------------------------------------------------------- /test/test_emulator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/test/test_emulator.cpp -------------------------------------------------------------------------------- /tools/check_format.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/personalrobotics/chimera/HEAD/tools/check_format.sh --------------------------------------------------------------------------------