├── .gitignore ├── .gitlab-ci.yml ├── Ast.cpp ├── Ast.h ├── AstParsers.cxx ├── AstRef.h ├── AuxDB.cpp ├── AuxDB.h ├── BinaryAddressMap.cpp ├── BinaryAddressMap.h ├── Bindings.cpp ├── Bindings.h ├── COPYING ├── Cfg.cpp ├── Cfg.h ├── CompilationDataMap.h ├── Dockerfile.arch ├── Dockerfile.ubuntu ├── EditBuffer.cpp ├── EditBuffer.h ├── FAF.h ├── FieldDefs.cxx ├── Function.cpp ├── Function.h ├── Hash.h ├── Interactive.cpp ├── Interactive.h ├── Json.cpp ├── Json.h ├── LICENSE ├── LLVMInstructionMap.cpp ├── LLVMInstructionMap.h ├── Macros.cpp ├── Macros.h ├── Makefile ├── NOTES ├── OpParsers.cxx ├── Optional.h ├── PKGBUILD ├── Parser.h ├── Parser ├── Combinators.cxx ├── Combinators.h ├── Context.h └── Utils.h ├── PointedTree.h ├── README.md ├── Renaming.cpp ├── Renaming.h ├── Requirements.cpp ├── Requirements.h ├── Reversed.h ├── Rewrite.cpp ├── Rewrite.h ├── Scopes.cpp ├── Scopes.h ├── SyntacticContext.cpp ├── SyntacticContext.cxx ├── SyntacticContext.h ├── TU.cpp ├── TU.h ├── TypeDBEntry.cpp ├── TypeDBEntry.h ├── Utils.cpp ├── Utils.h ├── Variable.cpp ├── Variable.h ├── clang-mutate.cpp ├── clang-mutate.dot ├── clang-mutate.h ├── etc ├── .gitignore ├── alloca_macro.c ├── alloca_macro.h ├── array-initializer.c ├── array_list.c ├── array_list.h ├── array_of_pointers.c ├── arrow-operator.cpp ├── aux.c ├── child-of-non-visited-stmt-has-parent.c ├── class.cpp ├── const_var.c ├── decls.c ├── do-loop-non-compound-body.c ├── enum.c ├── for-loop-non-compound-body.c ├── function-in-sys-header.c ├── function-in-sys-header.h ├── function-in-user-header.c ├── function-in-user-header.h ├── function-with-attribute-macro.c ├── function_pointer.c ├── function_pointer_no_proto.c ├── gcc-asm.c ├── gcd-wo-curlies.c ├── global-vars-syn-ctx.c ├── global_var.c ├── hello.c ├── if-non-compound-body.c ├── if.c ├── int64_t.c ├── lighttpd_sample.c ├── list.c ├── loop.c ├── macro_with_compound_stmt_body.c ├── macro_with_multivar_decl.c ├── macro_with_var_decl.c ├── macros.c ├── macros2.c ├── minimal-ewmh.c ├── minimal_xcb_ewmh.h ├── more-loops.c ├── multidimensional_array.c ├── muse_list.c ├── muse_list.h ├── nested_macro.c ├── nested_macro.h ├── null.c ├── open.c ├── pointer_to_array.c ├── pointers-to-pointers.c ├── pound-define-func.c ├── pound-define-struct.c ├── recursive-type.c ├── restrict_var.c ├── scopes.c ├── sqrt.c ├── storage_classes.c ├── struct-in-sys-header.c ├── switch.c ├── ternary_initialization.c ├── typedef-type-hash.c ├── types-order-is-correct.c ├── types.c ├── volatile_var.c └── while-loop-non-compound-body.c ├── man ├── .gitignore ├── Makefile ├── clang-mutate.template.md └── design.md ├── ref_ptr.hpp ├── test ├── alloca-macro ├── array-initializer-has-correct-children ├── array-of-pointers-has-type ├── aux-excludes-expected-entries ├── aux-includes-expected-entries ├── child-of-non-visited-stmt-has-parent ├── common ├── const-var ├── cxx-method-body-is-full-stmt ├── cxx-method-has-body ├── decls-are-found ├── do-loop-body-is-full-statement ├── find-char-star-type ├── for-loop-body-is-full-statement ├── full-stmt-in-switch ├── function-bodies-have-children ├── function-body-top-level-syntax ├── function-in-sys-header ├── function-in-user-header ├── function-pointer ├── function-pointer-no-proto ├── function-with-attribute-not-in-macro ├── global-var-has-type ├── global-vars-syn-ctx ├── hello-finds-stdio ├── hello-json-bin-default-fields ├── hello-json-bin-number-of-stmts-w-binary-data ├── hello-json-default-fields ├── hello-json-entries-in-counter-order ├── hello-json-list-size ├── hello-json-list-size-with-stmt1-filter ├── hello-json-llvm-ir-default-fields ├── hello-json-llvm-ir-number-of-stmts-w-llvm-ir ├── hello-json-specify-fields ├── hello-no-semi-colon-on-end-of-statement-json ├── hello-second-stmt-says-hello-json ├── hello-semi-colon-on-end-of-set ├── hello-semi-colon-on-end-of-set2 ├── hello-semi-colon-on-end-of-statement-cut ├── hello-semi-colon-on-end-of-statement-insert ├── hello-semi-colon-on-end-of-statement-json ├── hello-semi-colon-on-end-of-statement-swap ├── hello-semi-colon-on-end-of-value-insert ├── hello-set2-w-values ├── help-text-appears ├── if-body-is-full-statement ├── ignore-null-stmt-at-end-of-macro ├── int64_t-finds-header ├── lighttpd-bug-does-not-crash ├── list-init-expr-not-full-stmt ├── long-macro-is-found ├── macro-src-text-is-correct ├── macro-with-multivar-decl ├── macro-with-var-decl ├── multidimensional-array-has-type ├── nested-macro ├── no-aux-gives-all-entries ├── null-finds-stddef ├── null-has-no-macros ├── open-stat-header-found ├── operator-call-expr-ranges ├── parmvar-has-declares ├── pointer-to-array-has-type ├── pointer-to-pointer-no-decl ├── pound-define-func-test ├── pound-define-struct-test ├── recursive-type-does-not-crash ├── replace-in-macro-expansion ├── replace-then-branch-keeps-curlies ├── replace-then-branch-keeps-semicolon ├── replace-var-in-macro ├── restrict-var ├── scopes-block-starts-scope ├── scopes-function-args-are-local ├── scopes-function-body-starts-scope ├── segmentation-fault ├── short-macro-is-found ├── sqrt-math-header-found ├── storage-classes ├── struct-in-sys-header ├── type-function-arg-hash ├── type-function-body-hash ├── type-function-ret-hash ├── type-has-name-hash ├── type-sizes-are-correct ├── typedef-type-hash-test ├── types-order-correct ├── volatile-var ├── while-loop-body-is-full-statement ├── wrap-do-body-in-curlies └── wrap-then-branch-in-curlies ├── third-party ├── elfio-3.2 │ ├── AUTHORS │ ├── COPYING │ ├── ChangeLog │ ├── INSTALL │ ├── Makefile.am │ ├── Makefile.in │ ├── NEWS │ ├── README │ ├── aclocal.m4 │ ├── configure │ ├── configure.ac │ ├── depcomp │ ├── doc │ │ └── elfio.pdf │ ├── elfio │ │ ├── elf_types.hpp │ │ ├── elfio.hpp │ │ ├── elfio_dump.hpp │ │ ├── elfio_dynamic.hpp │ │ ├── elfio_header.hpp │ │ ├── elfio_note.hpp │ │ ├── elfio_relocation.hpp │ │ ├── elfio_section.hpp │ │ ├── elfio_segment.hpp │ │ ├── elfio_strings.hpp │ │ ├── elfio_symbols.hpp │ │ └── elfio_utils.hpp │ ├── examples │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── elfdump │ │ │ ├── ELFDump.vcxproj │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ └── elfdump.cpp │ │ ├── tutorial │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ └── tutorial.cpp │ │ ├── write_obj │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ └── write_obj.cpp │ │ └── writer │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ └── writer.cpp │ ├── install-sh │ └── missing ├── jansson │ ├── .gitignore │ ├── .travis.yml │ ├── Android.mk │ ├── CHANGES │ ├── CMakeLists.txt │ ├── CleanSpec.mk │ ├── LICENSE │ ├── Makefile.am │ ├── README.rst │ ├── android │ │ └── jansson_config.h │ ├── appveyor.yml │ ├── cmake │ │ ├── CheckFunctionKeywords.cmake │ │ ├── FindSphinx.cmake │ │ ├── JanssonConfig.cmake.in │ │ ├── JanssonConfigVersion.cmake.in │ │ ├── jansson_config.h.cmake │ │ └── jansson_private_config.h.cmake │ ├── configure.ac │ ├── doc │ │ ├── .gitignore │ │ ├── Makefile.am │ │ ├── README │ │ ├── apiref.rst │ │ ├── changes.rst │ │ ├── conf.py │ │ ├── conformance.rst │ │ ├── ext │ │ │ └── refcounting.py │ │ ├── gettingstarted.rst │ │ ├── github_commits.c │ │ ├── index.rst │ │ ├── portability.rst │ │ ├── tutorial.rst │ │ └── upgrading.rst │ ├── jansson.pc.in │ ├── release.sh │ ├── src │ │ ├── Makefile.am │ │ ├── dump.c │ │ ├── error.c │ │ ├── hashtable.c │ │ ├── hashtable.h │ │ ├── hashtable_seed.c │ │ ├── jansson.def │ │ ├── jansson.h │ │ ├── jansson_config.h.in │ │ ├── jansson_private.h │ │ ├── load.c │ │ ├── lookup3.h │ │ ├── memory.c │ │ ├── pack_unpack.c │ │ ├── strbuffer.c │ │ ├── strbuffer.h │ │ ├── strconv.c │ │ ├── utf.c │ │ ├── utf.h │ │ └── value.c │ └── test │ │ ├── .gitignore │ │ ├── Makefile.am │ │ ├── bin │ │ ├── Makefile.am │ │ └── json_process.c │ │ ├── run-suites │ │ ├── scripts │ │ ├── run-tests.sh │ │ └── valgrind.sh │ │ └── suites │ │ ├── .gitattributes │ │ ├── Makefile.am │ │ ├── api │ │ ├── Makefile.am │ │ ├── check-exports │ │ ├── run │ │ ├── test_array.c │ │ ├── test_copy.c │ │ ├── test_dump.c │ │ ├── test_dump_callback.c │ │ ├── test_equal.c │ │ ├── test_load.c │ │ ├── test_load_callback.c │ │ ├── test_loadb.c │ │ ├── test_memory_funcs.c │ │ ├── test_number.c │ │ ├── test_object.c │ │ ├── test_pack.c │ │ ├── test_simple.c │ │ ├── test_unpack.c │ │ └── util.h │ │ ├── encoding-flags │ │ ├── array │ │ │ ├── input │ │ │ └── output │ │ ├── compact-array │ │ │ ├── env │ │ │ ├── input │ │ │ └── output │ │ ├── compact-object │ │ │ ├── env │ │ │ ├── input │ │ │ └── output │ │ ├── ensure-ascii │ │ │ ├── env │ │ │ ├── input │ │ │ └── output │ │ ├── indent-array │ │ │ ├── env │ │ │ ├── input │ │ │ └── output │ │ ├── indent-compact-array │ │ │ ├── env │ │ │ ├── input │ │ │ └── output │ │ ├── indent-compact-object │ │ │ ├── env │ │ │ ├── input │ │ │ └── output │ │ ├── indent-object │ │ │ ├── env │ │ │ ├── input │ │ │ └── output │ │ ├── object │ │ │ ├── env │ │ │ ├── input │ │ │ └── output │ │ ├── preserve-order │ │ │ ├── env │ │ │ ├── input │ │ │ └── output │ │ ├── real-precision │ │ │ ├── env │ │ │ ├── input │ │ │ └── output │ │ ├── run │ │ └── sort-keys │ │ │ ├── env │ │ │ ├── input │ │ │ └── output │ │ ├── invalid-unicode │ │ ├── encoded-surrogate-half │ │ │ ├── error │ │ │ └── input │ │ ├── invalid-utf-8-after-backslash │ │ │ ├── error │ │ │ └── input │ │ ├── invalid-utf-8-in-array │ │ │ ├── error │ │ │ └── input │ │ ├── invalid-utf-8-in-bigger-int │ │ │ ├── error │ │ │ └── input │ │ ├── invalid-utf-8-in-escape │ │ │ ├── error │ │ │ └── input │ │ ├── invalid-utf-8-in-exponent │ │ │ ├── error │ │ │ └── input │ │ ├── invalid-utf-8-in-identifier │ │ │ ├── error │ │ │ └── input │ │ ├── invalid-utf-8-in-int │ │ │ ├── error │ │ │ └── input │ │ ├── invalid-utf-8-in-real-after-e │ │ │ ├── error │ │ │ └── input │ │ ├── invalid-utf-8-in-string │ │ │ ├── error │ │ │ └── input │ │ ├── lone-invalid-utf-8 │ │ │ ├── error │ │ │ └── input │ │ ├── lone-utf-8-continuation-byte │ │ │ ├── error │ │ │ └── input │ │ ├── not-in-unicode-range │ │ │ ├── error │ │ │ └── input │ │ ├── overlong-3-byte-encoding │ │ │ ├── error │ │ │ └── input │ │ ├── overlong-4-byte-encoding │ │ │ ├── error │ │ │ └── input │ │ ├── overlong-ascii-encoding │ │ │ ├── error │ │ │ └── input │ │ ├── restricted-utf-8 │ │ │ ├── error │ │ │ └── input │ │ ├── run │ │ └── truncated-utf-8 │ │ │ ├── error │ │ │ └── input │ │ ├── invalid │ │ ├── apostrophe │ │ │ ├── error │ │ │ └── input │ │ ├── ascii-unicode-identifier │ │ │ ├── error │ │ │ └── input │ │ ├── brace-comma │ │ │ ├── error │ │ │ └── input │ │ ├── bracket-comma │ │ │ ├── error │ │ │ └── input │ │ ├── bracket-one-comma │ │ │ ├── error.normal │ │ │ ├── error.strip │ │ │ └── input │ │ ├── empty │ │ │ ├── error │ │ │ └── input │ │ ├── extra-comma-in-array │ │ │ ├── error │ │ │ └── input │ │ ├── extra-comma-in-multiline-array │ │ │ ├── error │ │ │ └── input │ │ ├── garbage-after-newline │ │ │ ├── error │ │ │ └── input │ │ ├── garbage-at-the-end │ │ │ ├── error │ │ │ └── input │ │ ├── integer-starting-with-zero │ │ │ ├── error │ │ │ └── input │ │ ├── invalid-escape │ │ │ ├── error │ │ │ └── input │ │ ├── invalid-identifier │ │ │ ├── error │ │ │ └── input │ │ ├── invalid-negative-integer │ │ │ ├── error │ │ │ └── input │ │ ├── invalid-negative-real │ │ │ ├── error │ │ │ └── input │ │ ├── invalid-second-surrogate │ │ │ ├── error │ │ │ └── input │ │ ├── lone-open-brace │ │ │ ├── error.normal │ │ │ ├── error.strip │ │ │ └── input │ │ ├── lone-open-bracket │ │ │ ├── error.normal │ │ │ ├── error.strip │ │ │ └── input │ │ ├── lone-second-surrogate │ │ │ ├── error │ │ │ └── input │ │ ├── minus-sign-without-number │ │ │ ├── error │ │ │ └── input │ │ ├── negative-integer-starting-with-zero │ │ │ ├── error │ │ │ └── input │ │ ├── null-byte-in-object-key │ │ │ ├── error │ │ │ └── input │ │ ├── null-byte-in-string │ │ │ ├── error │ │ │ ├── input │ │ │ └── nostrip │ │ ├── null-byte-outside-string │ │ │ ├── error │ │ │ ├── input │ │ │ └── nostrip │ │ ├── null │ │ │ ├── error │ │ │ └── input │ │ ├── object-apostrophes │ │ │ ├── error │ │ │ └── input │ │ ├── object-garbage-at-end │ │ │ ├── error │ │ │ └── input │ │ ├── object-in-unterminated-array │ │ │ ├── error.normal │ │ │ ├── error.strip │ │ │ └── input │ │ ├── object-no-colon │ │ │ ├── error.normal │ │ │ ├── error.strip │ │ │ └── input │ │ ├── object-no-value │ │ │ ├── error.normal │ │ │ ├── error.strip │ │ │ └── input │ │ ├── object-unterminated-value │ │ │ ├── error.normal │ │ │ ├── error.strip │ │ │ └── input │ │ ├── real-garbage-after-e │ │ │ ├── error │ │ │ └── input │ │ ├── real-negative-overflow │ │ │ ├── error │ │ │ └── input │ │ ├── real-positive-overflow │ │ │ ├── error │ │ │ └── input │ │ ├── real-truncated-at-e │ │ │ ├── error │ │ │ └── input │ │ ├── real-truncated-at-point │ │ │ ├── error │ │ │ └── input │ │ ├── run │ │ ├── tab-character-in-string │ │ │ ├── error │ │ │ └── input │ │ ├── too-big-negative-integer │ │ │ ├── error │ │ │ └── input │ │ ├── too-big-positive-integer │ │ │ ├── error │ │ │ └── input │ │ ├── truncated-unicode-surrogate │ │ │ ├── error │ │ │ └── input │ │ ├── unicode-identifier │ │ │ ├── error │ │ │ └── input │ │ ├── unterminated-array-and-object │ │ │ ├── error.normal │ │ │ ├── error.strip │ │ │ └── input │ │ ├── unterminated-array │ │ │ ├── error.normal │ │ │ ├── error.strip │ │ │ └── input │ │ ├── unterminated-empty-key │ │ │ ├── error.normal │ │ │ ├── error.strip │ │ │ └── input │ │ ├── unterminated-key │ │ │ ├── error.normal │ │ │ ├── error.strip │ │ │ └── input │ │ ├── unterminated-object-and-array │ │ │ ├── error │ │ │ └── input │ │ └── unterminated-string │ │ │ ├── error.normal │ │ │ ├── error.strip │ │ │ └── input │ │ └── valid │ │ ├── complex-array │ │ ├── env │ │ ├── input │ │ └── output │ │ ├── empty-array │ │ ├── input │ │ └── output │ │ ├── empty-object-in-array │ │ ├── input │ │ └── output │ │ ├── empty-object │ │ ├── input │ │ └── output │ │ ├── empty-string │ │ ├── input │ │ └── output │ │ ├── escaped-utf-control-char │ │ ├── input │ │ └── output │ │ ├── false │ │ ├── input │ │ └── output │ │ ├── negative-int │ │ ├── input │ │ └── output │ │ ├── negative-one │ │ ├── input │ │ └── output │ │ ├── negative-zero │ │ ├── input │ │ └── output │ │ ├── null │ │ ├── input │ │ └── output │ │ ├── one-byte-utf-8 │ │ ├── input │ │ └── output │ │ ├── real-capital-e-negative-exponent │ │ ├── input │ │ └── output │ │ ├── real-capital-e-positive-exponent │ │ ├── input │ │ └── output │ │ ├── real-capital-e │ │ ├── input │ │ └── output │ │ ├── real-exponent │ │ ├── input │ │ └── output │ │ ├── real-fraction-exponent │ │ ├── input │ │ └── output │ │ ├── real-negative-exponent │ │ ├── input │ │ └── output │ │ ├── real-positive-exponent │ │ ├── input │ │ └── output │ │ ├── real-subnormal-number │ │ ├── input │ │ └── output │ │ ├── real-underflow │ │ ├── input │ │ └── output │ │ ├── run │ │ ├── short-string │ │ ├── input │ │ └── output │ │ ├── simple-ascii-string │ │ ├── input │ │ └── output │ │ ├── simple-int-0 │ │ ├── input │ │ └── output │ │ ├── simple-int-1 │ │ ├── input │ │ └── output │ │ ├── simple-int-123 │ │ ├── input │ │ └── output │ │ ├── simple-object │ │ ├── input │ │ └── output │ │ ├── simple-real │ │ ├── input │ │ └── output │ │ ├── string-escapes │ │ ├── input │ │ └── output │ │ ├── three-byte-utf-8 │ │ ├── input │ │ └── output │ │ ├── true │ │ ├── input │ │ └── output │ │ ├── two-byte-utf-8 │ │ ├── input │ │ └── output │ │ ├── utf-8-string │ │ ├── input │ │ └── output │ │ └── utf-surrogate-four-byte-encoding │ │ ├── input │ │ └── output ├── jshon │ ├── .gitignore │ ├── LICENSE │ ├── Makefile │ ├── PKGBUILD │ ├── jshon.1 │ ├── jshon.c │ └── jshon.spec └── picojson-1.3.0 │ ├── .gitignore │ ├── .gitmodules │ ├── .travis.yml │ ├── Changes │ ├── LICENSE │ ├── Makefile │ ├── README.mkdn │ ├── examples │ ├── github-issues.cc │ ├── iostream.cc │ └── streaming.cc │ ├── picojson.h │ ├── picotest │ ├── picotest.c │ └── picotest.h │ └── test.cc └── tools ├── perforate-loops └── strings-to /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /Ast.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/Ast.cpp -------------------------------------------------------------------------------- /Ast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/Ast.h -------------------------------------------------------------------------------- /AstParsers.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/AstParsers.cxx -------------------------------------------------------------------------------- /AstRef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/AstRef.h -------------------------------------------------------------------------------- /AuxDB.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/AuxDB.cpp -------------------------------------------------------------------------------- /AuxDB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/AuxDB.h -------------------------------------------------------------------------------- /BinaryAddressMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/BinaryAddressMap.cpp -------------------------------------------------------------------------------- /BinaryAddressMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/BinaryAddressMap.h -------------------------------------------------------------------------------- /Bindings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/Bindings.cpp -------------------------------------------------------------------------------- /Bindings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/Bindings.h -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/COPYING -------------------------------------------------------------------------------- /Cfg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/Cfg.cpp -------------------------------------------------------------------------------- /Cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/Cfg.h -------------------------------------------------------------------------------- /CompilationDataMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/CompilationDataMap.h -------------------------------------------------------------------------------- /Dockerfile.arch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/Dockerfile.arch -------------------------------------------------------------------------------- /Dockerfile.ubuntu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/Dockerfile.ubuntu -------------------------------------------------------------------------------- /EditBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/EditBuffer.cpp -------------------------------------------------------------------------------- /EditBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/EditBuffer.h -------------------------------------------------------------------------------- /FAF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/FAF.h -------------------------------------------------------------------------------- /FieldDefs.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/FieldDefs.cxx -------------------------------------------------------------------------------- /Function.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/Function.cpp -------------------------------------------------------------------------------- /Function.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/Function.h -------------------------------------------------------------------------------- /Hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/Hash.h -------------------------------------------------------------------------------- /Interactive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/Interactive.cpp -------------------------------------------------------------------------------- /Interactive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/Interactive.h -------------------------------------------------------------------------------- /Json.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/Json.cpp -------------------------------------------------------------------------------- /Json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/Json.h -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/LICENSE -------------------------------------------------------------------------------- /LLVMInstructionMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/LLVMInstructionMap.cpp -------------------------------------------------------------------------------- /LLVMInstructionMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/LLVMInstructionMap.h -------------------------------------------------------------------------------- /Macros.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/Macros.cpp -------------------------------------------------------------------------------- /Macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/Macros.h -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/Makefile -------------------------------------------------------------------------------- /NOTES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/NOTES -------------------------------------------------------------------------------- /OpParsers.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/OpParsers.cxx -------------------------------------------------------------------------------- /Optional.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/Optional.h -------------------------------------------------------------------------------- /PKGBUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/PKGBUILD -------------------------------------------------------------------------------- /Parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/Parser.h -------------------------------------------------------------------------------- /Parser/Combinators.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/Parser/Combinators.cxx -------------------------------------------------------------------------------- /Parser/Combinators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/Parser/Combinators.h -------------------------------------------------------------------------------- /Parser/Context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/Parser/Context.h -------------------------------------------------------------------------------- /Parser/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/Parser/Utils.h -------------------------------------------------------------------------------- /PointedTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/PointedTree.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/README.md -------------------------------------------------------------------------------- /Renaming.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/Renaming.cpp -------------------------------------------------------------------------------- /Renaming.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/Renaming.h -------------------------------------------------------------------------------- /Requirements.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/Requirements.cpp -------------------------------------------------------------------------------- /Requirements.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/Requirements.h -------------------------------------------------------------------------------- /Reversed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/Reversed.h -------------------------------------------------------------------------------- /Rewrite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/Rewrite.cpp -------------------------------------------------------------------------------- /Rewrite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/Rewrite.h -------------------------------------------------------------------------------- /Scopes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/Scopes.cpp -------------------------------------------------------------------------------- /Scopes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/Scopes.h -------------------------------------------------------------------------------- /SyntacticContext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/SyntacticContext.cpp -------------------------------------------------------------------------------- /SyntacticContext.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/SyntacticContext.cxx -------------------------------------------------------------------------------- /SyntacticContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/SyntacticContext.h -------------------------------------------------------------------------------- /TU.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/TU.cpp -------------------------------------------------------------------------------- /TU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/TU.h -------------------------------------------------------------------------------- /TypeDBEntry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/TypeDBEntry.cpp -------------------------------------------------------------------------------- /TypeDBEntry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/TypeDBEntry.h -------------------------------------------------------------------------------- /Utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/Utils.cpp -------------------------------------------------------------------------------- /Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/Utils.h -------------------------------------------------------------------------------- /Variable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/Variable.cpp -------------------------------------------------------------------------------- /Variable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/Variable.h -------------------------------------------------------------------------------- /clang-mutate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/clang-mutate.cpp -------------------------------------------------------------------------------- /clang-mutate.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/clang-mutate.dot -------------------------------------------------------------------------------- /clang-mutate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/clang-mutate.h -------------------------------------------------------------------------------- /etc/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/etc/.gitignore -------------------------------------------------------------------------------- /etc/alloca_macro.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/etc/alloca_macro.c -------------------------------------------------------------------------------- /etc/alloca_macro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/etc/alloca_macro.h -------------------------------------------------------------------------------- /etc/array-initializer.c: -------------------------------------------------------------------------------- 1 | static int test[] = { 1, 2, 3 }; 2 | -------------------------------------------------------------------------------- /etc/array_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/etc/array_list.c -------------------------------------------------------------------------------- /etc/array_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/etc/array_list.h -------------------------------------------------------------------------------- /etc/array_of_pointers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/etc/array_of_pointers.c -------------------------------------------------------------------------------- /etc/arrow-operator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/etc/arrow-operator.cpp -------------------------------------------------------------------------------- /etc/aux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/etc/aux.c -------------------------------------------------------------------------------- /etc/child-of-non-visited-stmt-has-parent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/etc/child-of-non-visited-stmt-has-parent.c -------------------------------------------------------------------------------- /etc/class.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/etc/class.cpp -------------------------------------------------------------------------------- /etc/const_var.c: -------------------------------------------------------------------------------- 1 | const int a; 2 | -------------------------------------------------------------------------------- /etc/decls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/etc/decls.c -------------------------------------------------------------------------------- /etc/do-loop-non-compound-body.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/etc/do-loop-non-compound-body.c -------------------------------------------------------------------------------- /etc/enum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/etc/enum.c -------------------------------------------------------------------------------- /etc/for-loop-non-compound-body.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/etc/for-loop-non-compound-body.c -------------------------------------------------------------------------------- /etc/function-in-sys-header.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/etc/function-in-sys-header.c -------------------------------------------------------------------------------- /etc/function-in-sys-header.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /etc/function-in-user-header.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/etc/function-in-user-header.c -------------------------------------------------------------------------------- /etc/function-in-user-header.h: -------------------------------------------------------------------------------- 1 | int foo(int); 2 | -------------------------------------------------------------------------------- /etc/function-with-attribute-macro.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/etc/function-with-attribute-macro.c -------------------------------------------------------------------------------- /etc/function_pointer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/etc/function_pointer.c -------------------------------------------------------------------------------- /etc/function_pointer_no_proto.c: -------------------------------------------------------------------------------- 1 | static char *(*execute)(); 2 | -------------------------------------------------------------------------------- /etc/gcc-asm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/etc/gcc-asm.c -------------------------------------------------------------------------------- /etc/gcd-wo-curlies.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/etc/gcd-wo-curlies.c -------------------------------------------------------------------------------- /etc/global-vars-syn-ctx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/etc/global-vars-syn-ctx.c -------------------------------------------------------------------------------- /etc/global_var.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/etc/global_var.c -------------------------------------------------------------------------------- /etc/hello.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/etc/hello.c -------------------------------------------------------------------------------- /etc/if-non-compound-body.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/etc/if-non-compound-body.c -------------------------------------------------------------------------------- /etc/if.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/etc/if.c -------------------------------------------------------------------------------- /etc/int64_t.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/etc/int64_t.c -------------------------------------------------------------------------------- /etc/lighttpd_sample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/etc/lighttpd_sample.c -------------------------------------------------------------------------------- /etc/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/etc/list.c -------------------------------------------------------------------------------- /etc/loop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/etc/loop.c -------------------------------------------------------------------------------- /etc/macro_with_compound_stmt_body.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/etc/macro_with_compound_stmt_body.c -------------------------------------------------------------------------------- /etc/macro_with_multivar_decl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/etc/macro_with_multivar_decl.c -------------------------------------------------------------------------------- /etc/macro_with_var_decl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/etc/macro_with_var_decl.c -------------------------------------------------------------------------------- /etc/macros.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/etc/macros.c -------------------------------------------------------------------------------- /etc/macros2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/etc/macros2.c -------------------------------------------------------------------------------- /etc/minimal-ewmh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/etc/minimal-ewmh.c -------------------------------------------------------------------------------- /etc/minimal_xcb_ewmh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/etc/minimal_xcb_ewmh.h -------------------------------------------------------------------------------- /etc/more-loops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/etc/more-loops.c -------------------------------------------------------------------------------- /etc/multidimensional_array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/etc/multidimensional_array.c -------------------------------------------------------------------------------- /etc/muse_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/etc/muse_list.c -------------------------------------------------------------------------------- /etc/muse_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/etc/muse_list.h -------------------------------------------------------------------------------- /etc/nested_macro.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/etc/nested_macro.c -------------------------------------------------------------------------------- /etc/nested_macro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/etc/nested_macro.h -------------------------------------------------------------------------------- /etc/null.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | int main(void) { return NULL; } 4 | -------------------------------------------------------------------------------- /etc/open.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/etc/open.c -------------------------------------------------------------------------------- /etc/pointer_to_array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/etc/pointer_to_array.c -------------------------------------------------------------------------------- /etc/pointers-to-pointers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/etc/pointers-to-pointers.c -------------------------------------------------------------------------------- /etc/pound-define-func.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/etc/pound-define-func.c -------------------------------------------------------------------------------- /etc/pound-define-struct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/etc/pound-define-struct.c -------------------------------------------------------------------------------- /etc/recursive-type.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/etc/recursive-type.c -------------------------------------------------------------------------------- /etc/restrict_var.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/etc/restrict_var.c -------------------------------------------------------------------------------- /etc/scopes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/etc/scopes.c -------------------------------------------------------------------------------- /etc/sqrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/etc/sqrt.c -------------------------------------------------------------------------------- /etc/storage_classes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/etc/storage_classes.c -------------------------------------------------------------------------------- /etc/struct-in-sys-header.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | int main() { 4 | FILE* f; 5 | } 6 | -------------------------------------------------------------------------------- /etc/switch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/etc/switch.c -------------------------------------------------------------------------------- /etc/ternary_initialization.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/etc/ternary_initialization.c -------------------------------------------------------------------------------- /etc/typedef-type-hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/etc/typedef-type-hash.c -------------------------------------------------------------------------------- /etc/types-order-is-correct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/etc/types-order-is-correct.c -------------------------------------------------------------------------------- /etc/types.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/etc/types.c -------------------------------------------------------------------------------- /etc/volatile_var.c: -------------------------------------------------------------------------------- 1 | volatile int a; 2 | -------------------------------------------------------------------------------- /etc/while-loop-non-compound-body.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/etc/while-loop-non-compound-body.c -------------------------------------------------------------------------------- /man/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/man/.gitignore -------------------------------------------------------------------------------- /man/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/man/Makefile -------------------------------------------------------------------------------- /man/clang-mutate.template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/man/clang-mutate.template.md -------------------------------------------------------------------------------- /man/design.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/man/design.md -------------------------------------------------------------------------------- /ref_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/ref_ptr.hpp -------------------------------------------------------------------------------- /test/alloca-macro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/test/alloca-macro -------------------------------------------------------------------------------- /test/array-initializer-has-correct-children: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/test/array-initializer-has-correct-children -------------------------------------------------------------------------------- /test/array-of-pointers-has-type: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/test/array-of-pointers-has-type -------------------------------------------------------------------------------- /test/aux-excludes-expected-entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/test/aux-excludes-expected-entries -------------------------------------------------------------------------------- /test/aux-includes-expected-entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/test/aux-includes-expected-entries -------------------------------------------------------------------------------- /test/child-of-non-visited-stmt-has-parent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/test/child-of-non-visited-stmt-has-parent -------------------------------------------------------------------------------- /test/common: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/test/common -------------------------------------------------------------------------------- /test/const-var: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/test/const-var -------------------------------------------------------------------------------- /test/cxx-method-body-is-full-stmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/test/cxx-method-body-is-full-stmt -------------------------------------------------------------------------------- /test/cxx-method-has-body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/test/cxx-method-has-body -------------------------------------------------------------------------------- /test/decls-are-found: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/test/decls-are-found -------------------------------------------------------------------------------- /test/do-loop-body-is-full-statement: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/test/do-loop-body-is-full-statement -------------------------------------------------------------------------------- /test/find-char-star-type: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/test/find-char-star-type -------------------------------------------------------------------------------- /test/for-loop-body-is-full-statement: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/test/for-loop-body-is-full-statement -------------------------------------------------------------------------------- /test/full-stmt-in-switch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/test/full-stmt-in-switch -------------------------------------------------------------------------------- /test/function-bodies-have-children: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/test/function-bodies-have-children -------------------------------------------------------------------------------- /test/function-body-top-level-syntax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/test/function-body-top-level-syntax -------------------------------------------------------------------------------- /test/function-in-sys-header: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/test/function-in-sys-header -------------------------------------------------------------------------------- /test/function-in-user-header: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/test/function-in-user-header -------------------------------------------------------------------------------- /test/function-pointer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/test/function-pointer -------------------------------------------------------------------------------- /test/function-pointer-no-proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/test/function-pointer-no-proto -------------------------------------------------------------------------------- /test/function-with-attribute-not-in-macro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/test/function-with-attribute-not-in-macro -------------------------------------------------------------------------------- /test/global-var-has-type: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/test/global-var-has-type -------------------------------------------------------------------------------- /test/global-vars-syn-ctx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/test/global-vars-syn-ctx -------------------------------------------------------------------------------- /test/hello-finds-stdio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/test/hello-finds-stdio -------------------------------------------------------------------------------- /test/hello-json-bin-default-fields: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/test/hello-json-bin-default-fields -------------------------------------------------------------------------------- /test/hello-json-bin-number-of-stmts-w-binary-data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/test/hello-json-bin-number-of-stmts-w-binary-data -------------------------------------------------------------------------------- /test/hello-json-default-fields: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/test/hello-json-default-fields -------------------------------------------------------------------------------- /test/hello-json-entries-in-counter-order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/test/hello-json-entries-in-counter-order -------------------------------------------------------------------------------- /test/hello-json-list-size: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/test/hello-json-list-size -------------------------------------------------------------------------------- /test/hello-json-list-size-with-stmt1-filter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/test/hello-json-list-size-with-stmt1-filter -------------------------------------------------------------------------------- /test/hello-json-llvm-ir-default-fields: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/test/hello-json-llvm-ir-default-fields -------------------------------------------------------------------------------- /test/hello-json-llvm-ir-number-of-stmts-w-llvm-ir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/test/hello-json-llvm-ir-number-of-stmts-w-llvm-ir -------------------------------------------------------------------------------- /test/hello-json-specify-fields: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/test/hello-json-specify-fields -------------------------------------------------------------------------------- /test/hello-no-semi-colon-on-end-of-statement-json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/test/hello-no-semi-colon-on-end-of-statement-json -------------------------------------------------------------------------------- /test/hello-second-stmt-says-hello-json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/test/hello-second-stmt-says-hello-json -------------------------------------------------------------------------------- /test/hello-semi-colon-on-end-of-set: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/test/hello-semi-colon-on-end-of-set -------------------------------------------------------------------------------- /test/hello-semi-colon-on-end-of-set2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/test/hello-semi-colon-on-end-of-set2 -------------------------------------------------------------------------------- /test/hello-semi-colon-on-end-of-statement-cut: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | . $(dirname $0)/common 3 | 4 | run_hello -cut -stmt1=5|cuted|grep -q ";$" 5 | -------------------------------------------------------------------------------- /test/hello-semi-colon-on-end-of-statement-insert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/test/hello-semi-colon-on-end-of-statement-insert -------------------------------------------------------------------------------- /test/hello-semi-colon-on-end-of-statement-json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/test/hello-semi-colon-on-end-of-statement-json -------------------------------------------------------------------------------- /test/hello-semi-colon-on-end-of-statement-swap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/test/hello-semi-colon-on-end-of-statement-swap -------------------------------------------------------------------------------- /test/hello-semi-colon-on-end-of-value-insert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/test/hello-semi-colon-on-end-of-value-insert -------------------------------------------------------------------------------- /test/hello-set2-w-values: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/test/hello-set2-w-values -------------------------------------------------------------------------------- /test/help-text-appears: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/test/help-text-appears -------------------------------------------------------------------------------- /test/if-body-is-full-statement: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/test/if-body-is-full-statement -------------------------------------------------------------------------------- /test/ignore-null-stmt-at-end-of-macro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/test/ignore-null-stmt-at-end-of-macro -------------------------------------------------------------------------------- /test/int64_t-finds-header: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/test/int64_t-finds-header -------------------------------------------------------------------------------- /test/lighttpd-bug-does-not-crash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/test/lighttpd-bug-does-not-crash -------------------------------------------------------------------------------- /test/list-init-expr-not-full-stmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/test/list-init-expr-not-full-stmt -------------------------------------------------------------------------------- /test/long-macro-is-found: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/test/long-macro-is-found -------------------------------------------------------------------------------- /test/macro-src-text-is-correct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/test/macro-src-text-is-correct -------------------------------------------------------------------------------- /test/macro-with-multivar-decl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/test/macro-with-multivar-decl -------------------------------------------------------------------------------- /test/macro-with-var-decl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/test/macro-with-var-decl -------------------------------------------------------------------------------- /test/multidimensional-array-has-type: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/test/multidimensional-array-has-type -------------------------------------------------------------------------------- /test/nested-macro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/test/nested-macro -------------------------------------------------------------------------------- /test/no-aux-gives-all-entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/test/no-aux-gives-all-entries -------------------------------------------------------------------------------- /test/null-finds-stddef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/test/null-finds-stddef -------------------------------------------------------------------------------- /test/null-has-no-macros: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/test/null-has-no-macros -------------------------------------------------------------------------------- /test/open-stat-header-found: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/test/open-stat-header-found -------------------------------------------------------------------------------- /test/operator-call-expr-ranges: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/test/operator-call-expr-ranges -------------------------------------------------------------------------------- /test/parmvar-has-declares: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/test/parmvar-has-declares -------------------------------------------------------------------------------- /test/pointer-to-array-has-type: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/test/pointer-to-array-has-type -------------------------------------------------------------------------------- /test/pointer-to-pointer-no-decl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/test/pointer-to-pointer-no-decl -------------------------------------------------------------------------------- /test/pound-define-func-test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/test/pound-define-func-test -------------------------------------------------------------------------------- /test/pound-define-struct-test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/test/pound-define-struct-test -------------------------------------------------------------------------------- /test/recursive-type-does-not-crash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/test/recursive-type-does-not-crash -------------------------------------------------------------------------------- /test/replace-in-macro-expansion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/test/replace-in-macro-expansion -------------------------------------------------------------------------------- /test/replace-then-branch-keeps-curlies: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/test/replace-then-branch-keeps-curlies -------------------------------------------------------------------------------- /test/replace-then-branch-keeps-semicolon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/test/replace-then-branch-keeps-semicolon -------------------------------------------------------------------------------- /test/replace-var-in-macro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/test/replace-var-in-macro -------------------------------------------------------------------------------- /test/restrict-var: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/test/restrict-var -------------------------------------------------------------------------------- /test/scopes-block-starts-scope: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/test/scopes-block-starts-scope -------------------------------------------------------------------------------- /test/scopes-function-args-are-local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/test/scopes-function-args-are-local -------------------------------------------------------------------------------- /test/scopes-function-body-starts-scope: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/test/scopes-function-body-starts-scope -------------------------------------------------------------------------------- /test/segmentation-fault: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | clang-mutate -ids etc/minimal-ewmh.c -- 4 | -------------------------------------------------------------------------------- /test/short-macro-is-found: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/test/short-macro-is-found -------------------------------------------------------------------------------- /test/sqrt-math-header-found: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/test/sqrt-math-header-found -------------------------------------------------------------------------------- /test/storage-classes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/test/storage-classes -------------------------------------------------------------------------------- /test/struct-in-sys-header: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/test/struct-in-sys-header -------------------------------------------------------------------------------- /test/type-function-arg-hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/test/type-function-arg-hash -------------------------------------------------------------------------------- /test/type-function-body-hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/test/type-function-body-hash -------------------------------------------------------------------------------- /test/type-function-ret-hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/test/type-function-ret-hash -------------------------------------------------------------------------------- /test/type-has-name-hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/test/type-has-name-hash -------------------------------------------------------------------------------- /test/type-sizes-are-correct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/test/type-sizes-are-correct -------------------------------------------------------------------------------- /test/typedef-type-hash-test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/test/typedef-type-hash-test -------------------------------------------------------------------------------- /test/types-order-correct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/test/types-order-correct -------------------------------------------------------------------------------- /test/volatile-var: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/test/volatile-var -------------------------------------------------------------------------------- /test/while-loop-body-is-full-statement: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/test/while-loop-body-is-full-statement -------------------------------------------------------------------------------- /test/wrap-do-body-in-curlies: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/test/wrap-do-body-in-curlies -------------------------------------------------------------------------------- /test/wrap-then-branch-in-curlies: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/test/wrap-then-branch-in-curlies -------------------------------------------------------------------------------- /third-party/elfio-3.2/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/elfio-3.2/AUTHORS -------------------------------------------------------------------------------- /third-party/elfio-3.2/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/elfio-3.2/COPYING -------------------------------------------------------------------------------- /third-party/elfio-3.2/ChangeLog: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third-party/elfio-3.2/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/elfio-3.2/INSTALL -------------------------------------------------------------------------------- /third-party/elfio-3.2/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/elfio-3.2/Makefile.am -------------------------------------------------------------------------------- /third-party/elfio-3.2/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/elfio-3.2/Makefile.in -------------------------------------------------------------------------------- /third-party/elfio-3.2/NEWS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third-party/elfio-3.2/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/elfio-3.2/README -------------------------------------------------------------------------------- /third-party/elfio-3.2/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/elfio-3.2/aclocal.m4 -------------------------------------------------------------------------------- /third-party/elfio-3.2/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/elfio-3.2/configure -------------------------------------------------------------------------------- /third-party/elfio-3.2/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/elfio-3.2/configure.ac -------------------------------------------------------------------------------- /third-party/elfio-3.2/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/elfio-3.2/depcomp -------------------------------------------------------------------------------- /third-party/elfio-3.2/doc/elfio.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/elfio-3.2/doc/elfio.pdf -------------------------------------------------------------------------------- /third-party/elfio-3.2/elfio/elf_types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/elfio-3.2/elfio/elf_types.hpp -------------------------------------------------------------------------------- /third-party/elfio-3.2/elfio/elfio.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/elfio-3.2/elfio/elfio.hpp -------------------------------------------------------------------------------- /third-party/elfio-3.2/elfio/elfio_dump.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/elfio-3.2/elfio/elfio_dump.hpp -------------------------------------------------------------------------------- /third-party/elfio-3.2/elfio/elfio_dynamic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/elfio-3.2/elfio/elfio_dynamic.hpp -------------------------------------------------------------------------------- /third-party/elfio-3.2/elfio/elfio_header.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/elfio-3.2/elfio/elfio_header.hpp -------------------------------------------------------------------------------- /third-party/elfio-3.2/elfio/elfio_note.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/elfio-3.2/elfio/elfio_note.hpp -------------------------------------------------------------------------------- /third-party/elfio-3.2/elfio/elfio_relocation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/elfio-3.2/elfio/elfio_relocation.hpp -------------------------------------------------------------------------------- /third-party/elfio-3.2/elfio/elfio_section.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/elfio-3.2/elfio/elfio_section.hpp -------------------------------------------------------------------------------- /third-party/elfio-3.2/elfio/elfio_segment.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/elfio-3.2/elfio/elfio_segment.hpp -------------------------------------------------------------------------------- /third-party/elfio-3.2/elfio/elfio_strings.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/elfio-3.2/elfio/elfio_strings.hpp -------------------------------------------------------------------------------- /third-party/elfio-3.2/elfio/elfio_symbols.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/elfio-3.2/elfio/elfio_symbols.hpp -------------------------------------------------------------------------------- /third-party/elfio-3.2/elfio/elfio_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/elfio-3.2/elfio/elfio_utils.hpp -------------------------------------------------------------------------------- /third-party/elfio-3.2/examples/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/elfio-3.2/examples/Makefile.am -------------------------------------------------------------------------------- /third-party/elfio-3.2/examples/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/elfio-3.2/examples/Makefile.in -------------------------------------------------------------------------------- /third-party/elfio-3.2/examples/elfdump/ELFDump.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/elfio-3.2/examples/elfdump/ELFDump.vcxproj -------------------------------------------------------------------------------- /third-party/elfio-3.2/examples/elfdump/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/elfio-3.2/examples/elfdump/Makefile.am -------------------------------------------------------------------------------- /third-party/elfio-3.2/examples/elfdump/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/elfio-3.2/examples/elfdump/Makefile.in -------------------------------------------------------------------------------- /third-party/elfio-3.2/examples/elfdump/elfdump.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/elfio-3.2/examples/elfdump/elfdump.cpp -------------------------------------------------------------------------------- /third-party/elfio-3.2/examples/tutorial/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/elfio-3.2/examples/tutorial/Makefile.am -------------------------------------------------------------------------------- /third-party/elfio-3.2/examples/tutorial/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/elfio-3.2/examples/tutorial/Makefile.in -------------------------------------------------------------------------------- /third-party/elfio-3.2/examples/tutorial/tutorial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/elfio-3.2/examples/tutorial/tutorial.cpp -------------------------------------------------------------------------------- /third-party/elfio-3.2/examples/write_obj/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/elfio-3.2/examples/write_obj/Makefile.am -------------------------------------------------------------------------------- /third-party/elfio-3.2/examples/write_obj/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/elfio-3.2/examples/write_obj/Makefile.in -------------------------------------------------------------------------------- /third-party/elfio-3.2/examples/write_obj/write_obj.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/elfio-3.2/examples/write_obj/write_obj.cpp -------------------------------------------------------------------------------- /third-party/elfio-3.2/examples/writer/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/elfio-3.2/examples/writer/Makefile.am -------------------------------------------------------------------------------- /third-party/elfio-3.2/examples/writer/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/elfio-3.2/examples/writer/Makefile.in -------------------------------------------------------------------------------- /third-party/elfio-3.2/examples/writer/writer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/elfio-3.2/examples/writer/writer.cpp -------------------------------------------------------------------------------- /third-party/elfio-3.2/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/elfio-3.2/install-sh -------------------------------------------------------------------------------- /third-party/elfio-3.2/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/elfio-3.2/missing -------------------------------------------------------------------------------- /third-party/jansson/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/jansson/.gitignore -------------------------------------------------------------------------------- /third-party/jansson/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/jansson/.travis.yml -------------------------------------------------------------------------------- /third-party/jansson/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/jansson/Android.mk -------------------------------------------------------------------------------- /third-party/jansson/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/jansson/CHANGES -------------------------------------------------------------------------------- /third-party/jansson/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/jansson/CMakeLists.txt -------------------------------------------------------------------------------- /third-party/jansson/CleanSpec.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/jansson/CleanSpec.mk -------------------------------------------------------------------------------- /third-party/jansson/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/jansson/LICENSE -------------------------------------------------------------------------------- /third-party/jansson/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/jansson/Makefile.am -------------------------------------------------------------------------------- /third-party/jansson/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/jansson/README.rst -------------------------------------------------------------------------------- /third-party/jansson/android/jansson_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/jansson/android/jansson_config.h -------------------------------------------------------------------------------- /third-party/jansson/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/jansson/appveyor.yml -------------------------------------------------------------------------------- /third-party/jansson/cmake/CheckFunctionKeywords.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/jansson/cmake/CheckFunctionKeywords.cmake -------------------------------------------------------------------------------- /third-party/jansson/cmake/FindSphinx.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/jansson/cmake/FindSphinx.cmake -------------------------------------------------------------------------------- /third-party/jansson/cmake/JanssonConfig.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/jansson/cmake/JanssonConfig.cmake.in -------------------------------------------------------------------------------- /third-party/jansson/cmake/JanssonConfigVersion.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/jansson/cmake/JanssonConfigVersion.cmake.in -------------------------------------------------------------------------------- /third-party/jansson/cmake/jansson_config.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/jansson/cmake/jansson_config.h.cmake -------------------------------------------------------------------------------- /third-party/jansson/cmake/jansson_private_config.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/jansson/cmake/jansson_private_config.h.cmake -------------------------------------------------------------------------------- /third-party/jansson/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/jansson/configure.ac -------------------------------------------------------------------------------- /third-party/jansson/doc/.gitignore: -------------------------------------------------------------------------------- 1 | _build/ 2 | -------------------------------------------------------------------------------- /third-party/jansson/doc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/jansson/doc/Makefile.am -------------------------------------------------------------------------------- /third-party/jansson/doc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/jansson/doc/README -------------------------------------------------------------------------------- /third-party/jansson/doc/apiref.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/jansson/doc/apiref.rst -------------------------------------------------------------------------------- /third-party/jansson/doc/changes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/jansson/doc/changes.rst -------------------------------------------------------------------------------- /third-party/jansson/doc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/jansson/doc/conf.py -------------------------------------------------------------------------------- /third-party/jansson/doc/conformance.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/jansson/doc/conformance.rst -------------------------------------------------------------------------------- /third-party/jansson/doc/ext/refcounting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/jansson/doc/ext/refcounting.py -------------------------------------------------------------------------------- /third-party/jansson/doc/gettingstarted.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/jansson/doc/gettingstarted.rst -------------------------------------------------------------------------------- /third-party/jansson/doc/github_commits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/jansson/doc/github_commits.c -------------------------------------------------------------------------------- /third-party/jansson/doc/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/jansson/doc/index.rst -------------------------------------------------------------------------------- /third-party/jansson/doc/portability.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/jansson/doc/portability.rst -------------------------------------------------------------------------------- /third-party/jansson/doc/tutorial.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/jansson/doc/tutorial.rst -------------------------------------------------------------------------------- /third-party/jansson/doc/upgrading.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/jansson/doc/upgrading.rst -------------------------------------------------------------------------------- /third-party/jansson/jansson.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/jansson/jansson.pc.in -------------------------------------------------------------------------------- /third-party/jansson/release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/jansson/release.sh -------------------------------------------------------------------------------- /third-party/jansson/src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/jansson/src/Makefile.am -------------------------------------------------------------------------------- /third-party/jansson/src/dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/jansson/src/dump.c -------------------------------------------------------------------------------- /third-party/jansson/src/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/jansson/src/error.c -------------------------------------------------------------------------------- /third-party/jansson/src/hashtable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/jansson/src/hashtable.c -------------------------------------------------------------------------------- /third-party/jansson/src/hashtable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/jansson/src/hashtable.h -------------------------------------------------------------------------------- /third-party/jansson/src/hashtable_seed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/jansson/src/hashtable_seed.c -------------------------------------------------------------------------------- /third-party/jansson/src/jansson.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/jansson/src/jansson.def -------------------------------------------------------------------------------- /third-party/jansson/src/jansson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/jansson/src/jansson.h -------------------------------------------------------------------------------- /third-party/jansson/src/jansson_config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/jansson/src/jansson_config.h.in -------------------------------------------------------------------------------- /third-party/jansson/src/jansson_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/jansson/src/jansson_private.h -------------------------------------------------------------------------------- /third-party/jansson/src/load.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/jansson/src/load.c -------------------------------------------------------------------------------- /third-party/jansson/src/lookup3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/jansson/src/lookup3.h -------------------------------------------------------------------------------- /third-party/jansson/src/memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/jansson/src/memory.c -------------------------------------------------------------------------------- /third-party/jansson/src/pack_unpack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/jansson/src/pack_unpack.c -------------------------------------------------------------------------------- /third-party/jansson/src/strbuffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/jansson/src/strbuffer.c -------------------------------------------------------------------------------- /third-party/jansson/src/strbuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/jansson/src/strbuffer.h -------------------------------------------------------------------------------- /third-party/jansson/src/strconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/jansson/src/strconv.c -------------------------------------------------------------------------------- /third-party/jansson/src/utf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/jansson/src/utf.c -------------------------------------------------------------------------------- /third-party/jansson/src/utf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/jansson/src/utf.h -------------------------------------------------------------------------------- /third-party/jansson/src/value.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/jansson/src/value.c -------------------------------------------------------------------------------- /third-party/jansson/test/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/jansson/test/.gitignore -------------------------------------------------------------------------------- /third-party/jansson/test/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/jansson/test/Makefile.am -------------------------------------------------------------------------------- /third-party/jansson/test/bin/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/jansson/test/bin/Makefile.am -------------------------------------------------------------------------------- /third-party/jansson/test/bin/json_process.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/jansson/test/bin/json_process.c -------------------------------------------------------------------------------- /third-party/jansson/test/run-suites: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/jansson/test/run-suites -------------------------------------------------------------------------------- /third-party/jansson/test/scripts/run-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/jansson/test/scripts/run-tests.sh -------------------------------------------------------------------------------- /third-party/jansson/test/scripts/valgrind.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/jansson/test/scripts/valgrind.sh -------------------------------------------------------------------------------- /third-party/jansson/test/suites/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/jansson/test/suites/.gitattributes -------------------------------------------------------------------------------- /third-party/jansson/test/suites/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/jansson/test/suites/Makefile.am -------------------------------------------------------------------------------- /third-party/jansson/test/suites/api/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/jansson/test/suites/api/Makefile.am -------------------------------------------------------------------------------- /third-party/jansson/test/suites/api/check-exports: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/jansson/test/suites/api/check-exports -------------------------------------------------------------------------------- /third-party/jansson/test/suites/api/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/jansson/test/suites/api/run -------------------------------------------------------------------------------- /third-party/jansson/test/suites/api/test_array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/jansson/test/suites/api/test_array.c -------------------------------------------------------------------------------- /third-party/jansson/test/suites/api/test_copy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/jansson/test/suites/api/test_copy.c -------------------------------------------------------------------------------- /third-party/jansson/test/suites/api/test_dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/jansson/test/suites/api/test_dump.c -------------------------------------------------------------------------------- /third-party/jansson/test/suites/api/test_dump_callback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/jansson/test/suites/api/test_dump_callback.c -------------------------------------------------------------------------------- /third-party/jansson/test/suites/api/test_equal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/jansson/test/suites/api/test_equal.c -------------------------------------------------------------------------------- /third-party/jansson/test/suites/api/test_load.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/jansson/test/suites/api/test_load.c -------------------------------------------------------------------------------- /third-party/jansson/test/suites/api/test_load_callback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/jansson/test/suites/api/test_load_callback.c -------------------------------------------------------------------------------- /third-party/jansson/test/suites/api/test_loadb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/jansson/test/suites/api/test_loadb.c -------------------------------------------------------------------------------- /third-party/jansson/test/suites/api/test_memory_funcs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/jansson/test/suites/api/test_memory_funcs.c -------------------------------------------------------------------------------- /third-party/jansson/test/suites/api/test_number.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/jansson/test/suites/api/test_number.c -------------------------------------------------------------------------------- /third-party/jansson/test/suites/api/test_object.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/jansson/test/suites/api/test_object.c -------------------------------------------------------------------------------- /third-party/jansson/test/suites/api/test_pack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/jansson/test/suites/api/test_pack.c -------------------------------------------------------------------------------- /third-party/jansson/test/suites/api/test_simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/jansson/test/suites/api/test_simple.c -------------------------------------------------------------------------------- /third-party/jansson/test/suites/api/test_unpack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/jansson/test/suites/api/test_unpack.c -------------------------------------------------------------------------------- /third-party/jansson/test/suites/api/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/jansson/test/suites/api/util.h -------------------------------------------------------------------------------- /third-party/jansson/test/suites/encoding-flags/array/input: -------------------------------------------------------------------------------- 1 | [1, 2] 2 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/encoding-flags/array/output: -------------------------------------------------------------------------------- 1 | [1, 2] -------------------------------------------------------------------------------- /third-party/jansson/test/suites/encoding-flags/compact-array/env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/jansson/test/suites/encoding-flags/compact-array/env -------------------------------------------------------------------------------- /third-party/jansson/test/suites/encoding-flags/compact-array/input: -------------------------------------------------------------------------------- 1 | [1, 2] 2 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/encoding-flags/compact-array/output: -------------------------------------------------------------------------------- 1 | [1,2] -------------------------------------------------------------------------------- /third-party/jansson/test/suites/encoding-flags/compact-object/env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/jansson/test/suites/encoding-flags/compact-object/env -------------------------------------------------------------------------------- /third-party/jansson/test/suites/encoding-flags/compact-object/input: -------------------------------------------------------------------------------- 1 | {"a": 1, "b": 2} 2 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/encoding-flags/compact-object/output: -------------------------------------------------------------------------------- 1 | {"a":1,"b":2} -------------------------------------------------------------------------------- /third-party/jansson/test/suites/encoding-flags/ensure-ascii/env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/jansson/test/suites/encoding-flags/ensure-ascii/env -------------------------------------------------------------------------------- /third-party/jansson/test/suites/encoding-flags/ensure-ascii/input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/jansson/test/suites/encoding-flags/ensure-ascii/input -------------------------------------------------------------------------------- /third-party/jansson/test/suites/encoding-flags/ensure-ascii/output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/jansson/test/suites/encoding-flags/ensure-ascii/output -------------------------------------------------------------------------------- /third-party/jansson/test/suites/encoding-flags/indent-array/env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/jansson/test/suites/encoding-flags/indent-array/env -------------------------------------------------------------------------------- /third-party/jansson/test/suites/encoding-flags/indent-array/input: -------------------------------------------------------------------------------- 1 | [1, 2] 2 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/encoding-flags/indent-array/output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/jansson/test/suites/encoding-flags/indent-array/output -------------------------------------------------------------------------------- /third-party/jansson/test/suites/encoding-flags/indent-compact-array/env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/jansson/test/suites/encoding-flags/indent-compact-array/env -------------------------------------------------------------------------------- /third-party/jansson/test/suites/encoding-flags/indent-compact-array/input: -------------------------------------------------------------------------------- 1 | [1, 2] 2 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/encoding-flags/indent-compact-array/output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/jansson/test/suites/encoding-flags/indent-compact-array/output -------------------------------------------------------------------------------- /third-party/jansson/test/suites/encoding-flags/indent-compact-object/env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/jansson/test/suites/encoding-flags/indent-compact-object/env -------------------------------------------------------------------------------- /third-party/jansson/test/suites/encoding-flags/indent-compact-object/input: -------------------------------------------------------------------------------- 1 | {"a": 1, "b": 2} 2 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/encoding-flags/indent-compact-object/output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/jansson/test/suites/encoding-flags/indent-compact-object/output -------------------------------------------------------------------------------- /third-party/jansson/test/suites/encoding-flags/indent-object/env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/jansson/test/suites/encoding-flags/indent-object/env -------------------------------------------------------------------------------- /third-party/jansson/test/suites/encoding-flags/indent-object/input: -------------------------------------------------------------------------------- 1 | {"a": 1, "b": 2} 2 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/encoding-flags/indent-object/output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/jansson/test/suites/encoding-flags/indent-object/output -------------------------------------------------------------------------------- /third-party/jansson/test/suites/encoding-flags/object/env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/jansson/test/suites/encoding-flags/object/env -------------------------------------------------------------------------------- /third-party/jansson/test/suites/encoding-flags/object/input: -------------------------------------------------------------------------------- 1 | {"a": 1, "b": 2} 2 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/encoding-flags/object/output: -------------------------------------------------------------------------------- 1 | {"a": 1, "b": 2} -------------------------------------------------------------------------------- /third-party/jansson/test/suites/encoding-flags/preserve-order/env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/jansson/test/suites/encoding-flags/preserve-order/env -------------------------------------------------------------------------------- /third-party/jansson/test/suites/encoding-flags/preserve-order/input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/jansson/test/suites/encoding-flags/preserve-order/input -------------------------------------------------------------------------------- /third-party/jansson/test/suites/encoding-flags/preserve-order/output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/jansson/test/suites/encoding-flags/preserve-order/output -------------------------------------------------------------------------------- /third-party/jansson/test/suites/encoding-flags/real-precision/env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/jansson/test/suites/encoding-flags/real-precision/env -------------------------------------------------------------------------------- /third-party/jansson/test/suites/encoding-flags/real-precision/input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/jansson/test/suites/encoding-flags/real-precision/input -------------------------------------------------------------------------------- /third-party/jansson/test/suites/encoding-flags/real-precision/output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/jansson/test/suites/encoding-flags/real-precision/output -------------------------------------------------------------------------------- /third-party/jansson/test/suites/encoding-flags/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/jansson/test/suites/encoding-flags/run -------------------------------------------------------------------------------- /third-party/jansson/test/suites/encoding-flags/sort-keys/env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/jansson/test/suites/encoding-flags/sort-keys/env -------------------------------------------------------------------------------- /third-party/jansson/test/suites/encoding-flags/sort-keys/input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/jansson/test/suites/encoding-flags/sort-keys/input -------------------------------------------------------------------------------- /third-party/jansson/test/suites/encoding-flags/sort-keys/output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/jansson/test/suites/encoding-flags/sort-keys/output -------------------------------------------------------------------------------- /third-party/jansson/test/suites/invalid-unicode/encoded-surrogate-half/error: -------------------------------------------------------------------------------- 1 | 1 2 2 2 | unable to decode byte 0xed near '"' 3 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/invalid-unicode/encoded-surrogate-half/input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/jansson/test/suites/invalid-unicode/encoded-surrogate-half/input -------------------------------------------------------------------------------- /third-party/jansson/test/suites/invalid-unicode/invalid-utf-8-after-backslash/error: -------------------------------------------------------------------------------- 1 | 1 3 3 2 | unable to decode byte 0xe5 near '"\' 3 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/invalid-unicode/invalid-utf-8-after-backslash/input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/jansson/test/suites/invalid-unicode/invalid-utf-8-after-backslash/input -------------------------------------------------------------------------------- /third-party/jansson/test/suites/invalid-unicode/invalid-utf-8-in-array/error: -------------------------------------------------------------------------------- 1 | 1 1 1 2 | unable to decode byte 0xe5 3 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/invalid-unicode/invalid-utf-8-in-array/input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/jansson/test/suites/invalid-unicode/invalid-utf-8-in-array/input -------------------------------------------------------------------------------- /third-party/jansson/test/suites/invalid-unicode/invalid-utf-8-in-bigger-int/error: -------------------------------------------------------------------------------- 1 | 1 4 4 2 | unable to decode byte 0xe5 near '123' 3 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/invalid-unicode/invalid-utf-8-in-bigger-int/input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/jansson/test/suites/invalid-unicode/invalid-utf-8-in-bigger-int/input -------------------------------------------------------------------------------- /third-party/jansson/test/suites/invalid-unicode/invalid-utf-8-in-escape/error: -------------------------------------------------------------------------------- 1 | 1 4 4 2 | unable to decode byte 0xe5 near '"\u' 3 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/invalid-unicode/invalid-utf-8-in-escape/input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/jansson/test/suites/invalid-unicode/invalid-utf-8-in-escape/input -------------------------------------------------------------------------------- /third-party/jansson/test/suites/invalid-unicode/invalid-utf-8-in-exponent/error: -------------------------------------------------------------------------------- 1 | 1 4 4 2 | unable to decode byte 0xe5 near '1e1' 3 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/invalid-unicode/invalid-utf-8-in-exponent/input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/jansson/test/suites/invalid-unicode/invalid-utf-8-in-exponent/input -------------------------------------------------------------------------------- /third-party/jansson/test/suites/invalid-unicode/invalid-utf-8-in-identifier/error: -------------------------------------------------------------------------------- 1 | 1 2 2 2 | unable to decode byte 0xe5 near 'a' 3 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/invalid-unicode/invalid-utf-8-in-identifier/input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/jansson/test/suites/invalid-unicode/invalid-utf-8-in-identifier/input -------------------------------------------------------------------------------- /third-party/jansson/test/suites/invalid-unicode/invalid-utf-8-in-int/error: -------------------------------------------------------------------------------- 1 | 1 2 2 2 | unable to decode byte 0xe5 near '0' 3 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/invalid-unicode/invalid-utf-8-in-int/input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/jansson/test/suites/invalid-unicode/invalid-utf-8-in-int/input -------------------------------------------------------------------------------- /third-party/jansson/test/suites/invalid-unicode/invalid-utf-8-in-real-after-e/error: -------------------------------------------------------------------------------- 1 | 1 3 3 2 | unable to decode byte 0xe5 near '1e' 3 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/invalid-unicode/invalid-utf-8-in-real-after-e/input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/jansson/test/suites/invalid-unicode/invalid-utf-8-in-real-after-e/input -------------------------------------------------------------------------------- /third-party/jansson/test/suites/invalid-unicode/invalid-utf-8-in-string/error: -------------------------------------------------------------------------------- 1 | 1 2 2 2 | unable to decode byte 0xe5 near '"' 3 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/invalid-unicode/invalid-utf-8-in-string/input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/jansson/test/suites/invalid-unicode/invalid-utf-8-in-string/input -------------------------------------------------------------------------------- /third-party/jansson/test/suites/invalid-unicode/lone-invalid-utf-8/error: -------------------------------------------------------------------------------- 1 | 1 0 0 2 | unable to decode byte 0xe5 3 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/invalid-unicode/lone-invalid-utf-8/input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/jansson/test/suites/invalid-unicode/lone-invalid-utf-8/input -------------------------------------------------------------------------------- /third-party/jansson/test/suites/invalid-unicode/lone-utf-8-continuation-byte/error: -------------------------------------------------------------------------------- 1 | 1 2 2 2 | unable to decode byte 0x81 near '"' 3 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/invalid-unicode/lone-utf-8-continuation-byte/input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/jansson/test/suites/invalid-unicode/lone-utf-8-continuation-byte/input -------------------------------------------------------------------------------- /third-party/jansson/test/suites/invalid-unicode/not-in-unicode-range/error: -------------------------------------------------------------------------------- 1 | 1 2 2 2 | unable to decode byte 0xf4 near '"' 3 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/invalid-unicode/not-in-unicode-range/input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/jansson/test/suites/invalid-unicode/not-in-unicode-range/input -------------------------------------------------------------------------------- /third-party/jansson/test/suites/invalid-unicode/overlong-3-byte-encoding/error: -------------------------------------------------------------------------------- 1 | 1 2 2 2 | unable to decode byte 0xe0 near '"' 3 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/invalid-unicode/overlong-3-byte-encoding/input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/jansson/test/suites/invalid-unicode/overlong-3-byte-encoding/input -------------------------------------------------------------------------------- /third-party/jansson/test/suites/invalid-unicode/overlong-4-byte-encoding/error: -------------------------------------------------------------------------------- 1 | 1 2 2 2 | unable to decode byte 0xf0 near '"' 3 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/invalid-unicode/overlong-4-byte-encoding/input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/jansson/test/suites/invalid-unicode/overlong-4-byte-encoding/input -------------------------------------------------------------------------------- /third-party/jansson/test/suites/invalid-unicode/overlong-ascii-encoding/error: -------------------------------------------------------------------------------- 1 | 1 2 2 2 | unable to decode byte 0xc1 near '"' 3 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/invalid-unicode/overlong-ascii-encoding/input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/jansson/test/suites/invalid-unicode/overlong-ascii-encoding/input -------------------------------------------------------------------------------- /third-party/jansson/test/suites/invalid-unicode/restricted-utf-8/error: -------------------------------------------------------------------------------- 1 | 1 2 2 2 | unable to decode byte 0xfd near '"' 3 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/invalid-unicode/restricted-utf-8/input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/jansson/test/suites/invalid-unicode/restricted-utf-8/input -------------------------------------------------------------------------------- /third-party/jansson/test/suites/invalid-unicode/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/jansson/test/suites/invalid-unicode/run -------------------------------------------------------------------------------- /third-party/jansson/test/suites/invalid-unicode/truncated-utf-8/error: -------------------------------------------------------------------------------- 1 | 1 2 2 2 | unable to decode byte 0xe0 near '"' 3 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/invalid-unicode/truncated-utf-8/input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/jansson/test/suites/invalid-unicode/truncated-utf-8/input -------------------------------------------------------------------------------- /third-party/jansson/test/suites/invalid/apostrophe/error: -------------------------------------------------------------------------------- 1 | 1 2 2 2 | invalid token near ''' 3 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/invalid/apostrophe/input: -------------------------------------------------------------------------------- 1 | [' 2 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/invalid/ascii-unicode-identifier/error: -------------------------------------------------------------------------------- 1 | 1 1 1 2 | '[' or '{' expected near 'a' 3 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/invalid/ascii-unicode-identifier/input: -------------------------------------------------------------------------------- 1 | aå 2 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/invalid/brace-comma/error: -------------------------------------------------------------------------------- 1 | 1 2 2 2 | string or '}' expected near ',' 3 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/invalid/brace-comma/input: -------------------------------------------------------------------------------- 1 | {, 2 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/invalid/bracket-comma/error: -------------------------------------------------------------------------------- 1 | 1 2 2 2 | unexpected token near ',' 3 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/invalid/bracket-comma/input: -------------------------------------------------------------------------------- 1 | [, 2 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/invalid/bracket-one-comma/error.normal: -------------------------------------------------------------------------------- 1 | 2 0 4 2 | ']' expected near end of file 3 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/invalid/bracket-one-comma/error.strip: -------------------------------------------------------------------------------- 1 | 1 3 3 2 | ']' expected near end of file 3 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/invalid/bracket-one-comma/input: -------------------------------------------------------------------------------- 1 | [1, 2 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/invalid/empty/error: -------------------------------------------------------------------------------- 1 | 1 0 0 2 | '[' or '{' expected near end of file 3 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/invalid/empty/input: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/invalid/extra-comma-in-array/error: -------------------------------------------------------------------------------- 1 | 1 4 4 2 | unexpected token near ']' 3 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/invalid/extra-comma-in-array/input: -------------------------------------------------------------------------------- 1 | [1,] 2 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/invalid/extra-comma-in-multiline-array/error: -------------------------------------------------------------------------------- 1 | 6 1 17 2 | unexpected token near ']' 3 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/invalid/extra-comma-in-multiline-array/input: -------------------------------------------------------------------------------- 1 | [1, 2 | 2, 3 | 3, 4 | 4, 5 | 5, 6 | ] 7 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/invalid/garbage-after-newline/error: -------------------------------------------------------------------------------- 1 | 2 3 11 2 | end of file expected near 'foo' 3 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/invalid/garbage-after-newline/input: -------------------------------------------------------------------------------- 1 | [1,2,3] 2 | foo 3 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/invalid/garbage-at-the-end/error: -------------------------------------------------------------------------------- 1 | 1 10 10 2 | end of file expected near 'foo' 3 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/invalid/garbage-at-the-end/input: -------------------------------------------------------------------------------- 1 | [1,2,3]foo 2 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/invalid/integer-starting-with-zero/error: -------------------------------------------------------------------------------- 1 | 1 2 2 2 | invalid token near '0' 3 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/invalid/integer-starting-with-zero/input: -------------------------------------------------------------------------------- 1 | [012] 2 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/invalid/invalid-escape/error: -------------------------------------------------------------------------------- 1 | 1 4 4 2 | invalid escape near '"\a' 3 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/invalid/invalid-escape/input: -------------------------------------------------------------------------------- 1 | ["\a <-- invalid escape"] 2 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/invalid/invalid-identifier/error: -------------------------------------------------------------------------------- 1 | 1 5 5 2 | invalid token near 'troo' 3 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/invalid/invalid-identifier/input: -------------------------------------------------------------------------------- 1 | [troo 2 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/invalid/invalid-negative-integer/error: -------------------------------------------------------------------------------- 1 | 1 8 8 2 | ']' expected near 'foo' 3 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/invalid/invalid-negative-integer/input: -------------------------------------------------------------------------------- 1 | [-123foo] 2 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/invalid/invalid-negative-real/error: -------------------------------------------------------------------------------- 1 | 1 12 12 2 | ']' expected near 'foo' 3 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/invalid/invalid-negative-real/input: -------------------------------------------------------------------------------- 1 | [-123.123foo] 2 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/invalid/invalid-second-surrogate/error: -------------------------------------------------------------------------------- 1 | 1 62 62 2 | invalid Unicode '\uD888\u3210' 3 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/invalid/invalid-second-surrogate/input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/jansson/test/suites/invalid/invalid-second-surrogate/input -------------------------------------------------------------------------------- /third-party/jansson/test/suites/invalid/lone-open-brace/error.normal: -------------------------------------------------------------------------------- 1 | 2 0 2 2 | string or '}' expected near end of file 3 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/invalid/lone-open-brace/error.strip: -------------------------------------------------------------------------------- 1 | 1 1 1 2 | string or '}' expected near end of file 3 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/invalid/lone-open-brace/input: -------------------------------------------------------------------------------- 1 | { 2 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/invalid/lone-open-bracket/error.normal: -------------------------------------------------------------------------------- 1 | 2 0 2 2 | ']' expected near end of file 3 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/invalid/lone-open-bracket/error.strip: -------------------------------------------------------------------------------- 1 | 1 1 1 2 | ']' expected near end of file 3 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/invalid/lone-open-bracket/input: -------------------------------------------------------------------------------- 1 | [ 2 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/invalid/lone-second-surrogate/error: -------------------------------------------------------------------------------- 1 | 1 40 40 2 | invalid Unicode '\uDFAA' 3 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/invalid/lone-second-surrogate/input: -------------------------------------------------------------------------------- 1 | ["\uDFAA (second surrogate on it's own)"] 2 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/invalid/minus-sign-without-number/error: -------------------------------------------------------------------------------- 1 | 1 2 2 2 | invalid token near '-' 3 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/invalid/minus-sign-without-number/input: -------------------------------------------------------------------------------- 1 | [-foo] 2 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/invalid/negative-integer-starting-with-zero/error: -------------------------------------------------------------------------------- 1 | 1 3 3 2 | invalid token near '-0' 3 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/invalid/negative-integer-starting-with-zero/input: -------------------------------------------------------------------------------- 1 | [-012] 2 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/invalid/null-byte-in-object-key/error: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/jansson/test/suites/invalid/null-byte-in-object-key/error -------------------------------------------------------------------------------- /third-party/jansson/test/suites/invalid/null-byte-in-object-key/input: -------------------------------------------------------------------------------- 1 | {"foo\u0000bar": 42} -------------------------------------------------------------------------------- /third-party/jansson/test/suites/invalid/null-byte-in-string/error: -------------------------------------------------------------------------------- 1 | 1 12 12 2 | control character 0x0 near '"null byte ' 3 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/invalid/null-byte-in-string/input: -------------------------------------------------------------------------------- 1 | ["null byte not allowed"] 2 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/invalid/null-byte-in-string/nostrip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/jansson/test/suites/invalid/null-byte-in-string/nostrip -------------------------------------------------------------------------------- /third-party/jansson/test/suites/invalid/null-byte-outside-string/error: -------------------------------------------------------------------------------- 1 | 1 2 2 2 | invalid token near end of file 3 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/invalid/null-byte-outside-string/input: -------------------------------------------------------------------------------- 1 | [ 2 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/invalid/null-byte-outside-string/nostrip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/jansson/test/suites/invalid/null-byte-outside-string/nostrip -------------------------------------------------------------------------------- /third-party/jansson/test/suites/invalid/null/error: -------------------------------------------------------------------------------- 1 | 1 4 4 2 | '[' or '{' expected near 'null' 3 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/invalid/null/input: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/invalid/object-apostrophes/error: -------------------------------------------------------------------------------- 1 | 1 2 2 2 | string or '}' expected near ''' 3 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/invalid/object-apostrophes/input: -------------------------------------------------------------------------------- 1 | {'a' 2 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/invalid/object-garbage-at-end/error: -------------------------------------------------------------------------------- 1 | 1 12 12 2 | '}' expected near '123' 3 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/invalid/object-garbage-at-end/input: -------------------------------------------------------------------------------- 1 | {"a":"a" 123} 2 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/invalid/object-in-unterminated-array/error.normal: -------------------------------------------------------------------------------- 1 | 2 0 4 2 | ']' expected near end of file 3 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/invalid/object-in-unterminated-array/error.strip: -------------------------------------------------------------------------------- 1 | 1 3 3 2 | ']' expected near end of file 3 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/invalid/object-in-unterminated-array/input: -------------------------------------------------------------------------------- 1 | [{} 2 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/invalid/object-no-colon/error.normal: -------------------------------------------------------------------------------- 1 | 2 0 5 2 | ':' expected near end of file 3 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/invalid/object-no-colon/error.strip: -------------------------------------------------------------------------------- 1 | 1 4 4 2 | ':' expected near end of file 3 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/invalid/object-no-colon/input: -------------------------------------------------------------------------------- 1 | {"a" 2 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/invalid/object-no-value/error.normal: -------------------------------------------------------------------------------- 1 | 2 0 6 2 | unexpected token near end of file 3 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/invalid/object-no-value/error.strip: -------------------------------------------------------------------------------- 1 | 1 5 5 2 | unexpected token near end of file 3 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/invalid/object-no-value/input: -------------------------------------------------------------------------------- 1 | {"a": 2 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/invalid/object-unterminated-value/error.normal: -------------------------------------------------------------------------------- 1 | 1 7 7 2 | unexpected newline near '"a' 3 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/invalid/object-unterminated-value/error.strip: -------------------------------------------------------------------------------- 1 | 1 7 7 2 | premature end of input near '"a' 3 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/invalid/object-unterminated-value/input: -------------------------------------------------------------------------------- 1 | {"a":"a 2 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/invalid/real-garbage-after-e/error: -------------------------------------------------------------------------------- 1 | 1 3 3 2 | invalid token near '1e' 3 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/invalid/real-garbage-after-e/input: -------------------------------------------------------------------------------- 1 | [1ea] 2 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/invalid/real-negative-overflow/error: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/jansson/test/suites/invalid/real-negative-overflow/error -------------------------------------------------------------------------------- /third-party/jansson/test/suites/invalid/real-negative-overflow/input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/jansson/test/suites/invalid/real-negative-overflow/input -------------------------------------------------------------------------------- /third-party/jansson/test/suites/invalid/real-positive-overflow/error: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/jansson/test/suites/invalid/real-positive-overflow/error -------------------------------------------------------------------------------- /third-party/jansson/test/suites/invalid/real-positive-overflow/input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/jansson/test/suites/invalid/real-positive-overflow/input -------------------------------------------------------------------------------- /third-party/jansson/test/suites/invalid/real-truncated-at-e/error: -------------------------------------------------------------------------------- 1 | 1 3 3 2 | invalid token near '1e' 3 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/invalid/real-truncated-at-e/input: -------------------------------------------------------------------------------- 1 | [1e] 2 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/invalid/real-truncated-at-point/error: -------------------------------------------------------------------------------- 1 | 1 3 3 2 | invalid token near '1.' 3 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/invalid/real-truncated-at-point/input: -------------------------------------------------------------------------------- 1 | [1.] 2 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/invalid/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/jansson/test/suites/invalid/run -------------------------------------------------------------------------------- /third-party/jansson/test/suites/invalid/tab-character-in-string/error: -------------------------------------------------------------------------------- 1 | 1 2 2 2 | control character 0x9 near '"' 3 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/invalid/tab-character-in-string/input: -------------------------------------------------------------------------------- 1 | [" <-- tab character"] 2 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/invalid/too-big-negative-integer/error: -------------------------------------------------------------------------------- 1 | 1 32 32 2 | too big negative integer 3 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/invalid/too-big-negative-integer/input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/jansson/test/suites/invalid/too-big-negative-integer/input -------------------------------------------------------------------------------- /third-party/jansson/test/suites/invalid/too-big-positive-integer/error: -------------------------------------------------------------------------------- 1 | 1 31 31 2 | too big integer 3 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/invalid/too-big-positive-integer/input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/jansson/test/suites/invalid/too-big-positive-integer/input -------------------------------------------------------------------------------- /third-party/jansson/test/suites/invalid/truncated-unicode-surrogate/error: -------------------------------------------------------------------------------- 1 | 1 46 46 2 | invalid Unicode '\uDADA' 3 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/invalid/truncated-unicode-surrogate/input: -------------------------------------------------------------------------------- 1 | ["\uDADA (first surrogate without the second)"] 2 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/invalid/unicode-identifier/error: -------------------------------------------------------------------------------- 1 | 1 1 2 2 | '[' or '{' expected near 'å' 3 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/invalid/unicode-identifier/input: -------------------------------------------------------------------------------- 1 | å 2 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/invalid/unterminated-array-and-object/error.normal: -------------------------------------------------------------------------------- 1 | 2 0 3 2 | string or '}' expected near end of file 3 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/invalid/unterminated-array-and-object/error.strip: -------------------------------------------------------------------------------- 1 | 1 2 2 2 | string or '}' expected near end of file 3 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/invalid/unterminated-array-and-object/input: -------------------------------------------------------------------------------- 1 | [{ 2 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/invalid/unterminated-array/error.normal: -------------------------------------------------------------------------------- 1 | 2 0 5 2 | ']' expected near end of file 3 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/invalid/unterminated-array/error.strip: -------------------------------------------------------------------------------- 1 | 1 4 4 2 | ']' expected near end of file 3 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/invalid/unterminated-array/input: -------------------------------------------------------------------------------- 1 | ["a" 2 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/invalid/unterminated-empty-key/error.normal: -------------------------------------------------------------------------------- 1 | 1 2 2 2 | unexpected newline near '"' 3 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/invalid/unterminated-empty-key/error.strip: -------------------------------------------------------------------------------- 1 | 1 2 2 2 | premature end of input near '"' 3 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/invalid/unterminated-empty-key/input: -------------------------------------------------------------------------------- 1 | {" 2 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/invalid/unterminated-key/error.normal: -------------------------------------------------------------------------------- 1 | 1 3 3 2 | unexpected newline near '"a' 3 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/invalid/unterminated-key/error.strip: -------------------------------------------------------------------------------- 1 | 1 3 3 2 | premature end of input near '"a' 3 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/invalid/unterminated-key/input: -------------------------------------------------------------------------------- 1 | {"a 2 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/invalid/unterminated-object-and-array/error: -------------------------------------------------------------------------------- 1 | 1 2 2 2 | string or '}' expected near '[' 3 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/invalid/unterminated-object-and-array/input: -------------------------------------------------------------------------------- 1 | {[ 2 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/invalid/unterminated-string/error.normal: -------------------------------------------------------------------------------- 1 | 1 3 3 2 | unexpected newline near '"a' 3 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/invalid/unterminated-string/error.strip: -------------------------------------------------------------------------------- 1 | 1 3 3 2 | premature end of input near '"a' 3 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/invalid/unterminated-string/input: -------------------------------------------------------------------------------- 1 | ["a 2 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/valid/complex-array/env: -------------------------------------------------------------------------------- 1 | JSON_SORT_KEYS=1 -------------------------------------------------------------------------------- /third-party/jansson/test/suites/valid/complex-array/input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/jansson/test/suites/valid/complex-array/input -------------------------------------------------------------------------------- /third-party/jansson/test/suites/valid/complex-array/output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/jansson/test/suites/valid/complex-array/output -------------------------------------------------------------------------------- /third-party/jansson/test/suites/valid/empty-array/input: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/valid/empty-array/output: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /third-party/jansson/test/suites/valid/empty-object-in-array/input: -------------------------------------------------------------------------------- 1 | [{}] 2 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/valid/empty-object-in-array/output: -------------------------------------------------------------------------------- 1 | [{}] -------------------------------------------------------------------------------- /third-party/jansson/test/suites/valid/empty-object/input: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/valid/empty-object/output: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /third-party/jansson/test/suites/valid/empty-string/input: -------------------------------------------------------------------------------- 1 | [""] 2 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/valid/empty-string/output: -------------------------------------------------------------------------------- 1 | [""] -------------------------------------------------------------------------------- /third-party/jansson/test/suites/valid/escaped-utf-control-char/input: -------------------------------------------------------------------------------- 1 | ["\u0012 escaped control character"] 2 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/valid/escaped-utf-control-char/output: -------------------------------------------------------------------------------- 1 | ["\u0012 escaped control character"] -------------------------------------------------------------------------------- /third-party/jansson/test/suites/valid/false/input: -------------------------------------------------------------------------------- 1 | [false] 2 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/valid/false/output: -------------------------------------------------------------------------------- 1 | [false] -------------------------------------------------------------------------------- /third-party/jansson/test/suites/valid/negative-int/input: -------------------------------------------------------------------------------- 1 | [-123] 2 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/valid/negative-int/output: -------------------------------------------------------------------------------- 1 | [-123] -------------------------------------------------------------------------------- /third-party/jansson/test/suites/valid/negative-one/input: -------------------------------------------------------------------------------- 1 | [-1] 2 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/valid/negative-one/output: -------------------------------------------------------------------------------- 1 | [-1] -------------------------------------------------------------------------------- /third-party/jansson/test/suites/valid/negative-zero/input: -------------------------------------------------------------------------------- 1 | [-0] 2 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/valid/negative-zero/output: -------------------------------------------------------------------------------- 1 | [0] -------------------------------------------------------------------------------- /third-party/jansson/test/suites/valid/null/input: -------------------------------------------------------------------------------- 1 | [null] 2 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/valid/null/output: -------------------------------------------------------------------------------- 1 | [null] -------------------------------------------------------------------------------- /third-party/jansson/test/suites/valid/one-byte-utf-8/input: -------------------------------------------------------------------------------- 1 | ["\u002c one-byte UTF-8"] 2 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/valid/one-byte-utf-8/output: -------------------------------------------------------------------------------- 1 | [", one-byte UTF-8"] -------------------------------------------------------------------------------- /third-party/jansson/test/suites/valid/real-capital-e-negative-exponent/input: -------------------------------------------------------------------------------- 1 | [1E-2] 2 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/valid/real-capital-e-negative-exponent/output: -------------------------------------------------------------------------------- 1 | [0.01] -------------------------------------------------------------------------------- /third-party/jansson/test/suites/valid/real-capital-e-positive-exponent/input: -------------------------------------------------------------------------------- 1 | [1E+2] 2 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/valid/real-capital-e-positive-exponent/output: -------------------------------------------------------------------------------- 1 | [100.0] -------------------------------------------------------------------------------- /third-party/jansson/test/suites/valid/real-capital-e/input: -------------------------------------------------------------------------------- 1 | [1E22] 2 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/valid/real-capital-e/output: -------------------------------------------------------------------------------- 1 | [1e22] -------------------------------------------------------------------------------- /third-party/jansson/test/suites/valid/real-exponent/input: -------------------------------------------------------------------------------- 1 | [123e45] 2 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/valid/real-exponent/output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/jansson/test/suites/valid/real-exponent/output -------------------------------------------------------------------------------- /third-party/jansson/test/suites/valid/real-fraction-exponent/input: -------------------------------------------------------------------------------- 1 | [123.456e78] 2 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/valid/real-fraction-exponent/output: -------------------------------------------------------------------------------- 1 | [1.23456e80] -------------------------------------------------------------------------------- /third-party/jansson/test/suites/valid/real-negative-exponent/input: -------------------------------------------------------------------------------- 1 | [1e-2] 2 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/valid/real-negative-exponent/output: -------------------------------------------------------------------------------- 1 | [0.01] -------------------------------------------------------------------------------- /third-party/jansson/test/suites/valid/real-positive-exponent/input: -------------------------------------------------------------------------------- 1 | [1e+2] 2 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/valid/real-positive-exponent/output: -------------------------------------------------------------------------------- 1 | [100.0] -------------------------------------------------------------------------------- /third-party/jansson/test/suites/valid/real-subnormal-number/input: -------------------------------------------------------------------------------- 1 | [1.8011670033376514e-308] 2 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/valid/real-subnormal-number/output: -------------------------------------------------------------------------------- 1 | [1.8011670033376514e-308] -------------------------------------------------------------------------------- /third-party/jansson/test/suites/valid/real-underflow/input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/jansson/test/suites/valid/real-underflow/input -------------------------------------------------------------------------------- /third-party/jansson/test/suites/valid/real-underflow/output: -------------------------------------------------------------------------------- 1 | [0.0] -------------------------------------------------------------------------------- /third-party/jansson/test/suites/valid/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/jansson/test/suites/valid/run -------------------------------------------------------------------------------- /third-party/jansson/test/suites/valid/short-string/input: -------------------------------------------------------------------------------- 1 | ["a"] 2 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/valid/short-string/output: -------------------------------------------------------------------------------- 1 | ["a"] -------------------------------------------------------------------------------- /third-party/jansson/test/suites/valid/simple-ascii-string/input: -------------------------------------------------------------------------------- 1 | ["abcdefghijklmnopqrstuvwxyz1234567890 "] 2 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/valid/simple-ascii-string/output: -------------------------------------------------------------------------------- 1 | ["abcdefghijklmnopqrstuvwxyz1234567890 "] -------------------------------------------------------------------------------- /third-party/jansson/test/suites/valid/simple-int-0/input: -------------------------------------------------------------------------------- 1 | [0] 2 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/valid/simple-int-0/output: -------------------------------------------------------------------------------- 1 | [0] -------------------------------------------------------------------------------- /third-party/jansson/test/suites/valid/simple-int-1/input: -------------------------------------------------------------------------------- 1 | [1] 2 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/valid/simple-int-1/output: -------------------------------------------------------------------------------- 1 | [1] -------------------------------------------------------------------------------- /third-party/jansson/test/suites/valid/simple-int-123/input: -------------------------------------------------------------------------------- 1 | [123] 2 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/valid/simple-int-123/output: -------------------------------------------------------------------------------- 1 | [123] -------------------------------------------------------------------------------- /third-party/jansson/test/suites/valid/simple-object/input: -------------------------------------------------------------------------------- 1 | {"a":[]} 2 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/valid/simple-object/output: -------------------------------------------------------------------------------- 1 | {"a": []} -------------------------------------------------------------------------------- /third-party/jansson/test/suites/valid/simple-real/input: -------------------------------------------------------------------------------- 1 | [123.456789] 2 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/valid/simple-real/output: -------------------------------------------------------------------------------- 1 | [123.456789] -------------------------------------------------------------------------------- /third-party/jansson/test/suites/valid/string-escapes/input: -------------------------------------------------------------------------------- 1 | ["\"\\\/\b\f\n\r\t"] 2 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/valid/string-escapes/output: -------------------------------------------------------------------------------- 1 | ["\"\\/\b\f\n\r\t"] -------------------------------------------------------------------------------- /third-party/jansson/test/suites/valid/three-byte-utf-8/input: -------------------------------------------------------------------------------- 1 | ["\u0821 three-byte UTF-8"] 2 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/valid/three-byte-utf-8/output: -------------------------------------------------------------------------------- 1 | ["ࠡ three-byte UTF-8"] -------------------------------------------------------------------------------- /third-party/jansson/test/suites/valid/true/input: -------------------------------------------------------------------------------- 1 | [true] 2 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/valid/true/output: -------------------------------------------------------------------------------- 1 | [true] -------------------------------------------------------------------------------- /third-party/jansson/test/suites/valid/two-byte-utf-8/input: -------------------------------------------------------------------------------- 1 | ["\u0123 two-byte UTF-8"] 2 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/valid/two-byte-utf-8/output: -------------------------------------------------------------------------------- 1 | ["ģ two-byte UTF-8"] -------------------------------------------------------------------------------- /third-party/jansson/test/suites/valid/utf-8-string/input: -------------------------------------------------------------------------------- 1 | ["€þıœəßð some utf-8 ĸʒ×ŋµåäö𝄞"] 2 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/valid/utf-8-string/output: -------------------------------------------------------------------------------- 1 | ["€þıœəßð some utf-8 ĸʒ×ŋµåäö𝄞"] -------------------------------------------------------------------------------- /third-party/jansson/test/suites/valid/utf-surrogate-four-byte-encoding/input: -------------------------------------------------------------------------------- 1 | ["\uD834\uDD1E surrogate, four-byte UTF-8"] 2 | -------------------------------------------------------------------------------- /third-party/jansson/test/suites/valid/utf-surrogate-four-byte-encoding/output: -------------------------------------------------------------------------------- 1 | ["𝄞 surrogate, four-byte UTF-8"] -------------------------------------------------------------------------------- /third-party/jshon/.gitignore: -------------------------------------------------------------------------------- 1 | jshon 2 | -------------------------------------------------------------------------------- /third-party/jshon/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/jshon/LICENSE -------------------------------------------------------------------------------- /third-party/jshon/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/jshon/Makefile -------------------------------------------------------------------------------- /third-party/jshon/PKGBUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/jshon/PKGBUILD -------------------------------------------------------------------------------- /third-party/jshon/jshon.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/jshon/jshon.1 -------------------------------------------------------------------------------- /third-party/jshon/jshon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/jshon/jshon.c -------------------------------------------------------------------------------- /third-party/jshon/jshon.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/jshon/jshon.spec -------------------------------------------------------------------------------- /third-party/picojson-1.3.0/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/picojson-1.3.0/.gitignore -------------------------------------------------------------------------------- /third-party/picojson-1.3.0/.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third-party/picojson-1.3.0/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/picojson-1.3.0/.travis.yml -------------------------------------------------------------------------------- /third-party/picojson-1.3.0/Changes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/picojson-1.3.0/Changes -------------------------------------------------------------------------------- /third-party/picojson-1.3.0/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/picojson-1.3.0/LICENSE -------------------------------------------------------------------------------- /third-party/picojson-1.3.0/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/picojson-1.3.0/Makefile -------------------------------------------------------------------------------- /third-party/picojson-1.3.0/README.mkdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/picojson-1.3.0/README.mkdn -------------------------------------------------------------------------------- /third-party/picojson-1.3.0/examples/github-issues.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/picojson-1.3.0/examples/github-issues.cc -------------------------------------------------------------------------------- /third-party/picojson-1.3.0/examples/iostream.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/picojson-1.3.0/examples/iostream.cc -------------------------------------------------------------------------------- /third-party/picojson-1.3.0/examples/streaming.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/picojson-1.3.0/examples/streaming.cc -------------------------------------------------------------------------------- /third-party/picojson-1.3.0/picojson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/picojson-1.3.0/picojson.h -------------------------------------------------------------------------------- /third-party/picojson-1.3.0/picotest/picotest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/picojson-1.3.0/picotest/picotest.c -------------------------------------------------------------------------------- /third-party/picojson-1.3.0/picotest/picotest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/picojson-1.3.0/picotest/picotest.h -------------------------------------------------------------------------------- /third-party/picojson-1.3.0/test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/third-party/picojson-1.3.0/test.cc -------------------------------------------------------------------------------- /tools/perforate-loops: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/tools/perforate-loops -------------------------------------------------------------------------------- /tools/strings-to: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaTech/clang-mutate/HEAD/tools/strings-to --------------------------------------------------------------------------------