├── .editorconfig ├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── LICENSE ├── README.md ├── example ├── heart.c └── qsort.c ├── gklib ├── CMakeLists.txt ├── gkarg.c ├── gkassert.c ├── gkbit.c └── gkckdint.c ├── include ├── assert.h ├── ctype.h ├── errno.h ├── fenv.h ├── float.h ├── inttypes.h ├── iso646.h ├── limits.h ├── locale.h ├── setjmp.h ├── signal.h ├── stdalign.h ├── stdarg.h ├── stdbit.h ├── stdbool.h ├── stdckdint.h ├── stddef.h ├── stdint.h ├── stdio.h ├── stdlib.h ├── stdnoreturn.h ├── string.h ├── time.h ├── uchar.h ├── wchar.h └── wctype.h ├── src ├── CMakeLists.txt ├── IR │ ├── CMakeLists.txt │ ├── IRBuilder.cc │ ├── IRBuilder.h │ ├── IROperand.cc │ ├── IROperand.h │ ├── IRType.cc │ ├── IRType.h │ ├── Instr.cc │ ├── Instr.h │ ├── Value.cc │ └── Value.h ├── ast │ ├── CMakeLists.txt │ ├── CType.cc │ ├── CType.h │ ├── Declaration.cc │ ├── Declaration.h │ ├── Expr.h │ ├── Expression.cc │ ├── Expression.h │ ├── Statement.cc │ ├── Statement.h │ └── Tag.h ├── main │ ├── CMakeLists.txt │ ├── Driver.cc │ ├── Driver.h │ └── main.cc ├── messages │ ├── CMakeLists.txt │ ├── Error.cc │ ├── Error.h │ ├── errmsg-en_us.cc │ └── errmsg-zh_cn.cc ├── parser │ ├── CMakeLists.txt │ ├── lexer.ll │ └── yacc.yy ├── pass │ ├── CMakeLists.txt │ ├── CallingGraph.cc │ ├── CallingGraph.h │ ├── DUInfo.cc │ ├── DUInfo.h │ ├── Dominators.cc │ ├── Dominators.h │ ├── FlowGraph.cc │ ├── FlowGraph.h │ ├── Liveness.cc │ ├── Liveness.h │ ├── LoopAnalyze.cc │ ├── LoopAnalyze.h │ ├── Pass.h │ ├── Pipeline.h │ ├── RegAlloc.h │ ├── SimpleAlloc.cc │ ├── SimpleAlloc.h │ ├── x64Alloc.cc │ └── x64Alloc.h ├── utils │ ├── Container.h │ ├── DynCast.h │ ├── Graph.h │ └── Pool.h ├── visitast │ ├── ASTVisitor.h │ ├── CMakeLists.txt │ ├── CodeChk.cc │ ├── CodeChk.h │ ├── Evaluator.cc │ ├── Evaluator.h │ ├── IRGen.cc │ ├── IRGen.h │ ├── Identifier.h │ ├── Scope.cc │ ├── Scope.h │ ├── TypeBuilder.cc │ └── TypeBuilder.h └── visitir │ ├── CMakeLists.txt │ ├── CodeGen.cc │ ├── CodeGen.h │ ├── EmitAsm.cc │ ├── EmitAsm.h │ ├── IRVisitor.h │ ├── SysVConv.cc │ ├── SysVConv.h │ ├── x64.cc │ └── x64.h ├── tests ├── dirs.txt ├── lang │ ├── align.c │ ├── array.c │ ├── auto.c │ ├── binary.c │ ├── br.c │ ├── char.c │ ├── dowhile.c │ ├── enum.c │ ├── eval.c │ ├── explicit.c │ ├── float.c │ ├── for.c │ ├── func.c │ ├── hello.c │ ├── heterargv.c │ ├── hints.txt │ ├── if.c │ ├── implicit.c │ ├── link1.c │ ├── link2.c │ ├── number.c │ ├── pointer.c │ ├── qualify.c │ ├── scope.c │ ├── size.c │ ├── storage.c │ ├── string.c │ ├── struct.c │ ├── switch.c │ ├── typedef.c │ ├── typeof.c │ ├── unary.c │ ├── union.c │ ├── ux.c │ ├── var.c │ ├── variadic.c │ └── while.c ├── pass │ └── simple.c ├── test.h └── test.sh └── third_party ├── CMakeLists.txt ├── fmt ├── .clang-format ├── CMakeLists.txt ├── CONTRIBUTING.md ├── ChangeLog.rst ├── LICENSE.rst ├── README.rst ├── doc │ ├── CMakeLists.txt │ ├── _static │ │ ├── bootstrap.min.js │ │ └── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ └── glyphicons-halflings-regular.woff │ ├── _templates │ │ ├── layout.html │ │ └── search.html │ ├── api.rst │ ├── basic-bootstrap │ │ ├── README │ │ ├── layout.html │ │ └── theme.conf │ ├── bootstrap │ │ ├── alerts.less │ │ ├── badges.less │ │ ├── bootstrap.less │ │ ├── breadcrumbs.less │ │ ├── button-groups.less │ │ ├── buttons.less │ │ ├── carousel.less │ │ ├── close.less │ │ ├── code.less │ │ ├── component-animations.less │ │ ├── dropdowns.less │ │ ├── forms.less │ │ ├── glyphicons.less │ │ ├── grid.less │ │ ├── input-groups.less │ │ ├── jumbotron.less │ │ ├── labels.less │ │ ├── list-group.less │ │ ├── media.less │ │ ├── mixins.less │ │ ├── mixins │ │ │ ├── alerts.less │ │ │ ├── background-variant.less │ │ │ ├── border-radius.less │ │ │ ├── buttons.less │ │ │ ├── center-block.less │ │ │ ├── clearfix.less │ │ │ ├── forms.less │ │ │ ├── gradients.less │ │ │ ├── grid-framework.less │ │ │ ├── grid.less │ │ │ ├── hide-text.less │ │ │ ├── image.less │ │ │ ├── labels.less │ │ │ ├── list-group.less │ │ │ ├── nav-divider.less │ │ │ ├── nav-vertical-align.less │ │ │ ├── opacity.less │ │ │ ├── pagination.less │ │ │ ├── panels.less │ │ │ ├── progress-bar.less │ │ │ ├── reset-filter.less │ │ │ ├── resize.less │ │ │ ├── responsive-visibility.less │ │ │ ├── size.less │ │ │ ├── tab-focus.less │ │ │ ├── table-row.less │ │ │ ├── text-emphasis.less │ │ │ ├── text-overflow.less │ │ │ └── vendor-prefixes.less │ │ ├── modals.less │ │ ├── navbar.less │ │ ├── navs.less │ │ ├── normalize.less │ │ ├── pager.less │ │ ├── pagination.less │ │ ├── panels.less │ │ ├── popovers.less │ │ ├── print.less │ │ ├── progress-bars.less │ │ ├── responsive-embed.less │ │ ├── responsive-utilities.less │ │ ├── scaffolding.less │ │ ├── tables.less │ │ ├── theme.less │ │ ├── thumbnails.less │ │ ├── tooltip.less │ │ ├── type.less │ │ ├── utilities.less │ │ ├── variables.less │ │ └── wells.less │ ├── build.py │ ├── conf.py │ ├── contents.rst │ ├── fmt.less │ ├── html │ │ ├── _sources │ │ │ ├── api.rst.txt │ │ │ ├── contents.rst.txt │ │ │ ├── index.rst.txt │ │ │ ├── syntax.rst.txt │ │ │ └── usage.rst.txt │ │ ├── _static │ │ │ ├── basic.css │ │ │ ├── bootstrap.min.js │ │ │ ├── doctools.js │ │ │ ├── documentation_options.js │ │ │ ├── file.png │ │ │ ├── fmt.css │ │ │ ├── fonts │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ └── glyphicons-halflings-regular.woff │ │ │ ├── jquery-3.5.1.js │ │ │ ├── jquery.js │ │ │ ├── language_data.js │ │ │ ├── minus.png │ │ │ ├── plus.png │ │ │ ├── pygments.css │ │ │ ├── searchtools.js │ │ │ ├── underscore-1.3.1.js │ │ │ └── underscore.js │ │ ├── api.html │ │ ├── contents.html │ │ ├── genindex.html │ │ ├── index.html │ │ ├── objects.inv │ │ ├── search.html │ │ ├── searchindex.js │ │ ├── syntax.html │ │ └── usage.html │ ├── index.rst │ ├── python-license.txt │ ├── syntax.rst │ └── usage.rst ├── include │ └── fmt │ │ ├── args.h │ │ ├── chrono.h │ │ ├── color.h │ │ ├── compile.h │ │ ├── core.h │ │ ├── format-inl.h │ │ ├── format.h │ │ ├── os.h │ │ ├── ostream.h │ │ ├── printf.h │ │ ├── ranges.h │ │ ├── std.h │ │ └── xchar.h ├── src │ ├── fmt.cc │ ├── format.cc │ └── os.cc ├── support │ ├── Android.mk │ ├── AndroidManifest.xml │ ├── C++.sublime-syntax │ ├── README │ ├── Vagrantfile │ ├── bazel │ │ ├── .bazelrc │ │ ├── .bazelversion │ │ ├── BUILD.bazel │ │ ├── README.md │ │ └── WORKSPACE.bazel │ ├── build-docs.py │ ├── build.gradle │ ├── cmake │ │ ├── FindSetEnv.cmake │ │ ├── JoinPaths.cmake │ │ ├── cxx14.cmake │ │ ├── fmt-config.cmake.in │ │ └── fmt.pc.in │ ├── compute-powers.py │ ├── docopt.py │ ├── manage.py │ ├── printable.py │ ├── rst2md.py │ └── rtd │ │ ├── conf.py │ │ ├── index.rst │ │ └── theme │ │ ├── layout.html │ │ └── theme.conf └── test │ ├── CMakeLists.txt │ ├── add-subdirectory-test │ ├── CMakeLists.txt │ └── main.cc │ ├── args-test.cc │ ├── assert-test.cc │ ├── chrono-test.cc │ ├── color-test.cc │ ├── compile-error-test │ └── CMakeLists.txt │ ├── compile-fp-test.cc │ ├── compile-test.cc │ ├── core-test.cc │ ├── cuda-test │ ├── CMakeLists.txt │ ├── cpp14.cc │ └── cuda-cpp14.cu │ ├── detect-stdfs.cc │ ├── enforce-checks-test.cc │ ├── find-package-test │ ├── CMakeLists.txt │ └── main.cc │ ├── format-impl-test.cc │ ├── format-test.cc │ ├── fuzzing │ ├── CMakeLists.txt │ ├── README.md │ ├── build.sh │ ├── chrono-duration.cc │ ├── chrono-timepoint.cc │ ├── float.cc │ ├── fuzzer-common.h │ ├── main.cc │ ├── named-arg.cc │ ├── one-arg.cc │ └── two-args.cc │ ├── gtest-extra-test.cc │ ├── gtest-extra.cc │ ├── gtest-extra.h │ ├── gtest │ ├── .clang-format │ ├── CMakeLists.txt │ ├── gmock-gtest-all.cc │ ├── gmock │ │ └── gmock.h │ └── gtest │ │ ├── gtest-spi.h │ │ └── gtest.h │ ├── header-only-test.cc │ ├── mock-allocator.h │ ├── module-test.cc │ ├── noexception-test.cc │ ├── os-test.cc │ ├── ostream-test.cc │ ├── posix-mock-test.cc │ ├── posix-mock.h │ ├── printf-test.cc │ ├── ranges-odr-test.cc │ ├── ranges-test.cc │ ├── scan-test.cc │ ├── scan.h │ ├── static-export-test │ ├── CMakeLists.txt │ ├── library.cc │ └── main.cc │ ├── std-test.cc │ ├── test-assert.h │ ├── test-main.cc │ ├── unicode-test.cc │ ├── util.cc │ ├── util.h │ └── xchar-test.cc └── utfcpp ├── .circleci └── config.yml ├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── LICENSE ├── README.md ├── extern └── ftest │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ ├── ftest.h │ └── tests │ ├── CMakeLists.txt │ └── smoke.cpp ├── samples └── docsample.cpp ├── source ├── utf8.h └── utf8 │ ├── checked.h │ ├── core.h │ ├── cpp11.h │ ├── cpp17.h │ └── unchecked.h ├── tests ├── CMakeLists.txt ├── apitests.cpp ├── docker │ └── Dockerfile ├── negative.cpp ├── noexceptionstests.cpp ├── test_checked_api.h ├── test_checked_iterator.h ├── test_cpp11.cpp ├── test_cpp17.cpp ├── test_data │ └── utf8_invalid.txt ├── test_unchecked_api.h └── test_unchecked_iterator.h └── utf8cppConfig.cmake.in /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/README.md -------------------------------------------------------------------------------- /example/heart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/example/heart.c -------------------------------------------------------------------------------- /example/qsort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/example/qsort.c -------------------------------------------------------------------------------- /gklib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/gklib/CMakeLists.txt -------------------------------------------------------------------------------- /gklib/gkarg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/gklib/gkarg.c -------------------------------------------------------------------------------- /gklib/gkassert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/gklib/gkassert.c -------------------------------------------------------------------------------- /gklib/gkbit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/gklib/gkbit.c -------------------------------------------------------------------------------- /gklib/gkckdint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/gklib/gkckdint.c -------------------------------------------------------------------------------- /include/assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/include/assert.h -------------------------------------------------------------------------------- /include/ctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/include/ctype.h -------------------------------------------------------------------------------- /include/errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/include/errno.h -------------------------------------------------------------------------------- /include/fenv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/include/fenv.h -------------------------------------------------------------------------------- /include/float.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/include/float.h -------------------------------------------------------------------------------- /include/inttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/include/inttypes.h -------------------------------------------------------------------------------- /include/iso646.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/include/iso646.h -------------------------------------------------------------------------------- /include/limits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/include/limits.h -------------------------------------------------------------------------------- /include/locale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/include/locale.h -------------------------------------------------------------------------------- /include/setjmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/include/setjmp.h -------------------------------------------------------------------------------- /include/signal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/include/signal.h -------------------------------------------------------------------------------- /include/stdalign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/include/stdalign.h -------------------------------------------------------------------------------- /include/stdarg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/include/stdarg.h -------------------------------------------------------------------------------- /include/stdbit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/include/stdbit.h -------------------------------------------------------------------------------- /include/stdbool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/include/stdbool.h -------------------------------------------------------------------------------- /include/stdckdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/include/stdckdint.h -------------------------------------------------------------------------------- /include/stddef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/include/stddef.h -------------------------------------------------------------------------------- /include/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/include/stdint.h -------------------------------------------------------------------------------- /include/stdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/include/stdio.h -------------------------------------------------------------------------------- /include/stdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/include/stdlib.h -------------------------------------------------------------------------------- /include/stdnoreturn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/include/stdnoreturn.h -------------------------------------------------------------------------------- /include/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/include/string.h -------------------------------------------------------------------------------- /include/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/include/time.h -------------------------------------------------------------------------------- /include/uchar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/include/uchar.h -------------------------------------------------------------------------------- /include/wchar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/include/wchar.h -------------------------------------------------------------------------------- /include/wctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/include/wctype.h -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/IR/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/src/IR/CMakeLists.txt -------------------------------------------------------------------------------- /src/IR/IRBuilder.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/src/IR/IRBuilder.cc -------------------------------------------------------------------------------- /src/IR/IRBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/src/IR/IRBuilder.h -------------------------------------------------------------------------------- /src/IR/IROperand.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/src/IR/IROperand.cc -------------------------------------------------------------------------------- /src/IR/IROperand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/src/IR/IROperand.h -------------------------------------------------------------------------------- /src/IR/IRType.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/src/IR/IRType.cc -------------------------------------------------------------------------------- /src/IR/IRType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/src/IR/IRType.h -------------------------------------------------------------------------------- /src/IR/Instr.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/src/IR/Instr.cc -------------------------------------------------------------------------------- /src/IR/Instr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/src/IR/Instr.h -------------------------------------------------------------------------------- /src/IR/Value.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/src/IR/Value.cc -------------------------------------------------------------------------------- /src/IR/Value.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/src/IR/Value.h -------------------------------------------------------------------------------- /src/ast/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/src/ast/CMakeLists.txt -------------------------------------------------------------------------------- /src/ast/CType.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/src/ast/CType.cc -------------------------------------------------------------------------------- /src/ast/CType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/src/ast/CType.h -------------------------------------------------------------------------------- /src/ast/Declaration.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/src/ast/Declaration.cc -------------------------------------------------------------------------------- /src/ast/Declaration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/src/ast/Declaration.h -------------------------------------------------------------------------------- /src/ast/Expr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/src/ast/Expr.h -------------------------------------------------------------------------------- /src/ast/Expression.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/src/ast/Expression.cc -------------------------------------------------------------------------------- /src/ast/Expression.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/src/ast/Expression.h -------------------------------------------------------------------------------- /src/ast/Statement.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/src/ast/Statement.cc -------------------------------------------------------------------------------- /src/ast/Statement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/src/ast/Statement.h -------------------------------------------------------------------------------- /src/ast/Tag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/src/ast/Tag.h -------------------------------------------------------------------------------- /src/main/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/src/main/CMakeLists.txt -------------------------------------------------------------------------------- /src/main/Driver.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/src/main/Driver.cc -------------------------------------------------------------------------------- /src/main/Driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/src/main/Driver.h -------------------------------------------------------------------------------- /src/main/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/src/main/main.cc -------------------------------------------------------------------------------- /src/messages/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/src/messages/CMakeLists.txt -------------------------------------------------------------------------------- /src/messages/Error.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/src/messages/Error.cc -------------------------------------------------------------------------------- /src/messages/Error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/src/messages/Error.h -------------------------------------------------------------------------------- /src/messages/errmsg-en_us.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/src/messages/errmsg-en_us.cc -------------------------------------------------------------------------------- /src/messages/errmsg-zh_cn.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/src/messages/errmsg-zh_cn.cc -------------------------------------------------------------------------------- /src/parser/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/src/parser/CMakeLists.txt -------------------------------------------------------------------------------- /src/parser/lexer.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/src/parser/lexer.ll -------------------------------------------------------------------------------- /src/parser/yacc.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/src/parser/yacc.yy -------------------------------------------------------------------------------- /src/pass/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/src/pass/CMakeLists.txt -------------------------------------------------------------------------------- /src/pass/CallingGraph.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/src/pass/CallingGraph.cc -------------------------------------------------------------------------------- /src/pass/CallingGraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/src/pass/CallingGraph.h -------------------------------------------------------------------------------- /src/pass/DUInfo.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/src/pass/DUInfo.cc -------------------------------------------------------------------------------- /src/pass/DUInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/src/pass/DUInfo.h -------------------------------------------------------------------------------- /src/pass/Dominators.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/src/pass/Dominators.cc -------------------------------------------------------------------------------- /src/pass/Dominators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/src/pass/Dominators.h -------------------------------------------------------------------------------- /src/pass/FlowGraph.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/src/pass/FlowGraph.cc -------------------------------------------------------------------------------- /src/pass/FlowGraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/src/pass/FlowGraph.h -------------------------------------------------------------------------------- /src/pass/Liveness.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/src/pass/Liveness.cc -------------------------------------------------------------------------------- /src/pass/Liveness.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/src/pass/Liveness.h -------------------------------------------------------------------------------- /src/pass/LoopAnalyze.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/src/pass/LoopAnalyze.cc -------------------------------------------------------------------------------- /src/pass/LoopAnalyze.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/src/pass/LoopAnalyze.h -------------------------------------------------------------------------------- /src/pass/Pass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/src/pass/Pass.h -------------------------------------------------------------------------------- /src/pass/Pipeline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/src/pass/Pipeline.h -------------------------------------------------------------------------------- /src/pass/RegAlloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/src/pass/RegAlloc.h -------------------------------------------------------------------------------- /src/pass/SimpleAlloc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/src/pass/SimpleAlloc.cc -------------------------------------------------------------------------------- /src/pass/SimpleAlloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/src/pass/SimpleAlloc.h -------------------------------------------------------------------------------- /src/pass/x64Alloc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/src/pass/x64Alloc.cc -------------------------------------------------------------------------------- /src/pass/x64Alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/src/pass/x64Alloc.h -------------------------------------------------------------------------------- /src/utils/Container.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/src/utils/Container.h -------------------------------------------------------------------------------- /src/utils/DynCast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/src/utils/DynCast.h -------------------------------------------------------------------------------- /src/utils/Graph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/src/utils/Graph.h -------------------------------------------------------------------------------- /src/utils/Pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/src/utils/Pool.h -------------------------------------------------------------------------------- /src/visitast/ASTVisitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/src/visitast/ASTVisitor.h -------------------------------------------------------------------------------- /src/visitast/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/src/visitast/CMakeLists.txt -------------------------------------------------------------------------------- /src/visitast/CodeChk.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/src/visitast/CodeChk.cc -------------------------------------------------------------------------------- /src/visitast/CodeChk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/src/visitast/CodeChk.h -------------------------------------------------------------------------------- /src/visitast/Evaluator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/src/visitast/Evaluator.cc -------------------------------------------------------------------------------- /src/visitast/Evaluator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/src/visitast/Evaluator.h -------------------------------------------------------------------------------- /src/visitast/IRGen.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/src/visitast/IRGen.cc -------------------------------------------------------------------------------- /src/visitast/IRGen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/src/visitast/IRGen.h -------------------------------------------------------------------------------- /src/visitast/Identifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/src/visitast/Identifier.h -------------------------------------------------------------------------------- /src/visitast/Scope.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/src/visitast/Scope.cc -------------------------------------------------------------------------------- /src/visitast/Scope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/src/visitast/Scope.h -------------------------------------------------------------------------------- /src/visitast/TypeBuilder.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/src/visitast/TypeBuilder.cc -------------------------------------------------------------------------------- /src/visitast/TypeBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/src/visitast/TypeBuilder.h -------------------------------------------------------------------------------- /src/visitir/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/src/visitir/CMakeLists.txt -------------------------------------------------------------------------------- /src/visitir/CodeGen.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/src/visitir/CodeGen.cc -------------------------------------------------------------------------------- /src/visitir/CodeGen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/src/visitir/CodeGen.h -------------------------------------------------------------------------------- /src/visitir/EmitAsm.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/src/visitir/EmitAsm.cc -------------------------------------------------------------------------------- /src/visitir/EmitAsm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/src/visitir/EmitAsm.h -------------------------------------------------------------------------------- /src/visitir/IRVisitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/src/visitir/IRVisitor.h -------------------------------------------------------------------------------- /src/visitir/SysVConv.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/src/visitir/SysVConv.cc -------------------------------------------------------------------------------- /src/visitir/SysVConv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/src/visitir/SysVConv.h -------------------------------------------------------------------------------- /src/visitir/x64.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/src/visitir/x64.cc -------------------------------------------------------------------------------- /src/visitir/x64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/src/visitir/x64.h -------------------------------------------------------------------------------- /tests/dirs.txt: -------------------------------------------------------------------------------- 1 | lang 2 | -------------------------------------------------------------------------------- /tests/lang/align.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/tests/lang/align.c -------------------------------------------------------------------------------- /tests/lang/array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/tests/lang/array.c -------------------------------------------------------------------------------- /tests/lang/auto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/tests/lang/auto.c -------------------------------------------------------------------------------- /tests/lang/binary.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/tests/lang/binary.c -------------------------------------------------------------------------------- /tests/lang/br.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/tests/lang/br.c -------------------------------------------------------------------------------- /tests/lang/char.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/tests/lang/char.c -------------------------------------------------------------------------------- /tests/lang/dowhile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/tests/lang/dowhile.c -------------------------------------------------------------------------------- /tests/lang/enum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/tests/lang/enum.c -------------------------------------------------------------------------------- /tests/lang/eval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/tests/lang/eval.c -------------------------------------------------------------------------------- /tests/lang/explicit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/tests/lang/explicit.c -------------------------------------------------------------------------------- /tests/lang/float.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/tests/lang/float.c -------------------------------------------------------------------------------- /tests/lang/for.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/tests/lang/for.c -------------------------------------------------------------------------------- /tests/lang/func.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/tests/lang/func.c -------------------------------------------------------------------------------- /tests/lang/hello.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/tests/lang/hello.c -------------------------------------------------------------------------------- /tests/lang/heterargv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/tests/lang/heterargv.c -------------------------------------------------------------------------------- /tests/lang/hints.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/tests/lang/hints.txt -------------------------------------------------------------------------------- /tests/lang/if.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/tests/lang/if.c -------------------------------------------------------------------------------- /tests/lang/implicit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/tests/lang/implicit.c -------------------------------------------------------------------------------- /tests/lang/link1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/tests/lang/link1.c -------------------------------------------------------------------------------- /tests/lang/link2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/tests/lang/link2.c -------------------------------------------------------------------------------- /tests/lang/number.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/tests/lang/number.c -------------------------------------------------------------------------------- /tests/lang/pointer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/tests/lang/pointer.c -------------------------------------------------------------------------------- /tests/lang/qualify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/tests/lang/qualify.c -------------------------------------------------------------------------------- /tests/lang/scope.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/tests/lang/scope.c -------------------------------------------------------------------------------- /tests/lang/size.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/tests/lang/size.c -------------------------------------------------------------------------------- /tests/lang/storage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/tests/lang/storage.c -------------------------------------------------------------------------------- /tests/lang/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/tests/lang/string.c -------------------------------------------------------------------------------- /tests/lang/struct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/tests/lang/struct.c -------------------------------------------------------------------------------- /tests/lang/switch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/tests/lang/switch.c -------------------------------------------------------------------------------- /tests/lang/typedef.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/tests/lang/typedef.c -------------------------------------------------------------------------------- /tests/lang/typeof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/tests/lang/typeof.c -------------------------------------------------------------------------------- /tests/lang/unary.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/tests/lang/unary.c -------------------------------------------------------------------------------- /tests/lang/union.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/tests/lang/union.c -------------------------------------------------------------------------------- /tests/lang/ux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/tests/lang/ux.c -------------------------------------------------------------------------------- /tests/lang/var.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/tests/lang/var.c -------------------------------------------------------------------------------- /tests/lang/variadic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/tests/lang/variadic.c -------------------------------------------------------------------------------- /tests/lang/while.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/tests/lang/while.c -------------------------------------------------------------------------------- /tests/pass/simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/tests/pass/simple.c -------------------------------------------------------------------------------- /tests/test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/tests/test.h -------------------------------------------------------------------------------- /tests/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/tests/test.sh -------------------------------------------------------------------------------- /third_party/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/CMakeLists.txt -------------------------------------------------------------------------------- /third_party/fmt/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/.clang-format -------------------------------------------------------------------------------- /third_party/fmt/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/CMakeLists.txt -------------------------------------------------------------------------------- /third_party/fmt/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/CONTRIBUTING.md -------------------------------------------------------------------------------- /third_party/fmt/ChangeLog.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/ChangeLog.rst -------------------------------------------------------------------------------- /third_party/fmt/LICENSE.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/LICENSE.rst -------------------------------------------------------------------------------- /third_party/fmt/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/README.rst -------------------------------------------------------------------------------- /third_party/fmt/doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/doc/CMakeLists.txt -------------------------------------------------------------------------------- /third_party/fmt/doc/_static/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/doc/_static/bootstrap.min.js -------------------------------------------------------------------------------- /third_party/fmt/doc/_static/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/doc/_static/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /third_party/fmt/doc/_static/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/doc/_static/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /third_party/fmt/doc/_static/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/doc/_static/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /third_party/fmt/doc/_static/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/doc/_static/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /third_party/fmt/doc/_templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/doc/_templates/layout.html -------------------------------------------------------------------------------- /third_party/fmt/doc/_templates/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/doc/_templates/search.html -------------------------------------------------------------------------------- /third_party/fmt/doc/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/doc/api.rst -------------------------------------------------------------------------------- /third_party/fmt/doc/basic-bootstrap/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/doc/basic-bootstrap/README -------------------------------------------------------------------------------- /third_party/fmt/doc/basic-bootstrap/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/doc/basic-bootstrap/layout.html -------------------------------------------------------------------------------- /third_party/fmt/doc/basic-bootstrap/theme.conf: -------------------------------------------------------------------------------- 1 | [theme] 2 | inherit = basic 3 | -------------------------------------------------------------------------------- /third_party/fmt/doc/bootstrap/alerts.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/doc/bootstrap/alerts.less -------------------------------------------------------------------------------- /third_party/fmt/doc/bootstrap/badges.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/doc/bootstrap/badges.less -------------------------------------------------------------------------------- /third_party/fmt/doc/bootstrap/bootstrap.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/doc/bootstrap/bootstrap.less -------------------------------------------------------------------------------- /third_party/fmt/doc/bootstrap/breadcrumbs.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/doc/bootstrap/breadcrumbs.less -------------------------------------------------------------------------------- /third_party/fmt/doc/bootstrap/button-groups.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/doc/bootstrap/button-groups.less -------------------------------------------------------------------------------- /third_party/fmt/doc/bootstrap/buttons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/doc/bootstrap/buttons.less -------------------------------------------------------------------------------- /third_party/fmt/doc/bootstrap/carousel.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/doc/bootstrap/carousel.less -------------------------------------------------------------------------------- /third_party/fmt/doc/bootstrap/close.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/doc/bootstrap/close.less -------------------------------------------------------------------------------- /third_party/fmt/doc/bootstrap/code.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/doc/bootstrap/code.less -------------------------------------------------------------------------------- /third_party/fmt/doc/bootstrap/component-animations.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/doc/bootstrap/component-animations.less -------------------------------------------------------------------------------- /third_party/fmt/doc/bootstrap/dropdowns.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/doc/bootstrap/dropdowns.less -------------------------------------------------------------------------------- /third_party/fmt/doc/bootstrap/forms.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/doc/bootstrap/forms.less -------------------------------------------------------------------------------- /third_party/fmt/doc/bootstrap/glyphicons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/doc/bootstrap/glyphicons.less -------------------------------------------------------------------------------- /third_party/fmt/doc/bootstrap/grid.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/doc/bootstrap/grid.less -------------------------------------------------------------------------------- /third_party/fmt/doc/bootstrap/input-groups.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/doc/bootstrap/input-groups.less -------------------------------------------------------------------------------- /third_party/fmt/doc/bootstrap/jumbotron.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/doc/bootstrap/jumbotron.less -------------------------------------------------------------------------------- /third_party/fmt/doc/bootstrap/labels.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/doc/bootstrap/labels.less -------------------------------------------------------------------------------- /third_party/fmt/doc/bootstrap/list-group.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/doc/bootstrap/list-group.less -------------------------------------------------------------------------------- /third_party/fmt/doc/bootstrap/media.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/doc/bootstrap/media.less -------------------------------------------------------------------------------- /third_party/fmt/doc/bootstrap/mixins.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/doc/bootstrap/mixins.less -------------------------------------------------------------------------------- /third_party/fmt/doc/bootstrap/mixins/alerts.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/doc/bootstrap/mixins/alerts.less -------------------------------------------------------------------------------- /third_party/fmt/doc/bootstrap/mixins/background-variant.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/doc/bootstrap/mixins/background-variant.less -------------------------------------------------------------------------------- /third_party/fmt/doc/bootstrap/mixins/border-radius.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/doc/bootstrap/mixins/border-radius.less -------------------------------------------------------------------------------- /third_party/fmt/doc/bootstrap/mixins/buttons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/doc/bootstrap/mixins/buttons.less -------------------------------------------------------------------------------- /third_party/fmt/doc/bootstrap/mixins/center-block.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/doc/bootstrap/mixins/center-block.less -------------------------------------------------------------------------------- /third_party/fmt/doc/bootstrap/mixins/clearfix.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/doc/bootstrap/mixins/clearfix.less -------------------------------------------------------------------------------- /third_party/fmt/doc/bootstrap/mixins/forms.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/doc/bootstrap/mixins/forms.less -------------------------------------------------------------------------------- /third_party/fmt/doc/bootstrap/mixins/gradients.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/doc/bootstrap/mixins/gradients.less -------------------------------------------------------------------------------- /third_party/fmt/doc/bootstrap/mixins/grid-framework.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/doc/bootstrap/mixins/grid-framework.less -------------------------------------------------------------------------------- /third_party/fmt/doc/bootstrap/mixins/grid.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/doc/bootstrap/mixins/grid.less -------------------------------------------------------------------------------- /third_party/fmt/doc/bootstrap/mixins/hide-text.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/doc/bootstrap/mixins/hide-text.less -------------------------------------------------------------------------------- /third_party/fmt/doc/bootstrap/mixins/image.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/doc/bootstrap/mixins/image.less -------------------------------------------------------------------------------- /third_party/fmt/doc/bootstrap/mixins/labels.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/doc/bootstrap/mixins/labels.less -------------------------------------------------------------------------------- /third_party/fmt/doc/bootstrap/mixins/list-group.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/doc/bootstrap/mixins/list-group.less -------------------------------------------------------------------------------- /third_party/fmt/doc/bootstrap/mixins/nav-divider.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/doc/bootstrap/mixins/nav-divider.less -------------------------------------------------------------------------------- /third_party/fmt/doc/bootstrap/mixins/nav-vertical-align.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/doc/bootstrap/mixins/nav-vertical-align.less -------------------------------------------------------------------------------- /third_party/fmt/doc/bootstrap/mixins/opacity.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/doc/bootstrap/mixins/opacity.less -------------------------------------------------------------------------------- /third_party/fmt/doc/bootstrap/mixins/pagination.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/doc/bootstrap/mixins/pagination.less -------------------------------------------------------------------------------- /third_party/fmt/doc/bootstrap/mixins/panels.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/doc/bootstrap/mixins/panels.less -------------------------------------------------------------------------------- /third_party/fmt/doc/bootstrap/mixins/progress-bar.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/doc/bootstrap/mixins/progress-bar.less -------------------------------------------------------------------------------- /third_party/fmt/doc/bootstrap/mixins/reset-filter.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/doc/bootstrap/mixins/reset-filter.less -------------------------------------------------------------------------------- /third_party/fmt/doc/bootstrap/mixins/resize.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/doc/bootstrap/mixins/resize.less -------------------------------------------------------------------------------- /third_party/fmt/doc/bootstrap/mixins/responsive-visibility.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/doc/bootstrap/mixins/responsive-visibility.less -------------------------------------------------------------------------------- /third_party/fmt/doc/bootstrap/mixins/size.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/doc/bootstrap/mixins/size.less -------------------------------------------------------------------------------- /third_party/fmt/doc/bootstrap/mixins/tab-focus.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/doc/bootstrap/mixins/tab-focus.less -------------------------------------------------------------------------------- /third_party/fmt/doc/bootstrap/mixins/table-row.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/doc/bootstrap/mixins/table-row.less -------------------------------------------------------------------------------- /third_party/fmt/doc/bootstrap/mixins/text-emphasis.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/doc/bootstrap/mixins/text-emphasis.less -------------------------------------------------------------------------------- /third_party/fmt/doc/bootstrap/mixins/text-overflow.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/doc/bootstrap/mixins/text-overflow.less -------------------------------------------------------------------------------- /third_party/fmt/doc/bootstrap/mixins/vendor-prefixes.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/doc/bootstrap/mixins/vendor-prefixes.less -------------------------------------------------------------------------------- /third_party/fmt/doc/bootstrap/modals.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/doc/bootstrap/modals.less -------------------------------------------------------------------------------- /third_party/fmt/doc/bootstrap/navbar.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/doc/bootstrap/navbar.less -------------------------------------------------------------------------------- /third_party/fmt/doc/bootstrap/navs.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/doc/bootstrap/navs.less -------------------------------------------------------------------------------- /third_party/fmt/doc/bootstrap/normalize.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/doc/bootstrap/normalize.less -------------------------------------------------------------------------------- /third_party/fmt/doc/bootstrap/pager.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/doc/bootstrap/pager.less -------------------------------------------------------------------------------- /third_party/fmt/doc/bootstrap/pagination.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/doc/bootstrap/pagination.less -------------------------------------------------------------------------------- /third_party/fmt/doc/bootstrap/panels.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/doc/bootstrap/panels.less -------------------------------------------------------------------------------- /third_party/fmt/doc/bootstrap/popovers.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/doc/bootstrap/popovers.less -------------------------------------------------------------------------------- /third_party/fmt/doc/bootstrap/print.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/doc/bootstrap/print.less -------------------------------------------------------------------------------- /third_party/fmt/doc/bootstrap/progress-bars.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/doc/bootstrap/progress-bars.less -------------------------------------------------------------------------------- /third_party/fmt/doc/bootstrap/responsive-embed.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/doc/bootstrap/responsive-embed.less -------------------------------------------------------------------------------- /third_party/fmt/doc/bootstrap/responsive-utilities.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/doc/bootstrap/responsive-utilities.less -------------------------------------------------------------------------------- /third_party/fmt/doc/bootstrap/scaffolding.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/doc/bootstrap/scaffolding.less -------------------------------------------------------------------------------- /third_party/fmt/doc/bootstrap/tables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/doc/bootstrap/tables.less -------------------------------------------------------------------------------- /third_party/fmt/doc/bootstrap/theme.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/doc/bootstrap/theme.less -------------------------------------------------------------------------------- /third_party/fmt/doc/bootstrap/thumbnails.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/doc/bootstrap/thumbnails.less -------------------------------------------------------------------------------- /third_party/fmt/doc/bootstrap/tooltip.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/doc/bootstrap/tooltip.less -------------------------------------------------------------------------------- /third_party/fmt/doc/bootstrap/type.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/doc/bootstrap/type.less -------------------------------------------------------------------------------- /third_party/fmt/doc/bootstrap/utilities.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/doc/bootstrap/utilities.less -------------------------------------------------------------------------------- /third_party/fmt/doc/bootstrap/variables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/doc/bootstrap/variables.less -------------------------------------------------------------------------------- /third_party/fmt/doc/bootstrap/wells.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/doc/bootstrap/wells.less -------------------------------------------------------------------------------- /third_party/fmt/doc/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/doc/build.py -------------------------------------------------------------------------------- /third_party/fmt/doc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/doc/conf.py -------------------------------------------------------------------------------- /third_party/fmt/doc/contents.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/doc/contents.rst -------------------------------------------------------------------------------- /third_party/fmt/doc/fmt.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/doc/fmt.less -------------------------------------------------------------------------------- /third_party/fmt/doc/html/_sources/api.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/doc/html/_sources/api.rst.txt -------------------------------------------------------------------------------- /third_party/fmt/doc/html/_sources/contents.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/doc/html/_sources/contents.rst.txt -------------------------------------------------------------------------------- /third_party/fmt/doc/html/_sources/index.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/doc/html/_sources/index.rst.txt -------------------------------------------------------------------------------- /third_party/fmt/doc/html/_sources/syntax.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/doc/html/_sources/syntax.rst.txt -------------------------------------------------------------------------------- /third_party/fmt/doc/html/_sources/usage.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/doc/html/_sources/usage.rst.txt -------------------------------------------------------------------------------- /third_party/fmt/doc/html/_static/basic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/doc/html/_static/basic.css -------------------------------------------------------------------------------- /third_party/fmt/doc/html/_static/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/doc/html/_static/bootstrap.min.js -------------------------------------------------------------------------------- /third_party/fmt/doc/html/_static/doctools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/doc/html/_static/doctools.js -------------------------------------------------------------------------------- /third_party/fmt/doc/html/_static/documentation_options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/doc/html/_static/documentation_options.js -------------------------------------------------------------------------------- /third_party/fmt/doc/html/_static/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/doc/html/_static/file.png -------------------------------------------------------------------------------- /third_party/fmt/doc/html/_static/fmt.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/doc/html/_static/fmt.css -------------------------------------------------------------------------------- /third_party/fmt/doc/html/_static/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/doc/html/_static/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /third_party/fmt/doc/html/_static/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/doc/html/_static/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /third_party/fmt/doc/html/_static/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/doc/html/_static/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /third_party/fmt/doc/html/_static/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/doc/html/_static/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /third_party/fmt/doc/html/_static/jquery-3.5.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/doc/html/_static/jquery-3.5.1.js -------------------------------------------------------------------------------- /third_party/fmt/doc/html/_static/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/doc/html/_static/jquery.js -------------------------------------------------------------------------------- /third_party/fmt/doc/html/_static/language_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/doc/html/_static/language_data.js -------------------------------------------------------------------------------- /third_party/fmt/doc/html/_static/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/doc/html/_static/minus.png -------------------------------------------------------------------------------- /third_party/fmt/doc/html/_static/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/doc/html/_static/plus.png -------------------------------------------------------------------------------- /third_party/fmt/doc/html/_static/pygments.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/doc/html/_static/pygments.css -------------------------------------------------------------------------------- /third_party/fmt/doc/html/_static/searchtools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/doc/html/_static/searchtools.js -------------------------------------------------------------------------------- /third_party/fmt/doc/html/_static/underscore-1.3.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/doc/html/_static/underscore-1.3.1.js -------------------------------------------------------------------------------- /third_party/fmt/doc/html/_static/underscore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/doc/html/_static/underscore.js -------------------------------------------------------------------------------- /third_party/fmt/doc/html/api.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/doc/html/api.html -------------------------------------------------------------------------------- /third_party/fmt/doc/html/contents.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/doc/html/contents.html -------------------------------------------------------------------------------- /third_party/fmt/doc/html/genindex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/doc/html/genindex.html -------------------------------------------------------------------------------- /third_party/fmt/doc/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/doc/html/index.html -------------------------------------------------------------------------------- /third_party/fmt/doc/html/objects.inv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/doc/html/objects.inv -------------------------------------------------------------------------------- /third_party/fmt/doc/html/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/doc/html/search.html -------------------------------------------------------------------------------- /third_party/fmt/doc/html/searchindex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/doc/html/searchindex.js -------------------------------------------------------------------------------- /third_party/fmt/doc/html/syntax.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/doc/html/syntax.html -------------------------------------------------------------------------------- /third_party/fmt/doc/html/usage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/doc/html/usage.html -------------------------------------------------------------------------------- /third_party/fmt/doc/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/doc/index.rst -------------------------------------------------------------------------------- /third_party/fmt/doc/python-license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/doc/python-license.txt -------------------------------------------------------------------------------- /third_party/fmt/doc/syntax.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/doc/syntax.rst -------------------------------------------------------------------------------- /third_party/fmt/doc/usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/doc/usage.rst -------------------------------------------------------------------------------- /third_party/fmt/include/fmt/args.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/include/fmt/args.h -------------------------------------------------------------------------------- /third_party/fmt/include/fmt/chrono.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/include/fmt/chrono.h -------------------------------------------------------------------------------- /third_party/fmt/include/fmt/color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/include/fmt/color.h -------------------------------------------------------------------------------- /third_party/fmt/include/fmt/compile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/include/fmt/compile.h -------------------------------------------------------------------------------- /third_party/fmt/include/fmt/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/include/fmt/core.h -------------------------------------------------------------------------------- /third_party/fmt/include/fmt/format-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/include/fmt/format-inl.h -------------------------------------------------------------------------------- /third_party/fmt/include/fmt/format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/include/fmt/format.h -------------------------------------------------------------------------------- /third_party/fmt/include/fmt/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/include/fmt/os.h -------------------------------------------------------------------------------- /third_party/fmt/include/fmt/ostream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/include/fmt/ostream.h -------------------------------------------------------------------------------- /third_party/fmt/include/fmt/printf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/include/fmt/printf.h -------------------------------------------------------------------------------- /third_party/fmt/include/fmt/ranges.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/include/fmt/ranges.h -------------------------------------------------------------------------------- /third_party/fmt/include/fmt/std.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/include/fmt/std.h -------------------------------------------------------------------------------- /third_party/fmt/include/fmt/xchar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/include/fmt/xchar.h -------------------------------------------------------------------------------- /third_party/fmt/src/fmt.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/src/fmt.cc -------------------------------------------------------------------------------- /third_party/fmt/src/format.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/src/format.cc -------------------------------------------------------------------------------- /third_party/fmt/src/os.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/src/os.cc -------------------------------------------------------------------------------- /third_party/fmt/support/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/support/Android.mk -------------------------------------------------------------------------------- /third_party/fmt/support/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /third_party/fmt/support/C++.sublime-syntax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/support/C++.sublime-syntax -------------------------------------------------------------------------------- /third_party/fmt/support/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/support/README -------------------------------------------------------------------------------- /third_party/fmt/support/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/support/Vagrantfile -------------------------------------------------------------------------------- /third_party/fmt/support/bazel/.bazelrc: -------------------------------------------------------------------------------- 1 | build --symlink_prefix=/ # Out of source build 2 | -------------------------------------------------------------------------------- /third_party/fmt/support/bazel/.bazelversion: -------------------------------------------------------------------------------- 1 | 5.1.1 2 | -------------------------------------------------------------------------------- /third_party/fmt/support/bazel/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/support/bazel/BUILD.bazel -------------------------------------------------------------------------------- /third_party/fmt/support/bazel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/support/bazel/README.md -------------------------------------------------------------------------------- /third_party/fmt/support/bazel/WORKSPACE.bazel: -------------------------------------------------------------------------------- 1 | workspace(name = "fmt") 2 | -------------------------------------------------------------------------------- /third_party/fmt/support/build-docs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/support/build-docs.py -------------------------------------------------------------------------------- /third_party/fmt/support/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/support/build.gradle -------------------------------------------------------------------------------- /third_party/fmt/support/cmake/FindSetEnv.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/support/cmake/FindSetEnv.cmake -------------------------------------------------------------------------------- /third_party/fmt/support/cmake/JoinPaths.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/support/cmake/JoinPaths.cmake -------------------------------------------------------------------------------- /third_party/fmt/support/cmake/cxx14.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/support/cmake/cxx14.cmake -------------------------------------------------------------------------------- /third_party/fmt/support/cmake/fmt-config.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/support/cmake/fmt-config.cmake.in -------------------------------------------------------------------------------- /third_party/fmt/support/cmake/fmt.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/support/cmake/fmt.pc.in -------------------------------------------------------------------------------- /third_party/fmt/support/compute-powers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/support/compute-powers.py -------------------------------------------------------------------------------- /third_party/fmt/support/docopt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/support/docopt.py -------------------------------------------------------------------------------- /third_party/fmt/support/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/support/manage.py -------------------------------------------------------------------------------- /third_party/fmt/support/printable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/support/printable.py -------------------------------------------------------------------------------- /third_party/fmt/support/rst2md.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/support/rst2md.py -------------------------------------------------------------------------------- /third_party/fmt/support/rtd/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/support/rtd/conf.py -------------------------------------------------------------------------------- /third_party/fmt/support/rtd/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/support/rtd/index.rst -------------------------------------------------------------------------------- /third_party/fmt/support/rtd/theme/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/support/rtd/theme/layout.html -------------------------------------------------------------------------------- /third_party/fmt/support/rtd/theme/theme.conf: -------------------------------------------------------------------------------- 1 | [theme] 2 | inherit = basic 3 | -------------------------------------------------------------------------------- /third_party/fmt/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/test/CMakeLists.txt -------------------------------------------------------------------------------- /third_party/fmt/test/add-subdirectory-test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/test/add-subdirectory-test/CMakeLists.txt -------------------------------------------------------------------------------- /third_party/fmt/test/add-subdirectory-test/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/test/add-subdirectory-test/main.cc -------------------------------------------------------------------------------- /third_party/fmt/test/args-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/test/args-test.cc -------------------------------------------------------------------------------- /third_party/fmt/test/assert-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/test/assert-test.cc -------------------------------------------------------------------------------- /third_party/fmt/test/chrono-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/test/chrono-test.cc -------------------------------------------------------------------------------- /third_party/fmt/test/color-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/test/color-test.cc -------------------------------------------------------------------------------- /third_party/fmt/test/compile-error-test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/test/compile-error-test/CMakeLists.txt -------------------------------------------------------------------------------- /third_party/fmt/test/compile-fp-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/test/compile-fp-test.cc -------------------------------------------------------------------------------- /third_party/fmt/test/compile-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/test/compile-test.cc -------------------------------------------------------------------------------- /third_party/fmt/test/core-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/test/core-test.cc -------------------------------------------------------------------------------- /third_party/fmt/test/cuda-test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/test/cuda-test/CMakeLists.txt -------------------------------------------------------------------------------- /third_party/fmt/test/cuda-test/cpp14.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/test/cuda-test/cpp14.cc -------------------------------------------------------------------------------- /third_party/fmt/test/cuda-test/cuda-cpp14.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/test/cuda-test/cuda-cpp14.cu -------------------------------------------------------------------------------- /third_party/fmt/test/detect-stdfs.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/test/detect-stdfs.cc -------------------------------------------------------------------------------- /third_party/fmt/test/enforce-checks-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/test/enforce-checks-test.cc -------------------------------------------------------------------------------- /third_party/fmt/test/find-package-test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/test/find-package-test/CMakeLists.txt -------------------------------------------------------------------------------- /third_party/fmt/test/find-package-test/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/test/find-package-test/main.cc -------------------------------------------------------------------------------- /third_party/fmt/test/format-impl-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/test/format-impl-test.cc -------------------------------------------------------------------------------- /third_party/fmt/test/format-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/test/format-test.cc -------------------------------------------------------------------------------- /third_party/fmt/test/fuzzing/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/test/fuzzing/CMakeLists.txt -------------------------------------------------------------------------------- /third_party/fmt/test/fuzzing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/test/fuzzing/README.md -------------------------------------------------------------------------------- /third_party/fmt/test/fuzzing/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/test/fuzzing/build.sh -------------------------------------------------------------------------------- /third_party/fmt/test/fuzzing/chrono-duration.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/test/fuzzing/chrono-duration.cc -------------------------------------------------------------------------------- /third_party/fmt/test/fuzzing/chrono-timepoint.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/test/fuzzing/chrono-timepoint.cc -------------------------------------------------------------------------------- /third_party/fmt/test/fuzzing/float.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/test/fuzzing/float.cc -------------------------------------------------------------------------------- /third_party/fmt/test/fuzzing/fuzzer-common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/test/fuzzing/fuzzer-common.h -------------------------------------------------------------------------------- /third_party/fmt/test/fuzzing/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/test/fuzzing/main.cc -------------------------------------------------------------------------------- /third_party/fmt/test/fuzzing/named-arg.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/test/fuzzing/named-arg.cc -------------------------------------------------------------------------------- /third_party/fmt/test/fuzzing/one-arg.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/test/fuzzing/one-arg.cc -------------------------------------------------------------------------------- /third_party/fmt/test/fuzzing/two-args.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/test/fuzzing/two-args.cc -------------------------------------------------------------------------------- /third_party/fmt/test/gtest-extra-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/test/gtest-extra-test.cc -------------------------------------------------------------------------------- /third_party/fmt/test/gtest-extra.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/test/gtest-extra.cc -------------------------------------------------------------------------------- /third_party/fmt/test/gtest-extra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/test/gtest-extra.h -------------------------------------------------------------------------------- /third_party/fmt/test/gtest/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/test/gtest/.clang-format -------------------------------------------------------------------------------- /third_party/fmt/test/gtest/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/test/gtest/CMakeLists.txt -------------------------------------------------------------------------------- /third_party/fmt/test/gtest/gmock-gtest-all.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/test/gtest/gmock-gtest-all.cc -------------------------------------------------------------------------------- /third_party/fmt/test/gtest/gmock/gmock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/test/gtest/gmock/gmock.h -------------------------------------------------------------------------------- /third_party/fmt/test/gtest/gtest/gtest-spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/test/gtest/gtest/gtest-spi.h -------------------------------------------------------------------------------- /third_party/fmt/test/gtest/gtest/gtest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/test/gtest/gtest/gtest.h -------------------------------------------------------------------------------- /third_party/fmt/test/header-only-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/test/header-only-test.cc -------------------------------------------------------------------------------- /third_party/fmt/test/mock-allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/test/mock-allocator.h -------------------------------------------------------------------------------- /third_party/fmt/test/module-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/test/module-test.cc -------------------------------------------------------------------------------- /third_party/fmt/test/noexception-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/test/noexception-test.cc -------------------------------------------------------------------------------- /third_party/fmt/test/os-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/test/os-test.cc -------------------------------------------------------------------------------- /third_party/fmt/test/ostream-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/test/ostream-test.cc -------------------------------------------------------------------------------- /third_party/fmt/test/posix-mock-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/test/posix-mock-test.cc -------------------------------------------------------------------------------- /third_party/fmt/test/posix-mock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/test/posix-mock.h -------------------------------------------------------------------------------- /third_party/fmt/test/printf-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/test/printf-test.cc -------------------------------------------------------------------------------- /third_party/fmt/test/ranges-odr-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/test/ranges-odr-test.cc -------------------------------------------------------------------------------- /third_party/fmt/test/ranges-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/test/ranges-test.cc -------------------------------------------------------------------------------- /third_party/fmt/test/scan-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/test/scan-test.cc -------------------------------------------------------------------------------- /third_party/fmt/test/scan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/test/scan.h -------------------------------------------------------------------------------- /third_party/fmt/test/static-export-test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/test/static-export-test/CMakeLists.txt -------------------------------------------------------------------------------- /third_party/fmt/test/static-export-test/library.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/test/static-export-test/library.cc -------------------------------------------------------------------------------- /third_party/fmt/test/static-export-test/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/test/static-export-test/main.cc -------------------------------------------------------------------------------- /third_party/fmt/test/std-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/test/std-test.cc -------------------------------------------------------------------------------- /third_party/fmt/test/test-assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/test/test-assert.h -------------------------------------------------------------------------------- /third_party/fmt/test/test-main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/test/test-main.cc -------------------------------------------------------------------------------- /third_party/fmt/test/unicode-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/test/unicode-test.cc -------------------------------------------------------------------------------- /third_party/fmt/test/util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/test/util.cc -------------------------------------------------------------------------------- /third_party/fmt/test/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/test/util.h -------------------------------------------------------------------------------- /third_party/fmt/test/xchar-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/fmt/test/xchar-test.cc -------------------------------------------------------------------------------- /third_party/utfcpp/.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/utfcpp/.circleci/config.yml -------------------------------------------------------------------------------- /third_party/utfcpp/.gitignore: -------------------------------------------------------------------------------- 1 | # VS Code: 2 | .vscode/ 3 | # Often used by CMake 4 | build/ -------------------------------------------------------------------------------- /third_party/utfcpp/.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/utfcpp/.gitmodules -------------------------------------------------------------------------------- /third_party/utfcpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/utfcpp/CMakeLists.txt -------------------------------------------------------------------------------- /third_party/utfcpp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/utfcpp/LICENSE -------------------------------------------------------------------------------- /third_party/utfcpp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/utfcpp/README.md -------------------------------------------------------------------------------- /third_party/utfcpp/extern/ftest/.gitignore: -------------------------------------------------------------------------------- 1 | # VS Code: 2 | .vscode/ 3 | # Often used by CMake 4 | build/ 5 | -------------------------------------------------------------------------------- /third_party/utfcpp/extern/ftest/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/utfcpp/extern/ftest/LICENSE -------------------------------------------------------------------------------- /third_party/utfcpp/extern/ftest/README.md: -------------------------------------------------------------------------------- 1 | This is a small and limited testing framework for C++. -------------------------------------------------------------------------------- /third_party/utfcpp/extern/ftest/ftest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/utfcpp/extern/ftest/ftest.h -------------------------------------------------------------------------------- /third_party/utfcpp/extern/ftest/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/utfcpp/extern/ftest/tests/CMakeLists.txt -------------------------------------------------------------------------------- /third_party/utfcpp/extern/ftest/tests/smoke.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/utfcpp/extern/ftest/tests/smoke.cpp -------------------------------------------------------------------------------- /third_party/utfcpp/samples/docsample.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/utfcpp/samples/docsample.cpp -------------------------------------------------------------------------------- /third_party/utfcpp/source/utf8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/utfcpp/source/utf8.h -------------------------------------------------------------------------------- /third_party/utfcpp/source/utf8/checked.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/utfcpp/source/utf8/checked.h -------------------------------------------------------------------------------- /third_party/utfcpp/source/utf8/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/utfcpp/source/utf8/core.h -------------------------------------------------------------------------------- /third_party/utfcpp/source/utf8/cpp11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/utfcpp/source/utf8/cpp11.h -------------------------------------------------------------------------------- /third_party/utfcpp/source/utf8/cpp17.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/utfcpp/source/utf8/cpp17.h -------------------------------------------------------------------------------- /third_party/utfcpp/source/utf8/unchecked.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/utfcpp/source/utf8/unchecked.h -------------------------------------------------------------------------------- /third_party/utfcpp/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/utfcpp/tests/CMakeLists.txt -------------------------------------------------------------------------------- /third_party/utfcpp/tests/apitests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/utfcpp/tests/apitests.cpp -------------------------------------------------------------------------------- /third_party/utfcpp/tests/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/utfcpp/tests/docker/Dockerfile -------------------------------------------------------------------------------- /third_party/utfcpp/tests/negative.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/utfcpp/tests/negative.cpp -------------------------------------------------------------------------------- /third_party/utfcpp/tests/noexceptionstests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/utfcpp/tests/noexceptionstests.cpp -------------------------------------------------------------------------------- /third_party/utfcpp/tests/test_checked_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/utfcpp/tests/test_checked_api.h -------------------------------------------------------------------------------- /third_party/utfcpp/tests/test_checked_iterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/utfcpp/tests/test_checked_iterator.h -------------------------------------------------------------------------------- /third_party/utfcpp/tests/test_cpp11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/utfcpp/tests/test_cpp11.cpp -------------------------------------------------------------------------------- /third_party/utfcpp/tests/test_cpp17.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/utfcpp/tests/test_cpp17.cpp -------------------------------------------------------------------------------- /third_party/utfcpp/tests/test_data/utf8_invalid.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/utfcpp/tests/test_data/utf8_invalid.txt -------------------------------------------------------------------------------- /third_party/utfcpp/tests/test_unchecked_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/utfcpp/tests/test_unchecked_api.h -------------------------------------------------------------------------------- /third_party/utfcpp/tests/test_unchecked_iterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/utfcpp/tests/test_unchecked_iterator.h -------------------------------------------------------------------------------- /third_party/utfcpp/utf8cppConfig.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AinsleySnow/Ginkgo/HEAD/third_party/utfcpp/utf8cppConfig.cmake.in --------------------------------------------------------------------------------