├── .binder ├── .dockerignore ├── Dockerfile └── README.md ├── .coveragerc ├── .dockerignore ├── .gitattributes ├── .github └── workflows │ └── tests.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE.rst ├── Makefile ├── NOTICE ├── README.rst ├── docs ├── conf.py ├── declarations_uml.png ├── design.rst ├── documentation.rst ├── examples.rst ├── examples │ ├── artificial │ │ ├── example.hpp │ │ ├── example.py │ │ └── example.rst │ ├── caching │ │ ├── example.hpp │ │ ├── example.py │ │ └── example.rst │ ├── compound │ │ ├── example.hpp │ │ ├── example.py │ │ └── example.rst │ ├── elaborated │ │ ├── example.hpp │ │ ├── example.py │ │ └── example.rst │ ├── equality │ │ ├── example.hpp │ │ ├── example.py │ │ └── example.rst │ ├── function-pointer │ │ ├── example.hpp │ │ ├── example.py │ │ └── example.rst │ ├── functions │ │ ├── example.hpp │ │ ├── example.py │ │ └── example.rst │ ├── nested-types │ │ ├── example.hpp │ │ ├── example.py │ │ └── example.rst │ ├── notebook │ │ └── example.ipynb │ ├── parsing-string │ │ ├── example.py │ │ └── example.rst │ ├── parsing │ │ ├── example.hpp │ │ ├── example.py │ │ └── example.rst │ ├── print-example │ │ ├── example.hpp │ │ ├── example.hpp.rst │ │ ├── example.hpp.xml │ │ ├── example.hpp.xml.rst │ │ ├── example.py │ │ ├── example.py.rst │ │ ├── example.rst │ │ ├── output.txt │ │ └── output.txt.rst │ ├── searching │ │ ├── example.hpp │ │ ├── example.py │ │ └── example.rst │ ├── searching1 │ │ ├── example.hpp │ │ ├── example.py │ │ └── example.rst │ ├── templates │ │ ├── example.hpp │ │ ├── example.py │ │ └── example.rst │ └── variables │ │ ├── example.hpp │ │ ├── example.py │ │ └── example.rst ├── faq.rst ├── history.rst ├── index.rst ├── install.rst ├── links.rst ├── make.bat ├── parser_uml.png ├── pygccxml_uml.vsd ├── query_interface.rst ├── releasing.rst ├── upgrade_issues.rst └── users.rst ├── pyproject.toml ├── src └── pygccxml │ ├── __init__.py │ ├── declarations │ ├── __init__.py │ ├── algorithm.py │ ├── algorithms_cache.py │ ├── byte_info.py │ ├── call_invocation.py │ ├── calldef.py │ ├── calldef_members.py │ ├── calldef_types.py │ ├── class_declaration.py │ ├── comment.py │ ├── container_traits.py │ ├── cpptypes.py │ ├── decl_factory.py │ ├── decl_printer.py │ ├── decl_visitor.py │ ├── declaration.py │ ├── declaration_utils.py │ ├── declarations_matchers.py │ ├── dependencies.py │ ├── elaborated_info.py │ ├── enumeration.py │ ├── free_calldef.py │ ├── function_traits.py │ ├── has_operator_matcher.py │ ├── location.py │ ├── matchers.py │ ├── mdecl_wrapper.py │ ├── namespace.py │ ├── pattern_parser.py │ ├── pointer_traits.py │ ├── runtime_errors.py │ ├── scopedef.py │ ├── templates.py │ ├── traits_impl_details.py │ ├── type_traits.py │ ├── type_traits_classes.py │ ├── type_visitor.py │ ├── typedef.py │ ├── variable.py │ └── xml_generators.py │ ├── parser │ ├── __init__.py │ ├── config.py │ ├── declarations_cache.py │ ├── declarations_joiner.py │ ├── directory_cache.py │ ├── etree_scanner.py │ ├── linker.py │ ├── patcher.py │ ├── project_reader.py │ ├── scanner.py │ └── source_reader.py │ └── utils │ ├── __init__.py │ ├── utils.py │ └── xml_generators.py └── tests ├── __init__.py ├── autoconfig.py ├── conftest.py ├── data ├── abstract_classes.hpp ├── attributes_castxml.hpp ├── attributes_gccxml.hpp ├── better_templates_matcher_tester.hpp ├── binary_parsers │ ├── libconfig.h │ ├── mydll.cpp │ ├── mydll.h │ ├── sconscript │ └── sconstruct ├── bit_fields.hpp ├── classes.hpp ├── complex_types.hpp ├── const_volatile_arg.hpp ├── core_cache.hpp ├── core_class_hierarchy.hpp ├── core_class_hierarchy.hpp.xml ├── core_diamand_hierarchy_base.hpp ├── core_diamand_hierarchy_derived1.hpp ├── core_diamand_hierarchy_derived2.hpp ├── core_diamand_hierarchy_final_derived.hpp ├── core_membership.hpp ├── core_ns_join_1.hpp ├── core_ns_join_2.hpp ├── core_ns_join_3.hpp ├── core_overloads_1.hpp ├── core_overloads_2.hpp ├── core_types.hpp ├── covariant_returns.hpp ├── cpp_standards.hpp ├── decl_cache_file1.txt ├── decl_cache_file1_duplicate.txt ├── decl_cache_file2.txt ├── declaration_string.hpp ├── declarations_calldef.hpp ├── declarations_comparison.hpp ├── declarations_enums.hpp ├── declarations_for_filtering.hpp ├── declarations_variables.hpp ├── find_noncopyable_vars.hpp ├── free_operators.hpp ├── has_public_binary_operator_traits.hpp ├── include_all.hpp ├── include_std.hpp ├── indexing_suites2.hpp ├── inline_specifier.hpp ├── itkImage.xml ├── merge_free_functions.hpp ├── msvc_build │ ├── all.cpp │ ├── msvc_build.sln │ └── msvc_build.vcproj ├── non_copyable_classes.hpp ├── noncopyable.hpp ├── null_comparison.hpp ├── ogre.1.7.xml.bz2 ├── patcher.hpp ├── patcher_tester_64bit.xml ├── plain_c.c ├── remove_template_defaults.hpp ├── separate_compilation │ ├── all.h │ ├── base.h │ ├── data.h │ └── derived.h ├── string_traits.hpp ├── test_argument_without_name.hpp ├── test_array_argument.hpp ├── test_ccflags.hpp ├── test_comments.hpp ├── test_copy_constructor.hpp ├── test_deprecation.hpp ├── test_dynamic_exception.hpp ├── test_elaborated_types.hpp ├── test_function_pointer.hpp ├── test_map_gcc5.hpp ├── test_non_copyable_recursive.hpp ├── test_order.hpp ├── test_overrides.hpp ├── test_pattern_parser.hpp ├── test_smart_pointer.hpp ├── type_as_exception_bug.h ├── type_traits.hpp ├── typedefs1.hpp ├── typedefs2.hpp ├── typedefs_base.hpp ├── unnamed_classes.hpp ├── unnamed_enums_bug1.hpp ├── unnamed_enums_bug2.hpp ├── unnamed_ns_bug.hpp └── vector_traits.hpp ├── example_tester_wrap.py ├── test_algorithms_cache.py ├── test_argument_without_name.py ├── test_array_argument.py ├── test_array_bug.py ├── test_attributes.py ├── test_better_templates_matcher.py ├── test_bit_fields.py ├── test_cache_enums.py ├── test_cached_source_file.py ├── test_call_invocation.py ├── test_calldef_matcher.py ├── test_calling_convention.py ├── test_castxml_wrong_epic.py ├── test_ccflags.py ├── test_comments.py ├── test_complex_types.py ├── test_config.py ├── test_const_volatile_arg.py ├── test_copy_constructor.py ├── test_copy_constructor2.py ├── test_core.py ├── test_cpp_standards.py ├── test_create_decl_string.py ├── test_decl_printer.py ├── test_decl_string.py ├── test_declaration_files.py ├── test_declaration_matcher.py ├── test_declarations.py ├── test_declarations_cache.py ├── test_declarations_comparison.py ├── test_dependencies.py ├── test_deprecation.py ├── test_directory_cache.py ├── test_dynamic_exception.py ├── test_elaborated_types.py ├── test_example.py ├── test_file_cache.py ├── test_filters_tester.py ├── test_find_container_traits.py ├── test_find_noncopyable_vars.py ├── test_free_operators.py ├── test_function_pointer.py ├── test_function_traits.py ├── test_gccxml10184.py ├── test_gccxml10185.py ├── test_has_binary_operator_traits.py ├── test_hash.py ├── test_hierarchy_traveling.py ├── test_inline_specifier.py ├── test_map_gcc5.py ├── test_namespace_matcher.py ├── test_non_copyable_classes.py ├── test_non_copyable_recursive.py ├── test_null_comparison.py ├── test_order.py ├── test_overrides.py ├── test_parser_raise.py ├── test_patcher.py ├── test_pattern_parser.py ├── test_plain_c.py ├── test_project_reader_correctness.py ├── test_remove_template_defaults.py ├── test_smart_pointer.py ├── test_source_reader.py ├── test_start_with_declarations.py ├── test_string_traits.py ├── test_templates.py ├── test_text_reader.py ├── test_type_as_exception_bug.py ├── test_type_traits.py ├── test_typedefs.py ├── test_unnamed_classes.py ├── test_unnamed_enums_bug.py ├── test_utils.py ├── test_variable_matcher.py ├── test_vector_traits.py ├── test_warn_missing_include_dirs.py ├── test_xml_generators.py ├── test_xmlfile_reader.py └── xml_generator.cfg /.binder/.dockerignore: -------------------------------------------------------------------------------- 1 | README.md 2 | -------------------------------------------------------------------------------- /.binder/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/.binder/Dockerfile -------------------------------------------------------------------------------- /.binder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/.binder/README.md -------------------------------------------------------------------------------- /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/.coveragerc -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- 1 | .gitignore -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | README.rst merge=ours 2 | -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/LICENSE.rst -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/Makefile -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/NOTICE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/README.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/declarations_uml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/docs/declarations_uml.png -------------------------------------------------------------------------------- /docs/design.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/docs/design.rst -------------------------------------------------------------------------------- /docs/documentation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/docs/documentation.rst -------------------------------------------------------------------------------- /docs/examples.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/docs/examples.rst -------------------------------------------------------------------------------- /docs/examples/artificial/example.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/docs/examples/artificial/example.hpp -------------------------------------------------------------------------------- /docs/examples/artificial/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/docs/examples/artificial/example.py -------------------------------------------------------------------------------- /docs/examples/artificial/example.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/docs/examples/artificial/example.rst -------------------------------------------------------------------------------- /docs/examples/caching/example.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/docs/examples/caching/example.hpp -------------------------------------------------------------------------------- /docs/examples/caching/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/docs/examples/caching/example.py -------------------------------------------------------------------------------- /docs/examples/caching/example.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/docs/examples/caching/example.rst -------------------------------------------------------------------------------- /docs/examples/compound/example.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/docs/examples/compound/example.hpp -------------------------------------------------------------------------------- /docs/examples/compound/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/docs/examples/compound/example.py -------------------------------------------------------------------------------- /docs/examples/compound/example.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/docs/examples/compound/example.rst -------------------------------------------------------------------------------- /docs/examples/elaborated/example.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/docs/examples/elaborated/example.hpp -------------------------------------------------------------------------------- /docs/examples/elaborated/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/docs/examples/elaborated/example.py -------------------------------------------------------------------------------- /docs/examples/elaborated/example.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/docs/examples/elaborated/example.rst -------------------------------------------------------------------------------- /docs/examples/equality/example.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/docs/examples/equality/example.hpp -------------------------------------------------------------------------------- /docs/examples/equality/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/docs/examples/equality/example.py -------------------------------------------------------------------------------- /docs/examples/equality/example.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/docs/examples/equality/example.rst -------------------------------------------------------------------------------- /docs/examples/function-pointer/example.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/docs/examples/function-pointer/example.hpp -------------------------------------------------------------------------------- /docs/examples/function-pointer/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/docs/examples/function-pointer/example.py -------------------------------------------------------------------------------- /docs/examples/function-pointer/example.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/docs/examples/function-pointer/example.rst -------------------------------------------------------------------------------- /docs/examples/functions/example.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/docs/examples/functions/example.hpp -------------------------------------------------------------------------------- /docs/examples/functions/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/docs/examples/functions/example.py -------------------------------------------------------------------------------- /docs/examples/functions/example.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/docs/examples/functions/example.rst -------------------------------------------------------------------------------- /docs/examples/nested-types/example.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/docs/examples/nested-types/example.hpp -------------------------------------------------------------------------------- /docs/examples/nested-types/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/docs/examples/nested-types/example.py -------------------------------------------------------------------------------- /docs/examples/nested-types/example.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/docs/examples/nested-types/example.rst -------------------------------------------------------------------------------- /docs/examples/notebook/example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/docs/examples/notebook/example.ipynb -------------------------------------------------------------------------------- /docs/examples/parsing-string/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/docs/examples/parsing-string/example.py -------------------------------------------------------------------------------- /docs/examples/parsing-string/example.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/docs/examples/parsing-string/example.rst -------------------------------------------------------------------------------- /docs/examples/parsing/example.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/docs/examples/parsing/example.hpp -------------------------------------------------------------------------------- /docs/examples/parsing/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/docs/examples/parsing/example.py -------------------------------------------------------------------------------- /docs/examples/parsing/example.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/docs/examples/parsing/example.rst -------------------------------------------------------------------------------- /docs/examples/print-example/example.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/docs/examples/print-example/example.hpp -------------------------------------------------------------------------------- /docs/examples/print-example/example.hpp.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/docs/examples/print-example/example.hpp.rst -------------------------------------------------------------------------------- /docs/examples/print-example/example.hpp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/docs/examples/print-example/example.hpp.xml -------------------------------------------------------------------------------- /docs/examples/print-example/example.hpp.xml.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/docs/examples/print-example/example.hpp.xml.rst -------------------------------------------------------------------------------- /docs/examples/print-example/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/docs/examples/print-example/example.py -------------------------------------------------------------------------------- /docs/examples/print-example/example.py.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/docs/examples/print-example/example.py.rst -------------------------------------------------------------------------------- /docs/examples/print-example/example.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/docs/examples/print-example/example.rst -------------------------------------------------------------------------------- /docs/examples/print-example/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/docs/examples/print-example/output.txt -------------------------------------------------------------------------------- /docs/examples/print-example/output.txt.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/docs/examples/print-example/output.txt.rst -------------------------------------------------------------------------------- /docs/examples/searching/example.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/docs/examples/searching/example.hpp -------------------------------------------------------------------------------- /docs/examples/searching/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/docs/examples/searching/example.py -------------------------------------------------------------------------------- /docs/examples/searching/example.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/docs/examples/searching/example.rst -------------------------------------------------------------------------------- /docs/examples/searching1/example.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/docs/examples/searching1/example.hpp -------------------------------------------------------------------------------- /docs/examples/searching1/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/docs/examples/searching1/example.py -------------------------------------------------------------------------------- /docs/examples/searching1/example.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/docs/examples/searching1/example.rst -------------------------------------------------------------------------------- /docs/examples/templates/example.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/docs/examples/templates/example.hpp -------------------------------------------------------------------------------- /docs/examples/templates/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/docs/examples/templates/example.py -------------------------------------------------------------------------------- /docs/examples/templates/example.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/docs/examples/templates/example.rst -------------------------------------------------------------------------------- /docs/examples/variables/example.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/docs/examples/variables/example.hpp -------------------------------------------------------------------------------- /docs/examples/variables/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/docs/examples/variables/example.py -------------------------------------------------------------------------------- /docs/examples/variables/example.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/docs/examples/variables/example.rst -------------------------------------------------------------------------------- /docs/faq.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/docs/faq.rst -------------------------------------------------------------------------------- /docs/history.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/docs/history.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/install.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/docs/install.rst -------------------------------------------------------------------------------- /docs/links.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/docs/links.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/parser_uml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/docs/parser_uml.png -------------------------------------------------------------------------------- /docs/pygccxml_uml.vsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/docs/pygccxml_uml.vsd -------------------------------------------------------------------------------- /docs/query_interface.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/docs/query_interface.rst -------------------------------------------------------------------------------- /docs/releasing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/docs/releasing.rst -------------------------------------------------------------------------------- /docs/upgrade_issues.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/docs/upgrade_issues.rst -------------------------------------------------------------------------------- /docs/users.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/docs/users.rst -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/pygccxml/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/src/pygccxml/__init__.py -------------------------------------------------------------------------------- /src/pygccxml/declarations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/src/pygccxml/declarations/__init__.py -------------------------------------------------------------------------------- /src/pygccxml/declarations/algorithm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/src/pygccxml/declarations/algorithm.py -------------------------------------------------------------------------------- /src/pygccxml/declarations/algorithms_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/src/pygccxml/declarations/algorithms_cache.py -------------------------------------------------------------------------------- /src/pygccxml/declarations/byte_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/src/pygccxml/declarations/byte_info.py -------------------------------------------------------------------------------- /src/pygccxml/declarations/call_invocation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/src/pygccxml/declarations/call_invocation.py -------------------------------------------------------------------------------- /src/pygccxml/declarations/calldef.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/src/pygccxml/declarations/calldef.py -------------------------------------------------------------------------------- /src/pygccxml/declarations/calldef_members.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/src/pygccxml/declarations/calldef_members.py -------------------------------------------------------------------------------- /src/pygccxml/declarations/calldef_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/src/pygccxml/declarations/calldef_types.py -------------------------------------------------------------------------------- /src/pygccxml/declarations/class_declaration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/src/pygccxml/declarations/class_declaration.py -------------------------------------------------------------------------------- /src/pygccxml/declarations/comment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/src/pygccxml/declarations/comment.py -------------------------------------------------------------------------------- /src/pygccxml/declarations/container_traits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/src/pygccxml/declarations/container_traits.py -------------------------------------------------------------------------------- /src/pygccxml/declarations/cpptypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/src/pygccxml/declarations/cpptypes.py -------------------------------------------------------------------------------- /src/pygccxml/declarations/decl_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/src/pygccxml/declarations/decl_factory.py -------------------------------------------------------------------------------- /src/pygccxml/declarations/decl_printer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/src/pygccxml/declarations/decl_printer.py -------------------------------------------------------------------------------- /src/pygccxml/declarations/decl_visitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/src/pygccxml/declarations/decl_visitor.py -------------------------------------------------------------------------------- /src/pygccxml/declarations/declaration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/src/pygccxml/declarations/declaration.py -------------------------------------------------------------------------------- /src/pygccxml/declarations/declaration_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/src/pygccxml/declarations/declaration_utils.py -------------------------------------------------------------------------------- /src/pygccxml/declarations/declarations_matchers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/src/pygccxml/declarations/declarations_matchers.py -------------------------------------------------------------------------------- /src/pygccxml/declarations/dependencies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/src/pygccxml/declarations/dependencies.py -------------------------------------------------------------------------------- /src/pygccxml/declarations/elaborated_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/src/pygccxml/declarations/elaborated_info.py -------------------------------------------------------------------------------- /src/pygccxml/declarations/enumeration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/src/pygccxml/declarations/enumeration.py -------------------------------------------------------------------------------- /src/pygccxml/declarations/free_calldef.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/src/pygccxml/declarations/free_calldef.py -------------------------------------------------------------------------------- /src/pygccxml/declarations/function_traits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/src/pygccxml/declarations/function_traits.py -------------------------------------------------------------------------------- /src/pygccxml/declarations/has_operator_matcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/src/pygccxml/declarations/has_operator_matcher.py -------------------------------------------------------------------------------- /src/pygccxml/declarations/location.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/src/pygccxml/declarations/location.py -------------------------------------------------------------------------------- /src/pygccxml/declarations/matchers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/src/pygccxml/declarations/matchers.py -------------------------------------------------------------------------------- /src/pygccxml/declarations/mdecl_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/src/pygccxml/declarations/mdecl_wrapper.py -------------------------------------------------------------------------------- /src/pygccxml/declarations/namespace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/src/pygccxml/declarations/namespace.py -------------------------------------------------------------------------------- /src/pygccxml/declarations/pattern_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/src/pygccxml/declarations/pattern_parser.py -------------------------------------------------------------------------------- /src/pygccxml/declarations/pointer_traits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/src/pygccxml/declarations/pointer_traits.py -------------------------------------------------------------------------------- /src/pygccxml/declarations/runtime_errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/src/pygccxml/declarations/runtime_errors.py -------------------------------------------------------------------------------- /src/pygccxml/declarations/scopedef.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/src/pygccxml/declarations/scopedef.py -------------------------------------------------------------------------------- /src/pygccxml/declarations/templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/src/pygccxml/declarations/templates.py -------------------------------------------------------------------------------- /src/pygccxml/declarations/traits_impl_details.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/src/pygccxml/declarations/traits_impl_details.py -------------------------------------------------------------------------------- /src/pygccxml/declarations/type_traits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/src/pygccxml/declarations/type_traits.py -------------------------------------------------------------------------------- /src/pygccxml/declarations/type_traits_classes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/src/pygccxml/declarations/type_traits_classes.py -------------------------------------------------------------------------------- /src/pygccxml/declarations/type_visitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/src/pygccxml/declarations/type_visitor.py -------------------------------------------------------------------------------- /src/pygccxml/declarations/typedef.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/src/pygccxml/declarations/typedef.py -------------------------------------------------------------------------------- /src/pygccxml/declarations/variable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/src/pygccxml/declarations/variable.py -------------------------------------------------------------------------------- /src/pygccxml/declarations/xml_generators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/src/pygccxml/declarations/xml_generators.py -------------------------------------------------------------------------------- /src/pygccxml/parser/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/src/pygccxml/parser/__init__.py -------------------------------------------------------------------------------- /src/pygccxml/parser/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/src/pygccxml/parser/config.py -------------------------------------------------------------------------------- /src/pygccxml/parser/declarations_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/src/pygccxml/parser/declarations_cache.py -------------------------------------------------------------------------------- /src/pygccxml/parser/declarations_joiner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/src/pygccxml/parser/declarations_joiner.py -------------------------------------------------------------------------------- /src/pygccxml/parser/directory_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/src/pygccxml/parser/directory_cache.py -------------------------------------------------------------------------------- /src/pygccxml/parser/etree_scanner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/src/pygccxml/parser/etree_scanner.py -------------------------------------------------------------------------------- /src/pygccxml/parser/linker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/src/pygccxml/parser/linker.py -------------------------------------------------------------------------------- /src/pygccxml/parser/patcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/src/pygccxml/parser/patcher.py -------------------------------------------------------------------------------- /src/pygccxml/parser/project_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/src/pygccxml/parser/project_reader.py -------------------------------------------------------------------------------- /src/pygccxml/parser/scanner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/src/pygccxml/parser/scanner.py -------------------------------------------------------------------------------- /src/pygccxml/parser/source_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/src/pygccxml/parser/source_reader.py -------------------------------------------------------------------------------- /src/pygccxml/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/src/pygccxml/utils/__init__.py -------------------------------------------------------------------------------- /src/pygccxml/utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/src/pygccxml/utils/utils.py -------------------------------------------------------------------------------- /src/pygccxml/utils/xml_generators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/src/pygccxml/utils/xml_generators.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/autoconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/autoconfig.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/data/abstract_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/data/abstract_classes.hpp -------------------------------------------------------------------------------- /tests/data/attributes_castxml.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/data/attributes_castxml.hpp -------------------------------------------------------------------------------- /tests/data/attributes_gccxml.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/data/attributes_gccxml.hpp -------------------------------------------------------------------------------- /tests/data/better_templates_matcher_tester.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/data/better_templates_matcher_tester.hpp -------------------------------------------------------------------------------- /tests/data/binary_parsers/libconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/data/binary_parsers/libconfig.h -------------------------------------------------------------------------------- /tests/data/binary_parsers/mydll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/data/binary_parsers/mydll.cpp -------------------------------------------------------------------------------- /tests/data/binary_parsers/mydll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/data/binary_parsers/mydll.h -------------------------------------------------------------------------------- /tests/data/binary_parsers/sconscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/data/binary_parsers/sconscript -------------------------------------------------------------------------------- /tests/data/binary_parsers/sconstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/data/binary_parsers/sconstruct -------------------------------------------------------------------------------- /tests/data/bit_fields.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/data/bit_fields.hpp -------------------------------------------------------------------------------- /tests/data/classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/data/classes.hpp -------------------------------------------------------------------------------- /tests/data/complex_types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/data/complex_types.hpp -------------------------------------------------------------------------------- /tests/data/const_volatile_arg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/data/const_volatile_arg.hpp -------------------------------------------------------------------------------- /tests/data/core_cache.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/data/core_cache.hpp -------------------------------------------------------------------------------- /tests/data/core_class_hierarchy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/data/core_class_hierarchy.hpp -------------------------------------------------------------------------------- /tests/data/core_class_hierarchy.hpp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/data/core_class_hierarchy.hpp.xml -------------------------------------------------------------------------------- /tests/data/core_diamand_hierarchy_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/data/core_diamand_hierarchy_base.hpp -------------------------------------------------------------------------------- /tests/data/core_diamand_hierarchy_derived1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/data/core_diamand_hierarchy_derived1.hpp -------------------------------------------------------------------------------- /tests/data/core_diamand_hierarchy_derived2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/data/core_diamand_hierarchy_derived2.hpp -------------------------------------------------------------------------------- /tests/data/core_diamand_hierarchy_final_derived.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/data/core_diamand_hierarchy_final_derived.hpp -------------------------------------------------------------------------------- /tests/data/core_membership.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/data/core_membership.hpp -------------------------------------------------------------------------------- /tests/data/core_ns_join_1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/data/core_ns_join_1.hpp -------------------------------------------------------------------------------- /tests/data/core_ns_join_2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/data/core_ns_join_2.hpp -------------------------------------------------------------------------------- /tests/data/core_ns_join_3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/data/core_ns_join_3.hpp -------------------------------------------------------------------------------- /tests/data/core_overloads_1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/data/core_overloads_1.hpp -------------------------------------------------------------------------------- /tests/data/core_overloads_2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/data/core_overloads_2.hpp -------------------------------------------------------------------------------- /tests/data/core_types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/data/core_types.hpp -------------------------------------------------------------------------------- /tests/data/covariant_returns.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/data/covariant_returns.hpp -------------------------------------------------------------------------------- /tests/data/cpp_standards.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/data/cpp_standards.hpp -------------------------------------------------------------------------------- /tests/data/decl_cache_file1.txt: -------------------------------------------------------------------------------- 1 | // Line 1: Test file for declaration_cache testing 2 | -------------------------------------------------------------------------------- /tests/data/decl_cache_file1_duplicate.txt: -------------------------------------------------------------------------------- 1 | // Line 1: Test file for declaration_cache testing 2 | -------------------------------------------------------------------------------- /tests/data/decl_cache_file2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/data/decl_cache_file2.txt -------------------------------------------------------------------------------- /tests/data/declaration_string.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/data/declaration_string.hpp -------------------------------------------------------------------------------- /tests/data/declarations_calldef.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/data/declarations_calldef.hpp -------------------------------------------------------------------------------- /tests/data/declarations_comparison.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/data/declarations_comparison.hpp -------------------------------------------------------------------------------- /tests/data/declarations_enums.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/data/declarations_enums.hpp -------------------------------------------------------------------------------- /tests/data/declarations_for_filtering.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/data/declarations_for_filtering.hpp -------------------------------------------------------------------------------- /tests/data/declarations_variables.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/data/declarations_variables.hpp -------------------------------------------------------------------------------- /tests/data/find_noncopyable_vars.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/data/find_noncopyable_vars.hpp -------------------------------------------------------------------------------- /tests/data/free_operators.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/data/free_operators.hpp -------------------------------------------------------------------------------- /tests/data/has_public_binary_operator_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/data/has_public_binary_operator_traits.hpp -------------------------------------------------------------------------------- /tests/data/include_all.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/data/include_all.hpp -------------------------------------------------------------------------------- /tests/data/include_std.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/data/include_std.hpp -------------------------------------------------------------------------------- /tests/data/indexing_suites2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/data/indexing_suites2.hpp -------------------------------------------------------------------------------- /tests/data/inline_specifier.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/data/inline_specifier.hpp -------------------------------------------------------------------------------- /tests/data/itkImage.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/data/itkImage.xml -------------------------------------------------------------------------------- /tests/data/merge_free_functions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/data/merge_free_functions.hpp -------------------------------------------------------------------------------- /tests/data/msvc_build/all.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/data/msvc_build/all.cpp -------------------------------------------------------------------------------- /tests/data/msvc_build/msvc_build.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/data/msvc_build/msvc_build.sln -------------------------------------------------------------------------------- /tests/data/msvc_build/msvc_build.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/data/msvc_build/msvc_build.vcproj -------------------------------------------------------------------------------- /tests/data/non_copyable_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/data/non_copyable_classes.hpp -------------------------------------------------------------------------------- /tests/data/noncopyable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/data/noncopyable.hpp -------------------------------------------------------------------------------- /tests/data/null_comparison.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/data/null_comparison.hpp -------------------------------------------------------------------------------- /tests/data/ogre.1.7.xml.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/data/ogre.1.7.xml.bz2 -------------------------------------------------------------------------------- /tests/data/patcher.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/data/patcher.hpp -------------------------------------------------------------------------------- /tests/data/patcher_tester_64bit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/data/patcher_tester_64bit.xml -------------------------------------------------------------------------------- /tests/data/plain_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/data/plain_c.c -------------------------------------------------------------------------------- /tests/data/remove_template_defaults.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/data/remove_template_defaults.hpp -------------------------------------------------------------------------------- /tests/data/separate_compilation/all.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/data/separate_compilation/all.h -------------------------------------------------------------------------------- /tests/data/separate_compilation/base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/data/separate_compilation/base.h -------------------------------------------------------------------------------- /tests/data/separate_compilation/data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/data/separate_compilation/data.h -------------------------------------------------------------------------------- /tests/data/separate_compilation/derived.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/data/separate_compilation/derived.h -------------------------------------------------------------------------------- /tests/data/string_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/data/string_traits.hpp -------------------------------------------------------------------------------- /tests/data/test_argument_without_name.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/data/test_argument_without_name.hpp -------------------------------------------------------------------------------- /tests/data/test_array_argument.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/data/test_array_argument.hpp -------------------------------------------------------------------------------- /tests/data/test_ccflags.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/data/test_ccflags.hpp -------------------------------------------------------------------------------- /tests/data/test_comments.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/data/test_comments.hpp -------------------------------------------------------------------------------- /tests/data/test_copy_constructor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/data/test_copy_constructor.hpp -------------------------------------------------------------------------------- /tests/data/test_deprecation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/data/test_deprecation.hpp -------------------------------------------------------------------------------- /tests/data/test_dynamic_exception.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/data/test_dynamic_exception.hpp -------------------------------------------------------------------------------- /tests/data/test_elaborated_types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/data/test_elaborated_types.hpp -------------------------------------------------------------------------------- /tests/data/test_function_pointer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/data/test_function_pointer.hpp -------------------------------------------------------------------------------- /tests/data/test_map_gcc5.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/data/test_map_gcc5.hpp -------------------------------------------------------------------------------- /tests/data/test_non_copyable_recursive.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/data/test_non_copyable_recursive.hpp -------------------------------------------------------------------------------- /tests/data/test_order.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/data/test_order.hpp -------------------------------------------------------------------------------- /tests/data/test_overrides.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/data/test_overrides.hpp -------------------------------------------------------------------------------- /tests/data/test_pattern_parser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/data/test_pattern_parser.hpp -------------------------------------------------------------------------------- /tests/data/test_smart_pointer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/data/test_smart_pointer.hpp -------------------------------------------------------------------------------- /tests/data/type_as_exception_bug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/data/type_as_exception_bug.h -------------------------------------------------------------------------------- /tests/data/type_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/data/type_traits.hpp -------------------------------------------------------------------------------- /tests/data/typedefs1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/data/typedefs1.hpp -------------------------------------------------------------------------------- /tests/data/typedefs2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/data/typedefs2.hpp -------------------------------------------------------------------------------- /tests/data/typedefs_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/data/typedefs_base.hpp -------------------------------------------------------------------------------- /tests/data/unnamed_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/data/unnamed_classes.hpp -------------------------------------------------------------------------------- /tests/data/unnamed_enums_bug1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/data/unnamed_enums_bug1.hpp -------------------------------------------------------------------------------- /tests/data/unnamed_enums_bug2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/data/unnamed_enums_bug2.hpp -------------------------------------------------------------------------------- /tests/data/unnamed_ns_bug.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/data/unnamed_ns_bug.hpp -------------------------------------------------------------------------------- /tests/data/vector_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/data/vector_traits.hpp -------------------------------------------------------------------------------- /tests/example_tester_wrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/example_tester_wrap.py -------------------------------------------------------------------------------- /tests/test_algorithms_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/test_algorithms_cache.py -------------------------------------------------------------------------------- /tests/test_argument_without_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/test_argument_without_name.py -------------------------------------------------------------------------------- /tests/test_array_argument.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/test_array_argument.py -------------------------------------------------------------------------------- /tests/test_array_bug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/test_array_bug.py -------------------------------------------------------------------------------- /tests/test_attributes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/test_attributes.py -------------------------------------------------------------------------------- /tests/test_better_templates_matcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/test_better_templates_matcher.py -------------------------------------------------------------------------------- /tests/test_bit_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/test_bit_fields.py -------------------------------------------------------------------------------- /tests/test_cache_enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/test_cache_enums.py -------------------------------------------------------------------------------- /tests/test_cached_source_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/test_cached_source_file.py -------------------------------------------------------------------------------- /tests/test_call_invocation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/test_call_invocation.py -------------------------------------------------------------------------------- /tests/test_calldef_matcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/test_calldef_matcher.py -------------------------------------------------------------------------------- /tests/test_calling_convention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/test_calling_convention.py -------------------------------------------------------------------------------- /tests/test_castxml_wrong_epic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/test_castxml_wrong_epic.py -------------------------------------------------------------------------------- /tests/test_ccflags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/test_ccflags.py -------------------------------------------------------------------------------- /tests/test_comments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/test_comments.py -------------------------------------------------------------------------------- /tests/test_complex_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/test_complex_types.py -------------------------------------------------------------------------------- /tests/test_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/test_config.py -------------------------------------------------------------------------------- /tests/test_const_volatile_arg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/test_const_volatile_arg.py -------------------------------------------------------------------------------- /tests/test_copy_constructor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/test_copy_constructor.py -------------------------------------------------------------------------------- /tests/test_copy_constructor2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/test_copy_constructor2.py -------------------------------------------------------------------------------- /tests/test_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/test_core.py -------------------------------------------------------------------------------- /tests/test_cpp_standards.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/test_cpp_standards.py -------------------------------------------------------------------------------- /tests/test_create_decl_string.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/test_create_decl_string.py -------------------------------------------------------------------------------- /tests/test_decl_printer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/test_decl_printer.py -------------------------------------------------------------------------------- /tests/test_decl_string.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/test_decl_string.py -------------------------------------------------------------------------------- /tests/test_declaration_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/test_declaration_files.py -------------------------------------------------------------------------------- /tests/test_declaration_matcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/test_declaration_matcher.py -------------------------------------------------------------------------------- /tests/test_declarations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/test_declarations.py -------------------------------------------------------------------------------- /tests/test_declarations_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/test_declarations_cache.py -------------------------------------------------------------------------------- /tests/test_declarations_comparison.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/test_declarations_comparison.py -------------------------------------------------------------------------------- /tests/test_dependencies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/test_dependencies.py -------------------------------------------------------------------------------- /tests/test_deprecation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/test_deprecation.py -------------------------------------------------------------------------------- /tests/test_directory_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/test_directory_cache.py -------------------------------------------------------------------------------- /tests/test_dynamic_exception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/test_dynamic_exception.py -------------------------------------------------------------------------------- /tests/test_elaborated_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/test_elaborated_types.py -------------------------------------------------------------------------------- /tests/test_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/test_example.py -------------------------------------------------------------------------------- /tests/test_file_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/test_file_cache.py -------------------------------------------------------------------------------- /tests/test_filters_tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/test_filters_tester.py -------------------------------------------------------------------------------- /tests/test_find_container_traits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/test_find_container_traits.py -------------------------------------------------------------------------------- /tests/test_find_noncopyable_vars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/test_find_noncopyable_vars.py -------------------------------------------------------------------------------- /tests/test_free_operators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/test_free_operators.py -------------------------------------------------------------------------------- /tests/test_function_pointer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/test_function_pointer.py -------------------------------------------------------------------------------- /tests/test_function_traits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/test_function_traits.py -------------------------------------------------------------------------------- /tests/test_gccxml10184.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/test_gccxml10184.py -------------------------------------------------------------------------------- /tests/test_gccxml10185.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/test_gccxml10185.py -------------------------------------------------------------------------------- /tests/test_has_binary_operator_traits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/test_has_binary_operator_traits.py -------------------------------------------------------------------------------- /tests/test_hash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/test_hash.py -------------------------------------------------------------------------------- /tests/test_hierarchy_traveling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/test_hierarchy_traveling.py -------------------------------------------------------------------------------- /tests/test_inline_specifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/test_inline_specifier.py -------------------------------------------------------------------------------- /tests/test_map_gcc5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/test_map_gcc5.py -------------------------------------------------------------------------------- /tests/test_namespace_matcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/test_namespace_matcher.py -------------------------------------------------------------------------------- /tests/test_non_copyable_classes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/test_non_copyable_classes.py -------------------------------------------------------------------------------- /tests/test_non_copyable_recursive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/test_non_copyable_recursive.py -------------------------------------------------------------------------------- /tests/test_null_comparison.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/test_null_comparison.py -------------------------------------------------------------------------------- /tests/test_order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/test_order.py -------------------------------------------------------------------------------- /tests/test_overrides.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/test_overrides.py -------------------------------------------------------------------------------- /tests/test_parser_raise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/test_parser_raise.py -------------------------------------------------------------------------------- /tests/test_patcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/test_patcher.py -------------------------------------------------------------------------------- /tests/test_pattern_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/test_pattern_parser.py -------------------------------------------------------------------------------- /tests/test_plain_c.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/test_plain_c.py -------------------------------------------------------------------------------- /tests/test_project_reader_correctness.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/test_project_reader_correctness.py -------------------------------------------------------------------------------- /tests/test_remove_template_defaults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/test_remove_template_defaults.py -------------------------------------------------------------------------------- /tests/test_smart_pointer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/test_smart_pointer.py -------------------------------------------------------------------------------- /tests/test_source_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/test_source_reader.py -------------------------------------------------------------------------------- /tests/test_start_with_declarations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/test_start_with_declarations.py -------------------------------------------------------------------------------- /tests/test_string_traits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/test_string_traits.py -------------------------------------------------------------------------------- /tests/test_templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/test_templates.py -------------------------------------------------------------------------------- /tests/test_text_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/test_text_reader.py -------------------------------------------------------------------------------- /tests/test_type_as_exception_bug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/test_type_as_exception_bug.py -------------------------------------------------------------------------------- /tests/test_type_traits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/test_type_traits.py -------------------------------------------------------------------------------- /tests/test_typedefs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/test_typedefs.py -------------------------------------------------------------------------------- /tests/test_unnamed_classes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/test_unnamed_classes.py -------------------------------------------------------------------------------- /tests/test_unnamed_enums_bug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/test_unnamed_enums_bug.py -------------------------------------------------------------------------------- /tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/test_utils.py -------------------------------------------------------------------------------- /tests/test_variable_matcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/test_variable_matcher.py -------------------------------------------------------------------------------- /tests/test_vector_traits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/test_vector_traits.py -------------------------------------------------------------------------------- /tests/test_warn_missing_include_dirs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/test_warn_missing_include_dirs.py -------------------------------------------------------------------------------- /tests/test_xml_generators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/test_xml_generators.py -------------------------------------------------------------------------------- /tests/test_xmlfile_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/test_xmlfile_reader.py -------------------------------------------------------------------------------- /tests/xml_generator.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/pygccxml/HEAD/tests/xml_generator.cfg --------------------------------------------------------------------------------