tkvsc-oead 1.4.5__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- tkvsc_oead-1.4.5/CMakeLists.txt +89 -0
- tkvsc_oead-1.4.5/CMakeRC.cmake +617 -0
- tkvsc_oead-1.4.5/LICENSE.md +361 -0
- tkvsc_oead-1.4.5/MANIFEST.in +6 -0
- tkvsc_oead-1.4.5/PKG-INFO +102 -0
- tkvsc_oead-1.4.5/data/aglenv_file_info.json +492 -0
- tkvsc_oead-1.4.5/data/botw_hashed_names.txt +95580 -0
- tkvsc_oead-1.4.5/data/botw_numbered_names.txt +384 -0
- tkvsc_oead-1.4.5/data/botw_resource_factory_info.tsv +56 -0
- tkvsc_oead-1.4.5/lib/EasyIterator/.git +1 -0
- tkvsc_oead-1.4.5/lib/EasyIterator/.travis.yml +70 -0
- tkvsc_oead-1.4.5/lib/EasyIterator/CMakeLists.txt +106 -0
- tkvsc_oead-1.4.5/lib/EasyIterator/README.md +122 -0
- tkvsc_oead-1.4.5/lib/EasyIterator/benchmark/CMakeLists.txt +57 -0
- tkvsc_oead-1.4.5/lib/EasyIterator/benchmark/benchmark.cpp +292 -0
- tkvsc_oead-1.4.5/lib/EasyIterator/cmake/CPM.cmake +183 -0
- tkvsc_oead-1.4.5/lib/EasyIterator/cmake/EasyIteratorConfig.cmake.in +5 -0
- tkvsc_oead-1.4.5/lib/EasyIterator/examples/CMakeLists.txt +24 -0
- tkvsc_oead-1.4.5/lib/EasyIterator/examples/array.cpp +46 -0
- tkvsc_oead-1.4.5/lib/EasyIterator/examples/fibonacci.cpp +37 -0
- tkvsc_oead-1.4.5/lib/EasyIterator/examples/iteration.cpp +28 -0
- tkvsc_oead-1.4.5/lib/EasyIterator/include/easy_iterator.h +455 -0
- tkvsc_oead-1.4.5/lib/EasyIterator/tests/CMakeLists.txt +38 -0
- tkvsc_oead-1.4.5/lib/EasyIterator/tests/easy_iterator.cpp +347 -0
- tkvsc_oead-1.4.5/lib/EasyIterator/tests/main.cpp +3 -0
- tkvsc_oead-1.4.5/lib/abseil/.clang-format +4 -0
- tkvsc_oead-1.4.5/lib/abseil/.git +1 -0
- tkvsc_oead-1.4.5/lib/abseil/.github/ISSUE_TEMPLATE/00-bug_report.yml +53 -0
- tkvsc_oead-1.4.5/lib/abseil/.github/ISSUE_TEMPLATE/config.yml +5 -0
- tkvsc_oead-1.4.5/lib/abseil/.github/PULL_REQUEST_TEMPLATE.md +8 -0
- tkvsc_oead-1.4.5/lib/abseil/.gitignore +17 -0
- tkvsc_oead-1.4.5/lib/abseil/ABSEIL_ISSUE_TEMPLATE.md +22 -0
- tkvsc_oead-1.4.5/lib/abseil/BUILD.bazel +35 -0
- tkvsc_oead-1.4.5/lib/abseil/CMake/AbseilDll.cmake +915 -0
- tkvsc_oead-1.4.5/lib/abseil/CMake/AbseilHelpers.cmake +460 -0
- tkvsc_oead-1.4.5/lib/abseil/CMake/Googletest/CMakeLists.txt.in +14 -0
- tkvsc_oead-1.4.5/lib/abseil/CMake/Googletest/DownloadGTest.cmake +41 -0
- tkvsc_oead-1.4.5/lib/abseil/CMake/README.md +188 -0
- tkvsc_oead-1.4.5/lib/abseil/CMake/abslConfig.cmake.in +8 -0
- tkvsc_oead-1.4.5/lib/abseil/CMake/install_test_project/CMakeLists.txt +25 -0
- tkvsc_oead-1.4.5/lib/abseil/CMake/install_test_project/simple.cc +32 -0
- tkvsc_oead-1.4.5/lib/abseil/CMake/install_test_project/test.sh +113 -0
- tkvsc_oead-1.4.5/lib/abseil/CMakeLists.txt +270 -0
- tkvsc_oead-1.4.5/lib/abseil/CONTRIBUTING.md +141 -0
- tkvsc_oead-1.4.5/lib/abseil/FAQ.md +167 -0
- tkvsc_oead-1.4.5/lib/abseil/MODULE.bazel +46 -0
- tkvsc_oead-1.4.5/lib/abseil/PrivacyInfo.xcprivacy +14 -0
- tkvsc_oead-1.4.5/lib/abseil/README.md +160 -0
- tkvsc_oead-1.4.5/lib/abseil/UPGRADES.md +17 -0
- tkvsc_oead-1.4.5/lib/abseil/WORKSPACE.bzlmod +19 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/BUILD.bazel +62 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/CMakeLists.txt +44 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/abseil.podspec.gen.py +243 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/algorithm/BUILD.bazel +90 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/algorithm/CMakeLists.txt +73 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/algorithm/algorithm.h +64 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/algorithm/algorithm_test.cc +60 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/algorithm/container.h +1830 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/algorithm/container_test.cc +1421 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/base/BUILD.bazel +982 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/base/CMakeLists.txt +823 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/base/attributes.h +1008 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/base/bit_cast_test.cc +109 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/base/c_header_test.c +30 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/base/call_once.h +228 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/base/call_once_test.cc +107 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/base/casts.h +180 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/base/config.h +985 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/base/config_test.cc +60 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/base/const_init.h +76 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/base/dynamic_annotations.h +480 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/base/exception_safety_testing_test.cc +962 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/base/inline_variable_test.cc +64 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/base/inline_variable_test_a.cc +27 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/base/inline_variable_test_b.cc +27 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/base/internal/atomic_hook.h +200 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/base/internal/atomic_hook_test.cc +97 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/base/internal/atomic_hook_test_helper.cc +32 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/base/internal/atomic_hook_test_helper.h +34 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/base/internal/cmake_thread_test.cc +22 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/base/internal/cycleclock.cc +77 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/base/internal/cycleclock.h +144 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/base/internal/cycleclock_config.h +55 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/base/internal/direct_mmap.h +170 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/base/internal/dynamic_annotations.h +398 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/base/internal/endian.h +283 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/base/internal/endian_test.cc +263 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/base/internal/errno_saver.h +43 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/base/internal/errno_saver_test.cc +45 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/base/internal/exception_safety_testing.cc +79 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/base/internal/exception_safety_testing.h +1109 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/base/internal/exception_testing.h +42 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/base/internal/fast_type_id.h +50 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/base/internal/fast_type_id_test.cc +123 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/base/internal/hide_ptr.h +51 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/base/internal/identity.h +39 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/base/internal/inline_variable.h +108 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/base/internal/inline_variable_testing.h +46 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/base/internal/invoke.h +241 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/base/internal/low_level_alloc.cc +631 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/base/internal/low_level_alloc.h +127 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/base/internal/low_level_alloc_test.cc +180 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/base/internal/low_level_scheduling.h +134 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/base/internal/nullability_impl.h +69 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/base/internal/per_thread_tls.h +52 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/base/internal/poison.cc +84 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/base/internal/poison.h +59 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/base/internal/poison_test.cc +41 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/base/internal/pretty_function.h +33 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/base/internal/raw_logging.cc +280 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/base/internal/raw_logging.h +217 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/base/internal/scheduling_mode.h +58 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/base/internal/scoped_set_env.cc +81 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/base/internal/scoped_set_env.h +45 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/base/internal/scoped_set_env_test.cc +99 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/base/internal/spinlock.cc +232 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/base/internal/spinlock.h +275 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/base/internal/spinlock_akaros.inc +35 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/base/internal/spinlock_benchmark.cc +80 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/base/internal/spinlock_linux.inc +71 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/base/internal/spinlock_posix.inc +46 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/base/internal/spinlock_wait.cc +81 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/base/internal/spinlock_wait.h +95 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/base/internal/spinlock_win32.inc +40 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/base/internal/strerror.cc +88 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/base/internal/strerror.h +39 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/base/internal/strerror_benchmark.cc +29 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/base/internal/strerror_test.cc +88 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/base/internal/sysinfo.cc +503 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/base/internal/sysinfo.h +74 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/base/internal/sysinfo_test.cc +88 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/base/internal/thread_identity.cc +163 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/base/internal/thread_identity.h +273 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/base/internal/thread_identity_benchmark.cc +38 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/base/internal/thread_identity_test.cc +129 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/base/internal/throw_delegate.cc +203 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/base/internal/throw_delegate.h +75 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/base/internal/tracing.cc +39 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/base/internal/tracing.h +81 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/base/internal/tracing_strong_test.cc +117 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/base/internal/tracing_weak_test.cc +34 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/base/internal/tsan_mutex_interface.h +68 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/base/internal/unaligned_access.h +89 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/base/internal/unique_small_name_test.cc +77 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/base/internal/unscaledcycleclock.cc +130 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/base/internal/unscaledcycleclock.h +108 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/base/internal/unscaledcycleclock_config.h +62 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/base/invoke_test.cc +331 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/base/log_severity.cc +56 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/base/log_severity.h +185 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/base/log_severity_test.cc +251 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/base/macros.h +220 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/base/no_destructor.h +212 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/base/no_destructor_benchmark.cc +165 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/base/no_destructor_test.cc +209 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/base/nullability.h +306 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/base/nullability_default_nonnull_test.cc +44 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/base/nullability_test.cc +129 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/base/optimization.h +312 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/base/optimization_test.cc +141 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/base/options.h +261 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/base/policy_checks.h +115 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/base/port.h +25 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/base/prefetch.h +209 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/base/prefetch_test.cc +64 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/base/raw_logging_test.cc +83 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/base/spinlock_test_common.cc +285 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/base/thread_annotations.h +333 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/base/throw_delegate_test.cc +175 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/cleanup/BUILD.bazel +73 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/cleanup/CMakeLists.txt +56 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/cleanup/cleanup.h +140 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/cleanup/cleanup_test.cc +311 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/cleanup/internal/cleanup.h +100 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/container/BUILD.bazel +1128 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/container/CMakeLists.txt +1032 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/container/btree_benchmark.cc +764 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/container/btree_map.h +889 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/container/btree_set.h +824 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/container/btree_test.cc +3462 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/container/btree_test.h +166 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/container/fixed_array.h +557 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/container/fixed_array_benchmark.cc +67 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/container/fixed_array_exception_safety_test.cc +201 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/container/fixed_array_test.cc +857 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/container/flat_hash_map.h +687 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/container/flat_hash_map_test.cc +458 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/container/flat_hash_set.h +575 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/container/flat_hash_set_test.cc +357 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/container/hash_container_defaults.h +45 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/container/inlined_vector.h +1016 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/container/inlined_vector_benchmark.cc +829 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/container/inlined_vector_exception_safety_test.cc +508 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/container/inlined_vector_test.cc +2229 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/container/internal/btree.h +3046 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/container/internal/btree_container.h +763 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/container/internal/common.h +207 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/container/internal/common_policy_traits.h +152 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/container/internal/common_policy_traits_test.cc +157 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/container/internal/compressed_tuple.h +271 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/container/internal/compressed_tuple_test.cc +482 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/container/internal/container_memory.h +492 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/container/internal/container_memory_test.cc +318 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/container/internal/hash_function_defaults.h +276 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/container/internal/hash_function_defaults_test.cc +684 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/container/internal/hash_generator_testing.cc +78 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/container/internal/hash_generator_testing.h +182 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/container/internal/hash_policy_testing.h +183 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/container/internal/hash_policy_testing_test.cc +45 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/container/internal/hash_policy_traits.h +207 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/container/internal/hash_policy_traits_test.cc +144 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/container/internal/hashtable_debug.h +102 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/container/internal/hashtable_debug_hooks.h +85 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/container/internal/hashtablez_sampler.cc +300 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/container/internal/hashtablez_sampler.h +275 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/container/internal/hashtablez_sampler_force_weak_definition.cc +31 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/container/internal/hashtablez_sampler_test.cc +518 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/container/internal/inlined_vector.h +1107 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/container/internal/layout.h +844 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/container/internal/layout_benchmark.cc +295 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/container/internal/layout_test.cc +2034 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/container/internal/node_slot_policy.h +95 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/container/internal/node_slot_policy_test.cc +71 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/container/internal/raw_hash_map.h +226 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/container/internal/raw_hash_set.cc +671 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/container/internal/raw_hash_set.h +4332 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/container/internal/raw_hash_set_allocator_test.cc +520 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/container/internal/raw_hash_set_benchmark.cc +687 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/container/internal/raw_hash_set_probe_benchmark.cc +597 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/container/internal/raw_hash_set_test.cc +3751 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/container/internal/test_allocator.h +387 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/container/internal/test_instance_tracker.cc +29 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/container/internal/test_instance_tracker.h +274 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/container/internal/test_instance_tracker_test.cc +184 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/container/internal/tracked.h +83 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/container/internal/unordered_map_constructor_test.h +494 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/container/internal/unordered_map_lookup_test.h +117 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/container/internal/unordered_map_members_test.h +87 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/container/internal/unordered_map_modifiers_test.h +352 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/container/internal/unordered_map_test.cc +50 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/container/internal/unordered_set_constructor_test.h +496 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/container/internal/unordered_set_lookup_test.h +91 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/container/internal/unordered_set_members_test.h +86 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/container/internal/unordered_set_modifiers_test.h +221 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/container/internal/unordered_set_test.cc +41 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/container/node_hash_map.h +682 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/container/node_hash_map_test.cc +351 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/container/node_hash_set.h +573 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/container/node_hash_set_test.cc +189 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/container/sample_element_size_test.cc +123 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/copts/AbseilConfigureCopts.cmake +106 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/copts/GENERATED_AbseilCopts.cmake +235 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/copts/GENERATED_copts.bzl +236 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/copts/configure_copts.bzl +39 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/copts/copts.py +183 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/copts/generate_copts.py +109 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/crc/BUILD.bazel +225 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/crc/CMakeLists.txt +177 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/crc/crc32c.cc +99 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/crc/crc32c.h +190 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/crc/crc32c_benchmark.cc +183 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/crc/crc32c_test.cc +227 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/crc/internal/cpu_detect.cc +342 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/crc/internal/cpu_detect.h +63 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/crc/internal/crc.cc +437 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/crc/internal/crc.h +83 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/crc/internal/crc32_x86_arm_combined_simd.h +300 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/crc/internal/crc32c.h +39 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/crc/internal/crc32c_inline.h +72 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/crc/internal/crc_cord_state.cc +131 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/crc/internal/crc_cord_state.h +159 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/crc/internal/crc_cord_state_test.cc +124 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/crc/internal/crc_internal.h +177 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/crc/internal/crc_memcpy.h +122 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/crc/internal/crc_memcpy_fallback.cc +78 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/crc/internal/crc_memcpy_test.cc +177 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/crc/internal/crc_memcpy_x86_arm_combined.cc +454 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/crc/internal/crc_non_temporal_memcpy.cc +93 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/crc/internal/crc_x86_arm_combined.cc +737 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/crc/internal/non_temporal_arm_intrinsics.h +79 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/crc/internal/non_temporal_memcpy.h +195 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/crc/internal/non_temporal_memcpy_test.cc +90 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/debugging/BUILD.bazel +445 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/debugging/CMakeLists.txt +410 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/debugging/failure_signal_handler.cc +434 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/debugging/failure_signal_handler.h +121 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/debugging/failure_signal_handler_test.cc +166 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/debugging/internal/address_is_readable.cc +98 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/debugging/internal/address_is_readable.h +32 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/debugging/internal/bounded_utf8_length_sequence.h +126 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/debugging/internal/bounded_utf8_length_sequence_test.cc +126 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/debugging/internal/decode_rust_punycode.cc +258 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/debugging/internal/decode_rust_punycode.h +55 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/debugging/internal/decode_rust_punycode_test.cc +606 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/debugging/internal/demangle.cc +2985 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/debugging/internal/demangle.h +76 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/debugging/internal/demangle_rust.cc +925 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/debugging/internal/demangle_rust.h +42 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/debugging/internal/demangle_rust_test.cc +584 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/debugging/internal/demangle_test.cc +2049 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/debugging/internal/elf_mem_image.cc +413 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/debugging/internal/elf_mem_image.h +141 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/debugging/internal/examine_stack.cc +320 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/debugging/internal/examine_stack.h +64 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/debugging/internal/stack_consumption.cc +206 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/debugging/internal/stack_consumption.h +50 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/debugging/internal/stack_consumption_test.cc +50 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/debugging/internal/stacktrace_aarch64-inl.inc +285 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/debugging/internal/stacktrace_arm-inl.inc +139 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/debugging/internal/stacktrace_config.h +95 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/debugging/internal/stacktrace_emscripten-inl.inc +110 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/debugging/internal/stacktrace_generic-inl.inc +108 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/debugging/internal/stacktrace_powerpc-inl.inc +258 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/debugging/internal/stacktrace_riscv-inl.inc +194 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/debugging/internal/stacktrace_unimplemented-inl.inc +24 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/debugging/internal/stacktrace_win32-inl.inc +94 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/debugging/internal/stacktrace_x86-inl.inc +394 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/debugging/internal/symbolize.h +153 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/debugging/internal/utf8_for_code_point.cc +70 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/debugging/internal/utf8_for_code_point.h +47 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/debugging/internal/utf8_for_code_point_test.cc +175 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/debugging/internal/vdso_support.cc +205 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/debugging/internal/vdso_support.h +158 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/debugging/leak_check.cc +73 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/debugging/leak_check.h +150 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/debugging/leak_check_fail_test.cc +41 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/debugging/leak_check_test.cc +41 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/debugging/stacktrace.cc +142 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/debugging/stacktrace.h +231 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/debugging/stacktrace_benchmark.cc +55 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/debugging/stacktrace_test.cc +47 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/debugging/symbolize.cc +44 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/debugging/symbolize.h +99 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/debugging/symbolize_darwin.inc +102 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/debugging/symbolize_elf.inc +1764 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/debugging/symbolize_emscripten.inc +75 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/debugging/symbolize_test.cc +634 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/debugging/symbolize_unimplemented.inc +40 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/debugging/symbolize_win32.inc +82 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/flags/BUILD.bazel +610 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/flags/CMakeLists.txt +478 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/flags/commandlineflag.cc +35 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/flags/commandlineflag.h +218 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/flags/commandlineflag_test.cc +236 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/flags/config.h +68 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/flags/config_test.cc +61 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/flags/declare.h +68 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/flags/flag.h +305 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/flags/flag_benchmark.cc +251 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/flags/flag_benchmark.lds +13 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/flags/flag_test.cc +1381 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/flags/flag_test_defs.cc +24 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/flags/internal/commandlineflag.cc +26 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/flags/internal/commandlineflag.h +68 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/flags/internal/flag.cc +710 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/flags/internal/flag.h +969 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/flags/internal/parse.h +70 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/flags/internal/path_util.h +62 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/flags/internal/path_util_test.cc +46 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/flags/internal/private_handle_accessor.cc +69 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/flags/internal/private_handle_accessor.h +64 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/flags/internal/program_name.cc +61 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/flags/internal/program_name.h +50 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/flags/internal/program_name_test.cc +61 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/flags/internal/registry.h +97 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/flags/internal/sequence_lock.h +187 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/flags/internal/sequence_lock_test.cc +169 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/flags/internal/usage.cc +558 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/flags/internal/usage.h +106 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/flags/internal/usage_test.cc +550 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/flags/marshalling.cc +291 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/flags/marshalling.h +361 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/flags/marshalling_test.cc +1220 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/flags/parse.cc +946 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/flags/parse.h +130 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/flags/parse_test.cc +1094 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/flags/reflection.cc +365 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/flags/reflection.h +90 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/flags/reflection_test.cc +268 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/flags/usage.cc +66 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/flags/usage.h +43 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/flags/usage_config.cc +170 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/flags/usage_config.h +135 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/flags/usage_config_test.cc +205 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/functional/BUILD.bazel +168 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/functional/CMakeLists.txt +138 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/functional/any_invocable.h +334 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/functional/any_invocable_test.cc +1719 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/functional/bind_front.h +194 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/functional/bind_front_test.cc +227 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/functional/function_ref.h +151 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/functional/function_ref_test.cc +293 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/functional/function_type_benchmark.cc +176 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/functional/internal/any_invocable.h +891 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/functional/internal/front_binder.h +95 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/functional/internal/function_ref.h +116 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/functional/overload.h +92 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/functional/overload_test.cc +213 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/hash/BUILD.bazel +212 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/hash/CMakeLists.txt +181 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/hash/hash.h +448 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/hash/hash_benchmark.cc +384 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/hash/hash_instantiated_test.cc +224 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/hash/hash_test.cc +1216 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/hash/hash_testing.h +380 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/hash/internal/city.cc +349 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/hash/internal/city.h +78 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/hash/internal/city_test.cc +597 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/hash/internal/hash.cc +69 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/hash/internal/hash.h +1490 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/hash/internal/hash_test.h +87 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/hash/internal/low_level_hash.cc +148 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/hash/internal/low_level_hash.h +54 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/hash/internal/low_level_hash_test.cc +532 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/hash/internal/print_hash_of.cc +23 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/hash/internal/spy_hash_state.h +274 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/log/BUILD.bazel +680 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/log/CMakeLists.txt +1198 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/log/absl_check.h +117 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/log/absl_check_test.cc +58 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/log/absl_log.h +115 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/log/absl_log_basic_test.cc +22 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/log/absl_vlog_is_on.h +95 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/log/check.h +209 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/log/check_test.cc +58 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/log/check_test_impl.inc +686 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/log/die_if_null.cc +32 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/log/die_if_null.h +76 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/log/die_if_null_test.cc +107 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/log/flags.cc +143 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/log/flags.h +43 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/log/flags_test.cc +188 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/log/globals.cc +178 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/log/globals.h +231 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/log/globals_test.cc +156 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/log/initialize.cc +38 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/log/initialize.h +45 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/log/internal/BUILD.bazel +547 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/log/internal/append_truncated.h +47 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/log/internal/check_impl.h +150 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/log/internal/check_op.cc +143 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/log/internal/check_op.h +484 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/log/internal/conditions.cc +83 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/log/internal/conditions.h +239 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/log/internal/config.h +45 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/log/internal/flags.h +59 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/log/internal/fnmatch.cc +73 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/log/internal/fnmatch.h +35 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/log/internal/fnmatch_benchmark.cc +29 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/log/internal/fnmatch_test.cc +59 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/log/internal/globals.cc +145 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/log/internal/globals.h +101 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/log/internal/log_format.cc +205 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/log/internal/log_format.h +78 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/log/internal/log_impl.h +282 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/log/internal/log_message.cc +742 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/log/internal/log_message.h +426 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/log/internal/log_sink_set.cc +296 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/log/internal/log_sink_set.h +54 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/log/internal/nullguard.cc +35 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/log/internal/nullguard.h +88 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/log/internal/nullstream.h +127 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/log/internal/proto.cc +217 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/log/internal/proto.h +298 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/log/internal/stderr_log_sink_test.cc +105 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/log/internal/strip.h +108 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/log/internal/structured.h +164 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/log/internal/structured_proto.cc +115 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/log/internal/structured_proto.h +107 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/log/internal/structured_proto_test.cc +120 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/log/internal/test_actions.cc +75 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/log/internal/test_actions.h +90 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/log/internal/test_helpers.cc +82 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/log/internal/test_helpers.h +71 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/log/internal/test_matchers.cc +216 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/log/internal/test_matchers.h +94 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/log/internal/vlog_config.cc +347 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/log/internal/vlog_config.h +163 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/log/internal/vlog_config_benchmark.cc +187 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/log/internal/voidify.h +44 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/log/log.h +365 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/log/log_basic_test.cc +22 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/log/log_basic_test_impl.inc +609 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/log/log_benchmark.cc +164 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/log/log_entry.cc +41 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/log/log_entry.h +221 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/log/log_entry_test.cc +468 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/log/log_format_test.cc +1855 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/log/log_macro_hygiene_test.cc +187 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/log/log_modifier_methods_test.cc +224 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/log/log_sink.cc +23 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/log/log_sink.h +71 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/log/log_sink_registry.h +64 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/log/log_sink_test.cc +418 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/log/log_streamer.h +181 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/log/log_streamer_test.cc +438 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/log/scoped_mock_log.cc +86 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/log/scoped_mock_log.h +197 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/log/scoped_mock_log_test.cc +295 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/log/stripping_test.cc +502 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/log/structured.h +75 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/log/structured_test.cc +63 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/log/vlog_is_on.h +74 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/log/vlog_is_on_test.cc +233 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/memory/BUILD.bazel +60 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/memory/CMakeLists.txt +41 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/memory/memory.h +278 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/memory/memory_test.cc +222 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/meta/BUILD.bazel +59 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/meta/CMakeLists.txt +54 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/meta/type_traits.h +670 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/meta/type_traits_test.cc +841 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/numeric/BUILD.bazel +141 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/numeric/CMakeLists.txt +102 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/numeric/bits.h +196 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/numeric/bits_benchmark.cc +73 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/numeric/bits_test.cc +641 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/numeric/int128.cc +396 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/numeric/int128.h +1204 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/numeric/int128_benchmark.cc +282 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/numeric/int128_have_intrinsic.inc +309 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/numeric/int128_no_intrinsic.inc +349 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/numeric/int128_stream_test.cc +1400 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/numeric/int128_test.cc +1355 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/numeric/internal/bits.h +362 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/numeric/internal/representation.h +55 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/profiling/BUILD.bazel +140 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/profiling/CMakeLists.txt +93 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/profiling/internal/exponential_biased.cc +93 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/profiling/internal/exponential_biased.h +130 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/profiling/internal/exponential_biased_test.cc +203 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/profiling/internal/periodic_sampler.cc +53 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/profiling/internal/periodic_sampler.h +211 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/profiling/internal/periodic_sampler_benchmark.cc +79 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/profiling/internal/periodic_sampler_test.cc +177 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/profiling/internal/sample_recorder.h +253 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/profiling/internal/sample_recorder_test.cc +184 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/random/BUILD.bazel +548 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/random/CMakeLists.txt +1249 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/random/benchmarks.cc +383 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/random/bernoulli_distribution.h +202 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/random/bernoulli_distribution_test.cc +217 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/random/beta_distribution.h +429 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/random/beta_distribution_test.cc +615 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/random/bit_gen_ref.h +188 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/random/bit_gen_ref_test.cc +102 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/random/discrete_distribution.cc +108 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/random/discrete_distribution.h +249 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/random/discrete_distribution_test.cc +251 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/random/distributions.h +452 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/random/distributions_test.cc +516 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/random/examples_test.cc +98 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/random/exponential_distribution.h +166 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/random/exponential_distribution_test.cc +426 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/random/gaussian_distribution.cc +104 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/random/gaussian_distribution.h +276 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/random/gaussian_distribution_test.cc +561 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/random/generators_test.cc +185 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/random/internal/BUILD.bazel +864 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/random/internal/chi_square.cc +230 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/random/internal/chi_square.h +89 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/random/internal/chi_square_test.cc +364 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/random/internal/distribution_caller.h +97 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/random/internal/distribution_test_util.cc +418 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/random/internal/distribution_test_util.h +113 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/random/internal/distribution_test_util_test.cc +193 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/random/internal/explicit_seed_seq.h +92 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/random/internal/explicit_seed_seq_test.cc +241 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/random/internal/fast_uniform_bits.h +271 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/random/internal/fast_uniform_bits_test.cc +336 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/random/internal/fastmath.h +57 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/random/internal/fastmath_test.cc +97 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/random/internal/gaussian_distribution_gentables.cc +142 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/random/internal/generate_real.h +144 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/random/internal/generate_real_test.cc +496 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/random/internal/iostream_state_saver.h +248 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/random/internal/iostream_state_saver_test.cc +373 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/random/internal/mock_helpers.h +161 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/random/internal/mock_overload_set.h +122 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/random/internal/mock_validators.h +98 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/random/internal/nanobenchmark.cc +804 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/random/internal/nanobenchmark.h +172 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/random/internal/nanobenchmark_test.cc +79 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/random/internal/nonsecure_base.h +161 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/random/internal/nonsecure_base_test.cc +228 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/random/internal/pcg_engine.h +287 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/random/internal/pcg_engine_test.cc +638 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/random/internal/platform.h +171 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/random/internal/pool_urbg.cc +253 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/random/internal/pool_urbg.h +131 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/random/internal/pool_urbg_test.cc +182 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/random/internal/randen.cc +91 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/random/internal/randen.h +96 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/random/internal/randen_benchmarks.cc +175 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/random/internal/randen_detect.cc +280 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/random/internal/randen_detect.h +33 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/random/internal/randen_engine.h +265 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/random/internal/randen_engine_test.cc +655 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/random/internal/randen_hwaes.cc +526 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/random/internal/randen_hwaes.h +50 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/random/internal/randen_hwaes_test.cc +99 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/random/internal/randen_round_keys.cc +462 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/random/internal/randen_slow.cc +471 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/random/internal/randen_slow.h +40 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/random/internal/randen_slow_test.cc +61 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/random/internal/randen_test.cc +75 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/random/internal/randen_traits.h +88 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/random/internal/salted_seed_seq.h +165 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/random/internal/salted_seed_seq_test.cc +172 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/random/internal/seed_material.cc +267 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/random/internal/seed_material.h +104 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/random/internal/seed_material_test.cc +202 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/random/internal/sequence_urbg.h +60 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/random/internal/traits.h +149 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/random/internal/traits_test.cc +123 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/random/internal/uniform_helper.h +244 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/random/internal/uniform_helper_test.cc +279 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/random/internal/wide_multiply.h +95 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/random/internal/wide_multiply_test.cc +119 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/random/log_uniform_int_distribution.h +253 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/random/log_uniform_int_distribution_test.cc +277 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/random/mock_distributions.h +269 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/random/mock_distributions_test.cc +280 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/random/mocking_bit_gen.h +239 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/random/mocking_bit_gen_test.cc +403 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/random/poisson_distribution.h +262 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/random/poisson_distribution_test.cc +569 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/random/random.h +189 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/random/seed_gen_exception.cc +45 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/random/seed_gen_exception.h +55 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/random/seed_sequences.cc +29 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/random/seed_sequences.h +112 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/random/seed_sequences_test.cc +126 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/random/uniform_int_distribution.h +276 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/random/uniform_int_distribution_test.cc +259 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/random/uniform_real_distribution.h +204 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/random/uniform_real_distribution_test.cc +394 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/random/zipf_distribution.h +273 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/random/zipf_distribution_test.cc +423 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/status/BUILD.bazel +168 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/status/CMakeLists.txt +143 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/status/internal/status_internal.cc +252 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/status/internal/status_internal.h +132 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/status/internal/status_matchers.cc +68 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/status/internal/status_matchers.h +246 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/status/internal/statusor_internal.h +494 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/status/status.cc +421 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/status/status.h +943 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/status/status_matchers.h +118 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/status/status_matchers_test.cc +119 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/status/status_payload_printer.cc +36 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/status/status_payload_printer.h +52 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/status/status_test.cc +579 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/status/statusor.cc +106 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/status/statusor.h +796 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/status/statusor_test.cc +1802 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/BUILD.bazel +1477 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/CMakeLists.txt +1198 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/ascii.cc +296 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/ascii.h +284 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/ascii_benchmark.cc +160 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/ascii_test.cc +374 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/atod_manual_test.cc +193 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/char_formatting_test.cc +169 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/charconv.cc +1443 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/charconv.h +123 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/charconv_benchmark.cc +204 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/charconv_test.cc +787 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/charset.h +163 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/charset_benchmark.cc +57 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/charset_test.cc +181 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/cord.cc +1581 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/cord.h +1753 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/cord_analysis.cc +196 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/cord_analysis.h +63 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/cord_buffer.cc +30 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/cord_buffer.h +572 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/cord_buffer_test.cc +322 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/cord_test.cc +3398 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/cord_test_helpers.h +122 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/cordz_test.cc +468 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/cordz_test_helpers.h +153 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/escaping.cc +1022 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/escaping.h +186 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/escaping_benchmark.cc +125 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/escaping_test.cc +750 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/has_absl_stringify.h +64 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/has_absl_stringify_test.cc +40 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/has_ostream_operator.h +42 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/has_ostream_operator_test.cc +41 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/charconv_bigint.cc +357 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/charconv_bigint.h +433 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/charconv_bigint_test.cc +260 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/charconv_parse.cc +504 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/charconv_parse.h +99 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/charconv_parse_test.cc +357 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/cord_data_edge.h +63 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/cord_data_edge_test.cc +130 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/cord_internal.cc +70 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/cord_internal.h +944 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/cord_rep_btree.cc +1241 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/cord_rep_btree.h +944 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/cord_rep_btree_navigator.cc +187 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/cord_rep_btree_navigator.h +267 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/cord_rep_btree_navigator_test.cc +346 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/cord_rep_btree_reader.cc +69 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/cord_rep_btree_reader.h +212 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/cord_rep_btree_reader_test.cc +293 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/cord_rep_btree_test.cc +1568 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/cord_rep_consume.cc +64 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/cord_rep_consume.h +47 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/cord_rep_crc.cc +56 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/cord_rep_crc.h +103 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/cord_rep_crc_test.cc +130 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/cord_rep_flat.h +195 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/cord_rep_test_util.h +205 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/cordz_functions.cc +102 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/cordz_functions.h +87 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/cordz_functions_test.cc +147 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/cordz_handle.cc +165 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/cordz_handle.h +98 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/cordz_handle_test.cc +265 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/cordz_info.cc +422 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/cordz_info.h +303 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/cordz_info_statistics_test.cc +510 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/cordz_info_test.cc +342 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/cordz_sample_token.cc +64 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/cordz_sample_token.h +97 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/cordz_sample_token_test.cc +208 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/cordz_statistics.h +88 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/cordz_update_scope.h +71 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/cordz_update_scope_test.cc +49 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/cordz_update_tracker.h +123 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/cordz_update_tracker_test.cc +147 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/damerau_levenshtein_distance.cc +93 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/damerau_levenshtein_distance.h +34 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/damerau_levenshtein_distance_test.cc +99 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/escaping.cc +209 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/escaping.h +57 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/escaping_test_common.h +133 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/memutil.cc +48 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/memutil.h +40 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/memutil_benchmark.cc +128 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/memutil_test.cc +41 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/numbers_test_common.h +184 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/ostringstream.cc +43 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/ostringstream.h +114 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/ostringstream_benchmark.cc +106 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/ostringstream_test.cc +131 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/pow10_helper.cc +122 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/pow10_helper.h +40 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/pow10_helper_test.cc +122 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/resize_uninitialized.h +119 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/resize_uninitialized_test.cc +133 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/stl_type_traits.h +248 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/str_format/arg.cc +671 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/str_format/arg.h +671 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/str_format/arg_test.cc +162 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/str_format/bind.cc +275 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/str_format/bind.h +237 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/str_format/bind_test.cc +157 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/str_format/checker.h +100 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/str_format/checker_test.cc +176 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/str_format/constexpr_parser.h +357 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/str_format/convert_test.cc +1462 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/str_format/extension.cc +75 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/str_format/extension.h +456 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/str_format/extension_test.cc +109 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/str_format/float_conversion.cc +1458 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/str_format/float_conversion.h +37 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/str_format/output.cc +72 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/str_format/output.h +97 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/str_format/output_test.cc +79 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/str_format/parser.cc +140 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/str_format/parser.h +269 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/str_format/parser_test.cc +446 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/str_join_internal.h +338 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/str_split_internal.h +520 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/string_constant.h +72 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/string_constant_test.cc +60 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/stringify_sink.cc +28 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/stringify_sink.h +57 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/utf8.cc +53 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/utf8.h +50 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/utf8_test.cc +66 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/match.cc +133 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/match.h +129 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/match_test.cc +291 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/numbers.cc +1146 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/numbers.h +317 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/numbers_benchmark.cc +288 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/numbers_test.cc +1740 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/str_cat.cc +243 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/str_cat.h +628 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/str_cat_benchmark.cc +265 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/str_cat_test.cc +697 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/str_format.h +887 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/str_format_test.cc +1236 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/str_join.h +301 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/str_join_benchmark.cc +107 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/str_join_test.cc +645 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/str_replace.cc +91 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/str_replace.h +222 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/str_replace_benchmark.cc +122 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/str_replace_test.cc +345 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/str_split.cc +144 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/str_split.h +582 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/str_split_benchmark.cc +181 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/str_split_test.cc +1069 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/string_view.cc +262 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/string_view.h +771 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/string_view_benchmark.cc +382 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/string_view_test.cc +1398 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/strip.h +99 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/strip_test.cc +198 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/substitute.cc +186 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/substitute.h +767 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/strings/substitute_test.cc +288 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/synchronization/BUILD.bazel +406 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/synchronization/CMakeLists.txt +291 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/synchronization/barrier.cc +52 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/synchronization/barrier.h +79 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/synchronization/barrier_test.cc +75 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/synchronization/blocking_counter.cc +73 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/synchronization/blocking_counter.h +107 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/synchronization/blocking_counter_benchmark.cc +84 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/synchronization/blocking_counter_test.cc +146 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/synchronization/internal/create_thread_identity.cc +152 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/synchronization/internal/create_thread_identity.h +56 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/synchronization/internal/futex.h +177 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/synchronization/internal/futex_waiter.cc +111 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/synchronization/internal/futex_waiter.h +63 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/synchronization/internal/graphcycles.cc +717 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/synchronization/internal/graphcycles.h +146 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/synchronization/internal/graphcycles_benchmark.cc +44 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/synchronization/internal/graphcycles_test.cc +482 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/synchronization/internal/kernel_timeout.cc +225 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/synchronization/internal/kernel_timeout.h +178 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/synchronization/internal/kernel_timeout_test.cc +396 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/synchronization/internal/per_thread_sem.cc +106 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/synchronization/internal/per_thread_sem.h +119 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/synchronization/internal/per_thread_sem_test.cc +194 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/synchronization/internal/pthread_waiter.cc +167 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/synchronization/internal/pthread_waiter.h +60 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/synchronization/internal/sem_waiter.cc +122 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/synchronization/internal/sem_waiter.h +65 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/synchronization/internal/stdcpp_waiter.cc +91 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/synchronization/internal/stdcpp_waiter.h +56 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/synchronization/internal/thread_pool.h +96 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/synchronization/internal/waiter.h +69 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/synchronization/internal/waiter_base.cc +42 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/synchronization/internal/waiter_base.h +90 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/synchronization/internal/waiter_test.cc +183 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/synchronization/internal/win32_waiter.cc +151 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/synchronization/internal/win32_waiter.h +72 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/synchronization/lifetime_test.cc +180 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/synchronization/mutex.cc +2821 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/synchronization/mutex.h +1219 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/synchronization/mutex_benchmark.cc +339 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/synchronization/mutex_method_pointer_test.cc +138 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/synchronization/mutex_test.cc +2037 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/synchronization/notification.cc +85 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/synchronization/notification.h +133 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/synchronization/notification_test.cc +230 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/time/BUILD.bazel +156 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/time/CMakeLists.txt +141 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/time/civil_time.cc +199 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/time/civil_time.h +589 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/time/civil_time_benchmark.cc +130 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/time/civil_time_test.cc +1262 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/time/clock.cc +604 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/time/clock.h +78 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/time/clock_benchmark.cc +74 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/time/clock_test.cc +122 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/time/duration.cc +913 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/time/duration_benchmark.cc +464 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/time/duration_test.cc +1905 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/time/flag_test.cc +147 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/time/format.cc +162 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/time/format_benchmark.cc +64 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/time/format_test.cc +441 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/time/internal/cctz/BUILD.bazel +178 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/time/internal/cctz/include/cctz/civil_time.h +332 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/time/internal/cctz/include/cctz/civil_time_detail.h +632 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/time/internal/cctz/include/cctz/time_zone.h +460 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/time/internal/cctz/include/cctz/zone_info_source.h +102 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/time/internal/cctz/src/cctz_benchmark.cc +922 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/time/internal/cctz/src/civil_time_detail.cc +94 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/time/internal/cctz/src/civil_time_test.cc +1066 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/time/internal/cctz/src/time_zone_fixed.cc +140 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/time/internal/cctz/src/time_zone_fixed.h +52 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/time/internal/cctz/src/time_zone_format.cc +1029 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/time/internal/cctz/src/time_zone_format_test.cc +1774 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/time/internal/cctz/src/time_zone_if.cc +47 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/time/internal/cctz/src/time_zone_if.h +80 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/time/internal/cctz/src/time_zone_impl.cc +115 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/time/internal/cctz/src/time_zone_impl.h +97 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/time/internal/cctz/src/time_zone_info.cc +1070 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/time/internal/cctz/src/time_zone_info.h +128 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/time/internal/cctz/src/time_zone_libc.cc +333 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/time/internal/cctz/src/time_zone_libc.h +60 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/time/internal/cctz/src/time_zone_lookup.cc +335 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/time/internal/cctz/src/time_zone_lookup_test.cc +1405 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/time/internal/cctz/src/time_zone_posix.cc +159 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/time/internal/cctz/src/time_zone_posix.h +132 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/time/internal/cctz/src/tzfile.h +120 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/time/internal/cctz/src/zone_info_source.cc +116 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/time/internal/cctz/testdata/README.zoneinfo +38 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/time/internal/cctz/testdata/zoneinfo/iso3166.tab +279 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/time/internal/cctz/testdata/zoneinfo/zone1970.tab +374 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/time/internal/cctz/testdata/zoneinfo/zonenow.tab +296 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/time/internal/get_current_time_chrono.inc +31 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/time/internal/get_current_time_posix.inc +24 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/time/internal/test_util.cc +32 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/time/internal/test_util.h +33 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/time/time.cc +507 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/time/time.h +1920 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/time/time_benchmark.cc +321 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/time/time_test.cc +1338 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/time/time_zone_test.cc +97 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/types/BUILD.bazel +319 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/types/CMakeLists.txt +323 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/types/any.h +519 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/types/any_exception_safety_test.cc +173 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/types/any_test.cc +778 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/types/bad_any_cast.cc +64 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/types/bad_any_cast.h +75 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/types/bad_optional_access.cc +66 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/types/bad_optional_access.h +78 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/types/bad_variant_access.cc +82 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/types/bad_variant_access.h +82 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/types/compare.h +505 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/types/compare_test.cc +300 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/types/internal/optional.h +352 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/types/internal/span.h +140 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/types/internal/variant.h +1622 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/types/optional.h +781 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/types/optional_exception_safety_test.cc +292 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/types/optional_test.cc +1615 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/types/span.h +796 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/types/span_test.cc +888 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/types/variant.h +861 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/types/variant_benchmark.cc +222 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/types/variant_exception_safety_test.cc +532 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/types/variant_test.cc +2718 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/utility/BUILD.bazel +86 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/utility/CMakeLists.txt +68 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/utility/internal/if_constexpr.h +70 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/utility/internal/if_constexpr_test.cc +79 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/utility/utility.h +230 -0
- tkvsc_oead-1.4.5/lib/abseil/absl/utility/utility_test.cc +239 -0
- tkvsc_oead-1.4.5/lib/abseil/ci/absl_alternate_options.h +30 -0
- tkvsc_oead-1.4.5/lib/abseil/ci/cmake_common.sh +19 -0
- tkvsc_oead-1.4.5/lib/abseil/ci/cmake_install_test.sh +58 -0
- tkvsc_oead-1.4.5/lib/abseil/ci/linux_arm_clang-latest_libcxx_bazel.sh +100 -0
- tkvsc_oead-1.4.5/lib/abseil/ci/linux_clang-latest_libcxx_asan_bazel.sh +102 -0
- tkvsc_oead-1.4.5/lib/abseil/ci/linux_clang-latest_libcxx_bazel.sh +100 -0
- tkvsc_oead-1.4.5/lib/abseil/ci/linux_clang-latest_libcxx_tsan_bazel.sh +97 -0
- tkvsc_oead-1.4.5/lib/abseil/ci/linux_clang-latest_libstdcxx_bazel.sh +95 -0
- tkvsc_oead-1.4.5/lib/abseil/ci/linux_docker_containers.sh +22 -0
- tkvsc_oead-1.4.5/lib/abseil/ci/linux_gcc-floor_libstdcxx_bazel.sh +92 -0
- tkvsc_oead-1.4.5/lib/abseil/ci/linux_gcc-latest_libstdcxx_bazel.sh +98 -0
- tkvsc_oead-1.4.5/lib/abseil/ci/linux_gcc-latest_libstdcxx_cmake.sh +79 -0
- tkvsc_oead-1.4.5/lib/abseil/ci/linux_gcc_alpine_cmake.sh +79 -0
- tkvsc_oead-1.4.5/lib/abseil/ci/macos_xcode_bazel.sh +69 -0
- tkvsc_oead-1.4.5/lib/abseil/ci/macos_xcode_cmake.sh +65 -0
- tkvsc_oead-1.4.5/lib/abseil/ci/windows_clangcl_bazel.bat +61 -0
- tkvsc_oead-1.4.5/lib/abseil/ci/windows_msvc_bazel.bat +52 -0
- tkvsc_oead-1.4.5/lib/abseil/ci/windows_msvc_cmake.bat +64 -0
- tkvsc_oead-1.4.5/lib/abseil/conanfile.py +51 -0
- tkvsc_oead-1.4.5/lib/abseil/create_lts.py +139 -0
- tkvsc_oead-1.4.5/lib/libyaml/.appveyor.yml +29 -0
- tkvsc_oead-1.4.5/lib/libyaml/.git +1 -0
- tkvsc_oead-1.4.5/lib/libyaml/.github/workflows/dist.yaml +28 -0
- tkvsc_oead-1.4.5/lib/libyaml/.github/workflows/main.yml +54 -0
- tkvsc_oead-1.4.5/lib/libyaml/.gitignore +45 -0
- tkvsc_oead-1.4.5/lib/libyaml/.indent.pro +1 -0
- tkvsc_oead-1.4.5/lib/libyaml/.makefile +65 -0
- tkvsc_oead-1.4.5/lib/libyaml/.travis.yml +28 -0
- tkvsc_oead-1.4.5/lib/libyaml/CMakeLists.txt +160 -0
- tkvsc_oead-1.4.5/lib/libyaml/Makefile.am +51 -0
- tkvsc_oead-1.4.5/lib/libyaml/ReadMe.md +46 -0
- tkvsc_oead-1.4.5/lib/libyaml/announcement.msg +89 -0
- tkvsc_oead-1.4.5/lib/libyaml/cmake/config.h.in +4 -0
- tkvsc_oead-1.4.5/lib/libyaml/configure.ac +73 -0
- tkvsc_oead-1.4.5/lib/libyaml/doc/doxygen.cfg +222 -0
- tkvsc_oead-1.4.5/lib/libyaml/docker/README.mkd +17 -0
- tkvsc_oead-1.4.5/lib/libyaml/docker/alpine-3.7 +26 -0
- tkvsc_oead-1.4.5/lib/libyaml/docker/ubuntu-14.04 +29 -0
- tkvsc_oead-1.4.5/lib/libyaml/docker/ubuntu-16.04 +24 -0
- tkvsc_oead-1.4.5/lib/libyaml/examples/anchors.yaml +10 -0
- tkvsc_oead-1.4.5/lib/libyaml/examples/array.yaml +2 -0
- tkvsc_oead-1.4.5/lib/libyaml/examples/global-tag.yaml +14 -0
- tkvsc_oead-1.4.5/lib/libyaml/examples/json.yaml +1 -0
- tkvsc_oead-1.4.5/lib/libyaml/examples/mapping.yaml +2 -0
- tkvsc_oead-1.4.5/lib/libyaml/examples/numbers.yaml +1 -0
- tkvsc_oead-1.4.5/lib/libyaml/examples/strings.yaml +7 -0
- tkvsc_oead-1.4.5/lib/libyaml/examples/tags.yaml +7 -0
- tkvsc_oead-1.4.5/lib/libyaml/examples/yaml-version.yaml +3 -0
- tkvsc_oead-1.4.5/lib/libyaml/include/Makefile.am +17 -0
- tkvsc_oead-1.4.5/lib/libyaml/include/yaml.h +1985 -0
- tkvsc_oead-1.4.5/lib/libyaml/pkg/ReadMe.md +77 -0
- tkvsc_oead-1.4.5/lib/libyaml/pkg/docker/.gitignore +3 -0
- tkvsc_oead-1.4.5/lib/libyaml/pkg/docker/scripts/libyaml-dist.sh +23 -0
- tkvsc_oead-1.4.5/lib/libyaml/regression-inputs/clusterfuzz-testcase-minimized-5607885063061504.yml +1 -0
- tkvsc_oead-1.4.5/lib/libyaml/src/Makefile.am +4 -0
- tkvsc_oead-1.4.5/lib/libyaml/src/api.c +1393 -0
- tkvsc_oead-1.4.5/lib/libyaml/src/dumper.c +394 -0
- tkvsc_oead-1.4.5/lib/libyaml/src/emitter.c +2358 -0
- tkvsc_oead-1.4.5/lib/libyaml/src/loader.c +544 -0
- tkvsc_oead-1.4.5/lib/libyaml/src/parser.c +1375 -0
- tkvsc_oead-1.4.5/lib/libyaml/src/reader.c +469 -0
- tkvsc_oead-1.4.5/lib/libyaml/src/scanner.c +3598 -0
- tkvsc_oead-1.4.5/lib/libyaml/src/writer.c +141 -0
- tkvsc_oead-1.4.5/lib/libyaml/src/yaml_private.h +684 -0
- tkvsc_oead-1.4.5/lib/libyaml/tests/CMakeLists.txt +27 -0
- tkvsc_oead-1.4.5/lib/libyaml/tests/Makefile.am +9 -0
- tkvsc_oead-1.4.5/lib/libyaml/tests/ReadMe.md +63 -0
- tkvsc_oead-1.4.5/lib/libyaml/tests/example-deconstructor-alt.c +800 -0
- tkvsc_oead-1.4.5/lib/libyaml/tests/example-deconstructor.c +1127 -0
- tkvsc_oead-1.4.5/lib/libyaml/tests/example-reformatter-alt.c +217 -0
- tkvsc_oead-1.4.5/lib/libyaml/tests/example-reformatter.c +202 -0
- tkvsc_oead-1.4.5/lib/libyaml/tests/run-all-tests.sh +29 -0
- tkvsc_oead-1.4.5/lib/libyaml/tests/run-dumper.c +314 -0
- tkvsc_oead-1.4.5/lib/libyaml/tests/run-emitter-test-suite.c +290 -0
- tkvsc_oead-1.4.5/lib/libyaml/tests/run-emitter.c +327 -0
- tkvsc_oead-1.4.5/lib/libyaml/tests/run-loader.c +63 -0
- tkvsc_oead-1.4.5/lib/libyaml/tests/run-parser-test-suite.c +189 -0
- tkvsc_oead-1.4.5/lib/libyaml/tests/run-parser.c +63 -0
- tkvsc_oead-1.4.5/lib/libyaml/tests/run-scanner.c +63 -0
- tkvsc_oead-1.4.5/lib/libyaml/tests/test-reader.c +354 -0
- tkvsc_oead-1.4.5/lib/libyaml/tests/test-version.c +29 -0
- tkvsc_oead-1.4.5/lib/libyaml/yaml-0.1.pc.in +10 -0
- tkvsc_oead-1.4.5/lib/libyaml/yamlConfig.cmake.in +16 -0
- tkvsc_oead-1.4.5/lib/nonstd/nonstd/span.h +687 -0
- tkvsc_oead-1.4.5/lib/nonstd/nonstd/visit.h +219 -0
- tkvsc_oead-1.4.5/lib/ordered-map/.codecov.yml +5 -0
- tkvsc_oead-1.4.5/lib/ordered-map/.git +1 -0
- tkvsc_oead-1.4.5/lib/ordered-map/.travis.yml +61 -0
- tkvsc_oead-1.4.5/lib/ordered-map/CMakeLists.txt +77 -0
- tkvsc_oead-1.4.5/lib/ordered-map/README.md +445 -0
- tkvsc_oead-1.4.5/lib/ordered-map/appveyor.yml +40 -0
- tkvsc_oead-1.4.5/lib/ordered-map/cmake/tsl-ordered-mapConfig.cmake.in +9 -0
- tkvsc_oead-1.4.5/lib/ordered-map/doxygen.conf +2483 -0
- tkvsc_oead-1.4.5/lib/ordered-map/include/tsl/ordered_hash.h +1628 -0
- tkvsc_oead-1.4.5/lib/ordered-map/include/tsl/ordered_map.h +863 -0
- tkvsc_oead-1.4.5/lib/ordered-map/include/tsl/ordered_set.h +718 -0
- tkvsc_oead-1.4.5/lib/ordered-map/tests/CMakeLists.txt +24 -0
- tkvsc_oead-1.4.5/lib/ordered-map/tests/custom_allocator_tests.cpp +150 -0
- tkvsc_oead-1.4.5/lib/ordered-map/tests/main.cpp +27 -0
- tkvsc_oead-1.4.5/lib/ordered-map/tests/ordered_map_tests.cpp +1554 -0
- tkvsc_oead-1.4.5/lib/ordered-map/tests/ordered_set_tests.cpp +164 -0
- tkvsc_oead-1.4.5/lib/ordered-map/tests/utils.h +319 -0
- tkvsc_oead-1.4.5/lib/ordered-map/tsl-ordered-map.natvis +21 -0
- tkvsc_oead-1.4.5/lib/pybind11/.appveyor.yml +35 -0
- tkvsc_oead-1.4.5/lib/pybind11/.clang-format +38 -0
- tkvsc_oead-1.4.5/lib/pybind11/.clang-tidy +79 -0
- tkvsc_oead-1.4.5/lib/pybind11/.cmake-format.yaml +73 -0
- tkvsc_oead-1.4.5/lib/pybind11/.codespell-ignore-lines +24 -0
- tkvsc_oead-1.4.5/lib/pybind11/.git +1 -0
- tkvsc_oead-1.4.5/lib/pybind11/.gitattributes +1 -0
- tkvsc_oead-1.4.5/lib/pybind11/.github/CONTRIBUTING.md +388 -0
- tkvsc_oead-1.4.5/lib/pybind11/.github/ISSUE_TEMPLATE/bug-report.yml +61 -0
- tkvsc_oead-1.4.5/lib/pybind11/.github/ISSUE_TEMPLATE/config.yml +8 -0
- tkvsc_oead-1.4.5/lib/pybind11/.github/dependabot.yml +15 -0
- tkvsc_oead-1.4.5/lib/pybind11/.github/labeler.yml +13 -0
- tkvsc_oead-1.4.5/lib/pybind11/.github/labeler_merged.yml +8 -0
- tkvsc_oead-1.4.5/lib/pybind11/.github/matchers/pylint.json +32 -0
- tkvsc_oead-1.4.5/lib/pybind11/.github/pull_request_template.md +19 -0
- tkvsc_oead-1.4.5/lib/pybind11/.github/workflows/ci.yml +1241 -0
- tkvsc_oead-1.4.5/lib/pybind11/.github/workflows/configure.yml +92 -0
- tkvsc_oead-1.4.5/lib/pybind11/.github/workflows/emscripten.yaml +30 -0
- tkvsc_oead-1.4.5/lib/pybind11/.github/workflows/format.yml +60 -0
- tkvsc_oead-1.4.5/lib/pybind11/.github/workflows/labeler.yml +25 -0
- tkvsc_oead-1.4.5/lib/pybind11/.github/workflows/pip.yml +120 -0
- tkvsc_oead-1.4.5/lib/pybind11/.github/workflows/upstream.yml +116 -0
- tkvsc_oead-1.4.5/lib/pybind11/.gitignore +46 -0
- tkvsc_oead-1.4.5/lib/pybind11/.pre-commit-config.yaml +156 -0
- tkvsc_oead-1.4.5/lib/pybind11/.readthedocs.yml +20 -0
- tkvsc_oead-1.4.5/lib/pybind11/CMakeLists.txt +378 -0
- tkvsc_oead-1.4.5/lib/pybind11/MANIFEST.in +6 -0
- tkvsc_oead-1.4.5/lib/pybind11/README.rst +181 -0
- tkvsc_oead-1.4.5/lib/pybind11/SECURITY.md +13 -0
- tkvsc_oead-1.4.5/lib/pybind11/docs/_static/css/custom.css +3 -0
- tkvsc_oead-1.4.5/lib/pybind11/docs/advanced/cast/chrono.rst +81 -0
- tkvsc_oead-1.4.5/lib/pybind11/docs/advanced/cast/custom.rst +93 -0
- tkvsc_oead-1.4.5/lib/pybind11/docs/advanced/cast/eigen.rst +310 -0
- tkvsc_oead-1.4.5/lib/pybind11/docs/advanced/cast/functional.rst +109 -0
- tkvsc_oead-1.4.5/lib/pybind11/docs/advanced/cast/index.rst +43 -0
- tkvsc_oead-1.4.5/lib/pybind11/docs/advanced/cast/overview.rst +170 -0
- tkvsc_oead-1.4.5/lib/pybind11/docs/advanced/cast/stl.rst +249 -0
- tkvsc_oead-1.4.5/lib/pybind11/docs/advanced/cast/strings.rst +296 -0
- tkvsc_oead-1.4.5/lib/pybind11/docs/advanced/classes.rst +1335 -0
- tkvsc_oead-1.4.5/lib/pybind11/docs/advanced/embedding.rst +262 -0
- tkvsc_oead-1.4.5/lib/pybind11/docs/advanced/exceptions.rst +401 -0
- tkvsc_oead-1.4.5/lib/pybind11/docs/advanced/functions.rst +614 -0
- tkvsc_oead-1.4.5/lib/pybind11/docs/advanced/misc.rst +429 -0
- tkvsc_oead-1.4.5/lib/pybind11/docs/advanced/pycpp/index.rst +13 -0
- tkvsc_oead-1.4.5/lib/pybind11/docs/advanced/pycpp/numpy.rst +453 -0
- tkvsc_oead-1.4.5/lib/pybind11/docs/advanced/pycpp/object.rst +286 -0
- tkvsc_oead-1.4.5/lib/pybind11/docs/advanced/pycpp/utilities.rst +155 -0
- tkvsc_oead-1.4.5/lib/pybind11/docs/advanced/smart_ptrs.rst +174 -0
- tkvsc_oead-1.4.5/lib/pybind11/docs/basics.rst +314 -0
- tkvsc_oead-1.4.5/lib/pybind11/docs/benchmark.py +89 -0
- tkvsc_oead-1.4.5/lib/pybind11/docs/benchmark.rst +95 -0
- tkvsc_oead-1.4.5/lib/pybind11/docs/changelog.rst +3285 -0
- tkvsc_oead-1.4.5/lib/pybind11/docs/classes.rst +555 -0
- tkvsc_oead-1.4.5/lib/pybind11/docs/cmake/index.rst +8 -0
- tkvsc_oead-1.4.5/lib/pybind11/docs/compiling.rst +726 -0
- tkvsc_oead-1.4.5/lib/pybind11/docs/conf.py +369 -0
- tkvsc_oead-1.4.5/lib/pybind11/docs/faq.rst +352 -0
- tkvsc_oead-1.4.5/lib/pybind11/docs/index.rst +48 -0
- tkvsc_oead-1.4.5/lib/pybind11/docs/installing.rst +105 -0
- tkvsc_oead-1.4.5/lib/pybind11/docs/limitations.rst +68 -0
- tkvsc_oead-1.4.5/lib/pybind11/docs/pybind11-logo.png +0 -0
- tkvsc_oead-1.4.5/lib/pybind11/docs/pybind11_vs_boost_python1.png +0 -0
- tkvsc_oead-1.4.5/lib/pybind11/docs/pybind11_vs_boost_python1.svg +427 -0
- tkvsc_oead-1.4.5/lib/pybind11/docs/pybind11_vs_boost_python2.png +0 -0
- tkvsc_oead-1.4.5/lib/pybind11/docs/pybind11_vs_boost_python2.svg +427 -0
- tkvsc_oead-1.4.5/lib/pybind11/docs/reference.rst +130 -0
- tkvsc_oead-1.4.5/lib/pybind11/docs/release.rst +143 -0
- tkvsc_oead-1.4.5/lib/pybind11/docs/requirements.in +6 -0
- tkvsc_oead-1.4.5/lib/pybind11/docs/requirements.txt +275 -0
- tkvsc_oead-1.4.5/lib/pybind11/docs/upgrade.rst +594 -0
- tkvsc_oead-1.4.5/lib/pybind11/include/pybind11/attr.h +690 -0
- tkvsc_oead-1.4.5/lib/pybind11/include/pybind11/buffer_info.h +208 -0
- tkvsc_oead-1.4.5/lib/pybind11/include/pybind11/cast.h +1855 -0
- tkvsc_oead-1.4.5/lib/pybind11/include/pybind11/chrono.h +225 -0
- tkvsc_oead-1.4.5/lib/pybind11/include/pybind11/common.h +2 -0
- tkvsc_oead-1.4.5/lib/pybind11/include/pybind11/complex.h +74 -0
- tkvsc_oead-1.4.5/lib/pybind11/include/pybind11/detail/class.h +767 -0
- tkvsc_oead-1.4.5/lib/pybind11/include/pybind11/detail/common.h +1287 -0
- tkvsc_oead-1.4.5/lib/pybind11/include/pybind11/detail/cpp_conduit.h +77 -0
- tkvsc_oead-1.4.5/lib/pybind11/include/pybind11/detail/descr.h +172 -0
- tkvsc_oead-1.4.5/lib/pybind11/include/pybind11/detail/exception_translation.h +71 -0
- tkvsc_oead-1.4.5/lib/pybind11/include/pybind11/detail/init.h +436 -0
- tkvsc_oead-1.4.5/lib/pybind11/include/pybind11/detail/internals.h +766 -0
- tkvsc_oead-1.4.5/lib/pybind11/include/pybind11/detail/type_caster_base.h +1195 -0
- tkvsc_oead-1.4.5/lib/pybind11/include/pybind11/detail/typeid.h +65 -0
- tkvsc_oead-1.4.5/lib/pybind11/include/pybind11/detail/value_and_holder.h +77 -0
- tkvsc_oead-1.4.5/lib/pybind11/include/pybind11/eigen/common.h +9 -0
- tkvsc_oead-1.4.5/lib/pybind11/include/pybind11/eigen/matrix.h +715 -0
- tkvsc_oead-1.4.5/lib/pybind11/include/pybind11/eigen/tensor.h +515 -0
- tkvsc_oead-1.4.5/lib/pybind11/include/pybind11/eigen.h +12 -0
- tkvsc_oead-1.4.5/lib/pybind11/include/pybind11/embed.h +313 -0
- tkvsc_oead-1.4.5/lib/pybind11/include/pybind11/eval.h +156 -0
- tkvsc_oead-1.4.5/lib/pybind11/include/pybind11/functional.h +149 -0
- tkvsc_oead-1.4.5/lib/pybind11/include/pybind11/gil.h +219 -0
- tkvsc_oead-1.4.5/lib/pybind11/include/pybind11/gil_safe_call_once.h +100 -0
- tkvsc_oead-1.4.5/lib/pybind11/include/pybind11/iostream.h +265 -0
- tkvsc_oead-1.4.5/lib/pybind11/include/pybind11/numpy.h +2139 -0
- tkvsc_oead-1.4.5/lib/pybind11/include/pybind11/operators.h +202 -0
- tkvsc_oead-1.4.5/lib/pybind11/include/pybind11/options.h +92 -0
- tkvsc_oead-1.4.5/lib/pybind11/include/pybind11/pybind11.h +2978 -0
- tkvsc_oead-1.4.5/lib/pybind11/include/pybind11/pytypes.h +2606 -0
- tkvsc_oead-1.4.5/lib/pybind11/include/pybind11/stl/filesystem.h +124 -0
- tkvsc_oead-1.4.5/lib/pybind11/include/pybind11/stl.h +448 -0
- tkvsc_oead-1.4.5/lib/pybind11/include/pybind11/stl_bind.h +822 -0
- tkvsc_oead-1.4.5/lib/pybind11/include/pybind11/type_caster_pyobject_ptr.h +61 -0
- tkvsc_oead-1.4.5/lib/pybind11/include/pybind11/typing.h +242 -0
- tkvsc_oead-1.4.5/lib/pybind11/noxfile.py +107 -0
- tkvsc_oead-1.4.5/lib/pybind11/pybind11/__init__.py +19 -0
- tkvsc_oead-1.4.5/lib/pybind11/pybind11/__main__.py +86 -0
- tkvsc_oead-1.4.5/lib/pybind11/pybind11/_version.py +12 -0
- tkvsc_oead-1.4.5/lib/pybind11/pybind11/commands.py +39 -0
- tkvsc_oead-1.4.5/lib/pybind11/pybind11/py.typed +0 -0
- tkvsc_oead-1.4.5/lib/pybind11/pybind11/setup_helpers.py +500 -0
- tkvsc_oead-1.4.5/lib/pybind11/pyproject.toml +87 -0
- tkvsc_oead-1.4.5/lib/pybind11/setup.cfg +43 -0
- tkvsc_oead-1.4.5/lib/pybind11/setup.py +149 -0
- tkvsc_oead-1.4.5/lib/pybind11/tests/CMakeLists.txt +604 -0
- tkvsc_oead-1.4.5/lib/pybind11/tests/conftest.py +224 -0
- tkvsc_oead-1.4.5/lib/pybind11/tests/constructor_stats.h +322 -0
- tkvsc_oead-1.4.5/lib/pybind11/tests/cross_module_gil_utils.cpp +111 -0
- tkvsc_oead-1.4.5/lib/pybind11/tests/cross_module_interleaved_error_already_set.cpp +54 -0
- tkvsc_oead-1.4.5/lib/pybind11/tests/eigen_tensor_avoid_stl_array.cpp +16 -0
- tkvsc_oead-1.4.5/lib/pybind11/tests/env.py +31 -0
- tkvsc_oead-1.4.5/lib/pybind11/tests/exo_planet_c_api.cpp +103 -0
- tkvsc_oead-1.4.5/lib/pybind11/tests/exo_planet_pybind11.cpp +19 -0
- tkvsc_oead-1.4.5/lib/pybind11/tests/extra_python_package/pytest.ini +0 -0
- tkvsc_oead-1.4.5/lib/pybind11/tests/extra_python_package/test_files.py +299 -0
- tkvsc_oead-1.4.5/lib/pybind11/tests/extra_setuptools/pytest.ini +0 -0
- tkvsc_oead-1.4.5/lib/pybind11/tests/extra_setuptools/test_setuphelper.py +153 -0
- tkvsc_oead-1.4.5/lib/pybind11/tests/home_planet_very_lonely_traveler.cpp +13 -0
- tkvsc_oead-1.4.5/lib/pybind11/tests/local_bindings.h +92 -0
- tkvsc_oead-1.4.5/lib/pybind11/tests/object.h +205 -0
- tkvsc_oead-1.4.5/lib/pybind11/tests/pybind11_cross_module_tests.cpp +149 -0
- tkvsc_oead-1.4.5/lib/pybind11/tests/pybind11_tests.cpp +131 -0
- tkvsc_oead-1.4.5/lib/pybind11/tests/pybind11_tests.h +98 -0
- tkvsc_oead-1.4.5/lib/pybind11/tests/pyproject.toml +21 -0
- tkvsc_oead-1.4.5/lib/pybind11/tests/pytest.ini +23 -0
- tkvsc_oead-1.4.5/lib/pybind11/tests/requirements.txt +13 -0
- tkvsc_oead-1.4.5/lib/pybind11/tests/test_async.cpp +25 -0
- tkvsc_oead-1.4.5/lib/pybind11/tests/test_async.py +31 -0
- tkvsc_oead-1.4.5/lib/pybind11/tests/test_buffers.cpp +271 -0
- tkvsc_oead-1.4.5/lib/pybind11/tests/test_buffers.py +237 -0
- tkvsc_oead-1.4.5/lib/pybind11/tests/test_builtin_casters.cpp +387 -0
- tkvsc_oead-1.4.5/lib/pybind11/tests/test_builtin_casters.py +532 -0
- tkvsc_oead-1.4.5/lib/pybind11/tests/test_call_policies.cpp +113 -0
- tkvsc_oead-1.4.5/lib/pybind11/tests/test_call_policies.py +249 -0
- tkvsc_oead-1.4.5/lib/pybind11/tests/test_callbacks.cpp +280 -0
- tkvsc_oead-1.4.5/lib/pybind11/tests/test_callbacks.py +230 -0
- tkvsc_oead-1.4.5/lib/pybind11/tests/test_chrono.cpp +81 -0
- tkvsc_oead-1.4.5/lib/pybind11/tests/test_chrono.py +207 -0
- tkvsc_oead-1.4.5/lib/pybind11/tests/test_class.cpp +656 -0
- tkvsc_oead-1.4.5/lib/pybind11/tests/test_class.py +503 -0
- tkvsc_oead-1.4.5/lib/pybind11/tests/test_cmake_build/CMakeLists.txt +80 -0
- tkvsc_oead-1.4.5/lib/pybind11/tests/test_cmake_build/embed.cpp +23 -0
- tkvsc_oead-1.4.5/lib/pybind11/tests/test_cmake_build/installed_embed/CMakeLists.txt +28 -0
- tkvsc_oead-1.4.5/lib/pybind11/tests/test_cmake_build/installed_function/CMakeLists.txt +39 -0
- tkvsc_oead-1.4.5/lib/pybind11/tests/test_cmake_build/installed_target/CMakeLists.txt +46 -0
- tkvsc_oead-1.4.5/lib/pybind11/tests/test_cmake_build/main.cpp +6 -0
- tkvsc_oead-1.4.5/lib/pybind11/tests/test_cmake_build/subdirectory_embed/CMakeLists.txt +47 -0
- tkvsc_oead-1.4.5/lib/pybind11/tests/test_cmake_build/subdirectory_function/CMakeLists.txt +41 -0
- tkvsc_oead-1.4.5/lib/pybind11/tests/test_cmake_build/subdirectory_target/CMakeLists.txt +47 -0
- tkvsc_oead-1.4.5/lib/pybind11/tests/test_cmake_build/test.py +10 -0
- tkvsc_oead-1.4.5/lib/pybind11/tests/test_const_name.cpp +55 -0
- tkvsc_oead-1.4.5/lib/pybind11/tests/test_const_name.py +31 -0
- tkvsc_oead-1.4.5/lib/pybind11/tests/test_constants_and_functions.cpp +158 -0
- tkvsc_oead-1.4.5/lib/pybind11/tests/test_constants_and_functions.py +58 -0
- tkvsc_oead-1.4.5/lib/pybind11/tests/test_copy_move.cpp +544 -0
- tkvsc_oead-1.4.5/lib/pybind11/tests/test_copy_move.py +140 -0
- tkvsc_oead-1.4.5/lib/pybind11/tests/test_cpp_conduit.cpp +22 -0
- tkvsc_oead-1.4.5/lib/pybind11/tests/test_cpp_conduit.py +162 -0
- tkvsc_oead-1.4.5/lib/pybind11/tests/test_cpp_conduit_traveler_bindings.h +47 -0
- tkvsc_oead-1.4.5/lib/pybind11/tests/test_cpp_conduit_traveler_types.h +25 -0
- tkvsc_oead-1.4.5/lib/pybind11/tests/test_custom_type_casters.cpp +217 -0
- tkvsc_oead-1.4.5/lib/pybind11/tests/test_custom_type_casters.py +124 -0
- tkvsc_oead-1.4.5/lib/pybind11/tests/test_custom_type_setup.cpp +41 -0
- tkvsc_oead-1.4.5/lib/pybind11/tests/test_custom_type_setup.py +50 -0
- tkvsc_oead-1.4.5/lib/pybind11/tests/test_docstring_options.cpp +129 -0
- tkvsc_oead-1.4.5/lib/pybind11/tests/test_docstring_options.py +66 -0
- tkvsc_oead-1.4.5/lib/pybind11/tests/test_eigen_matrix.cpp +443 -0
- tkvsc_oead-1.4.5/lib/pybind11/tests/test_eigen_matrix.py +816 -0
- tkvsc_oead-1.4.5/lib/pybind11/tests/test_eigen_tensor.cpp +18 -0
- tkvsc_oead-1.4.5/lib/pybind11/tests/test_eigen_tensor.inl +338 -0
- tkvsc_oead-1.4.5/lib/pybind11/tests/test_eigen_tensor.py +290 -0
- tkvsc_oead-1.4.5/lib/pybind11/tests/test_embed/CMakeLists.txt +54 -0
- tkvsc_oead-1.4.5/lib/pybind11/tests/test_embed/catch.cpp +43 -0
- tkvsc_oead-1.4.5/lib/pybind11/tests/test_embed/external_module.cpp +20 -0
- tkvsc_oead-1.4.5/lib/pybind11/tests/test_embed/test_interpreter.cpp +488 -0
- tkvsc_oead-1.4.5/lib/pybind11/tests/test_embed/test_interpreter.py +16 -0
- tkvsc_oead-1.4.5/lib/pybind11/tests/test_embed/test_trampoline.py +18 -0
- tkvsc_oead-1.4.5/lib/pybind11/tests/test_enum.cpp +133 -0
- tkvsc_oead-1.4.5/lib/pybind11/tests/test_enum.py +270 -0
- tkvsc_oead-1.4.5/lib/pybind11/tests/test_eval.cpp +118 -0
- tkvsc_oead-1.4.5/lib/pybind11/tests/test_eval.py +52 -0
- tkvsc_oead-1.4.5/lib/pybind11/tests/test_eval_call.py +5 -0
- tkvsc_oead-1.4.5/lib/pybind11/tests/test_exceptions.cpp +388 -0
- tkvsc_oead-1.4.5/lib/pybind11/tests/test_exceptions.h +13 -0
- tkvsc_oead-1.4.5/lib/pybind11/tests/test_exceptions.py +434 -0
- tkvsc_oead-1.4.5/lib/pybind11/tests/test_factory_constructors.cpp +430 -0
- tkvsc_oead-1.4.5/lib/pybind11/tests/test_factory_constructors.py +518 -0
- tkvsc_oead-1.4.5/lib/pybind11/tests/test_gil_scoped.cpp +144 -0
- tkvsc_oead-1.4.5/lib/pybind11/tests/test_gil_scoped.py +249 -0
- tkvsc_oead-1.4.5/lib/pybind11/tests/test_iostream.cpp +126 -0
- tkvsc_oead-1.4.5/lib/pybind11/tests/test_iostream.py +297 -0
- tkvsc_oead-1.4.5/lib/pybind11/tests/test_kwargs_and_defaults.cpp +325 -0
- tkvsc_oead-1.4.5/lib/pybind11/tests/test_kwargs_and_defaults.py +428 -0
- tkvsc_oead-1.4.5/lib/pybind11/tests/test_local_bindings.cpp +106 -0
- tkvsc_oead-1.4.5/lib/pybind11/tests/test_local_bindings.py +259 -0
- tkvsc_oead-1.4.5/lib/pybind11/tests/test_methods_and_attributes.cpp +492 -0
- tkvsc_oead-1.4.5/lib/pybind11/tests/test_methods_and_attributes.py +539 -0
- tkvsc_oead-1.4.5/lib/pybind11/tests/test_modules.cpp +125 -0
- tkvsc_oead-1.4.5/lib/pybind11/tests/test_modules.py +118 -0
- tkvsc_oead-1.4.5/lib/pybind11/tests/test_multiple_inheritance.cpp +341 -0
- tkvsc_oead-1.4.5/lib/pybind11/tests/test_multiple_inheritance.py +495 -0
- tkvsc_oead-1.4.5/lib/pybind11/tests/test_numpy_array.cpp +547 -0
- tkvsc_oead-1.4.5/lib/pybind11/tests/test_numpy_array.py +672 -0
- tkvsc_oead-1.4.5/lib/pybind11/tests/test_numpy_dtypes.cpp +641 -0
- tkvsc_oead-1.4.5/lib/pybind11/tests/test_numpy_dtypes.py +448 -0
- tkvsc_oead-1.4.5/lib/pybind11/tests/test_numpy_vectorize.cpp +107 -0
- tkvsc_oead-1.4.5/lib/pybind11/tests/test_numpy_vectorize.py +268 -0
- tkvsc_oead-1.4.5/lib/pybind11/tests/test_opaque_types.cpp +77 -0
- tkvsc_oead-1.4.5/lib/pybind11/tests/test_opaque_types.py +60 -0
- tkvsc_oead-1.4.5/lib/pybind11/tests/test_operator_overloading.cpp +281 -0
- tkvsc_oead-1.4.5/lib/pybind11/tests/test_operator_overloading.py +153 -0
- tkvsc_oead-1.4.5/lib/pybind11/tests/test_pickling.cpp +194 -0
- tkvsc_oead-1.4.5/lib/pybind11/tests/test_pickling.py +95 -0
- tkvsc_oead-1.4.5/lib/pybind11/tests/test_python_multiple_inheritance.cpp +45 -0
- tkvsc_oead-1.4.5/lib/pybind11/tests/test_python_multiple_inheritance.py +36 -0
- tkvsc_oead-1.4.5/lib/pybind11/tests/test_pytypes.cpp +989 -0
- tkvsc_oead-1.4.5/lib/pybind11/tests/test_pytypes.py +1092 -0
- tkvsc_oead-1.4.5/lib/pybind11/tests/test_sequences_and_iterators.cpp +600 -0
- tkvsc_oead-1.4.5/lib/pybind11/tests/test_sequences_and_iterators.py +267 -0
- tkvsc_oead-1.4.5/lib/pybind11/tests/test_smart_ptr.cpp +476 -0
- tkvsc_oead-1.4.5/lib/pybind11/tests/test_smart_ptr.py +317 -0
- tkvsc_oead-1.4.5/lib/pybind11/tests/test_stl.cpp +549 -0
- tkvsc_oead-1.4.5/lib/pybind11/tests/test_stl.py +383 -0
- tkvsc_oead-1.4.5/lib/pybind11/tests/test_stl_binders.cpp +275 -0
- tkvsc_oead-1.4.5/lib/pybind11/tests/test_stl_binders.py +395 -0
- tkvsc_oead-1.4.5/lib/pybind11/tests/test_tagbased_polymorphic.cpp +148 -0
- tkvsc_oead-1.4.5/lib/pybind11/tests/test_tagbased_polymorphic.py +30 -0
- tkvsc_oead-1.4.5/lib/pybind11/tests/test_thread.cpp +66 -0
- tkvsc_oead-1.4.5/lib/pybind11/tests/test_thread.py +49 -0
- tkvsc_oead-1.4.5/lib/pybind11/tests/test_type_caster_pyobject_ptr.cpp +167 -0
- tkvsc_oead-1.4.5/lib/pybind11/tests/test_type_caster_pyobject_ptr.py +122 -0
- tkvsc_oead-1.4.5/lib/pybind11/tests/test_type_caster_std_function_specializations.cpp +46 -0
- tkvsc_oead-1.4.5/lib/pybind11/tests/test_type_caster_std_function_specializations.py +15 -0
- tkvsc_oead-1.4.5/lib/pybind11/tests/test_union.cpp +22 -0
- tkvsc_oead-1.4.5/lib/pybind11/tests/test_union.py +10 -0
- tkvsc_oead-1.4.5/lib/pybind11/tests/test_unnamed_namespace_a.cpp +38 -0
- tkvsc_oead-1.4.5/lib/pybind11/tests/test_unnamed_namespace_a.py +36 -0
- tkvsc_oead-1.4.5/lib/pybind11/tests/test_unnamed_namespace_b.cpp +13 -0
- tkvsc_oead-1.4.5/lib/pybind11/tests/test_unnamed_namespace_b.py +7 -0
- tkvsc_oead-1.4.5/lib/pybind11/tests/test_vector_unique_ptr_member.cpp +54 -0
- tkvsc_oead-1.4.5/lib/pybind11/tests/test_vector_unique_ptr_member.py +16 -0
- tkvsc_oead-1.4.5/lib/pybind11/tests/test_virtual_functions.cpp +592 -0
- tkvsc_oead-1.4.5/lib/pybind11/tests/test_virtual_functions.py +463 -0
- tkvsc_oead-1.4.5/lib/pybind11/tests/valgrind-numpy-scipy.supp +140 -0
- tkvsc_oead-1.4.5/lib/pybind11/tests/valgrind-python.supp +117 -0
- tkvsc_oead-1.4.5/lib/pybind11/tools/FindCatch.cmake +76 -0
- tkvsc_oead-1.4.5/lib/pybind11/tools/FindEigen3.cmake +86 -0
- tkvsc_oead-1.4.5/lib/pybind11/tools/FindPythonLibsNew.cmake +310 -0
- tkvsc_oead-1.4.5/lib/pybind11/tools/JoinPaths.cmake +23 -0
- tkvsc_oead-1.4.5/lib/pybind11/tools/check-style.sh +44 -0
- tkvsc_oead-1.4.5/lib/pybind11/tools/cmake_uninstall.cmake.in +23 -0
- tkvsc_oead-1.4.5/lib/pybind11/tools/codespell_ignore_lines_from_errors.py +40 -0
- tkvsc_oead-1.4.5/lib/pybind11/tools/libsize.py +38 -0
- tkvsc_oead-1.4.5/lib/pybind11/tools/make_changelog.py +92 -0
- tkvsc_oead-1.4.5/lib/pybind11/tools/pybind11.pc.in +7 -0
- tkvsc_oead-1.4.5/lib/pybind11/tools/pybind11Common.cmake +455 -0
- tkvsc_oead-1.4.5/lib/pybind11/tools/pybind11Config.cmake.in +233 -0
- tkvsc_oead-1.4.5/lib/pybind11/tools/pybind11GuessPythonExtSuffix.cmake +86 -0
- tkvsc_oead-1.4.5/lib/pybind11/tools/pybind11NewTools.cmake +341 -0
- tkvsc_oead-1.4.5/lib/pybind11/tools/pybind11Tools.cmake +239 -0
- tkvsc_oead-1.4.5/lib/pybind11/tools/pyproject.toml +3 -0
- tkvsc_oead-1.4.5/lib/pybind11/tools/setup_global.py.in +63 -0
- tkvsc_oead-1.4.5/lib/pybind11/tools/setup_main.py.in +44 -0
- tkvsc_oead-1.4.5/lib/pybind11/tools/test-pybind11GuessPythonExtSuffix.cmake +161 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/.ci/travis-install.sh +127 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/.ci/travis-setenv.sh +127 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/.ci/vagrant-provision.sh +41 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/.git +1 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/.gitignore +35 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/.gitmodules +3 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/.lgtm.yml +2 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/.travis.yml +111 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/CHANGELOG.md +12 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/CMakeLists.txt +105 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/CONTRIBUTING.md +21 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/LICENSE.txt +20 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/README.md +1259 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/ROADMAP.md +34 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/api/CMakeLists.txt +133 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/api/python/parse.py +414 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/api/python/parse_bm.py +128 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/api/python/requirements_dev.txt +3 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/api/python/setup.py +17 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/api/ryml.i +535 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/appveyor.yml +127 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/bm/CMakeLists.txt +78 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/bm/bm_parse.cpp +350 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/bm/cases/appveyor.yml +90 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/bm/cases/compile_commands.json +362 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/bm/cases/travis.yml +107 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/bm/results/parse.linux.i7_6800K.md +90 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/.ci/travis-install.sh +127 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/.ci/travis-setenv.sh +126 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/.ci/vagrant-provision.sh +41 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/.git +1 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/.gitignore +29 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/.gitmodules +6 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/.old/log.hpp +9 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/.old/util.hpp +4091 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/.travis.yml +99 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/CMakeLists.txt +77 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/LICENSE.txt +20 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/README.md +213 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/ROADMAP.md +23 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/appveyor.yml +127 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/bm/CMakeLists.txt +9 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/bm/charconv.cpp +879 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/cmake/.git +1 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/cmake/ConfigurationTypes.cmake +120 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/cmake/CreateSourceGroup.cmake +30 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/cmake/Doxyfile.full.in +2567 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/cmake/Doxyfile.in +2566 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/cmake/ExternalProjectUtils.cmake +215 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/cmake/FindD3D12.cmake +75 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/cmake/FindDX12.cmake +76 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/cmake/GetFlags.cmake +53 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/cmake/GetNames.cmake +51 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/cmake/PVS-Studio.cmake +275 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/cmake/PatchUtils.cmake +69 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/cmake/PrintVar.cmake +27 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/cmake/README.md +25 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/cmake/Toolchain-PS4.cmake +73 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/cmake/Toolchain-XBoxOne.cmake +93 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/cmake/bm-xp/README.md +4 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/cmake/bm-xp/bm_xp.js +334 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/cmake/bm-xp/download-deps.sh +26 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/cmake/bm-xp/index.html +63 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/cmake/c4CatSources.cmake +105 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/cmake/c4Doxygen.cmake +92 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/cmake/c4GetTargetPropertyRecursive.cmake +179 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/cmake/c4Project.cmake +2753 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/cmake/c4SanitizeTarget.cmake +282 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/cmake/c4StaticAnalysis.cmake +154 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/cmake/c4stlAddTarget.cmake +5 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/ext/debugbreak/.git +1 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/ext/debugbreak/.gitignore +10 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/ext/debugbreak/README.md +120 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/ext/debugbreak/debugbreak-gdb.py +128 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/ext/debugbreak/debugbreak.h +134 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/ext/debugbreak/test/break-c++.cc +9 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/ext/debugbreak/test/break.c +9 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/ext/debugbreak/test/break.gdb +2 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/ext/debugbreak/test/fib.c +21 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/ext/debugbreak/test/fib.gdb +2 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/ext/debugbreak/test/test-debugbreak.gdb +6 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/ext/debugbreak/test/trap.c +8 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/ext/debugbreak/test/trap.gdb +3 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/ext/sg14/README.md +1 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/ext/sg14/inplace_function.h +354 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/src/c4/allocator.hpp +399 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/src/c4/base64.cpp +207 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/src/c4/base64.hpp +109 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/src/c4/bitmask.hpp +270 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/src/c4/blob.hpp +51 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/src/c4/c4_pop.hpp +19 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/src/c4/c4_push.hpp +35 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/src/c4/c4core.natvis +149 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/src/c4/char_traits.cpp +13 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/src/c4/char_traits.hpp +97 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/src/c4/charconv.hpp +1193 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/src/c4/common.hpp +15 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/src/c4/compiler.hpp +95 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/src/c4/config.hpp +39 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/src/c4/cpu.hpp +93 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/src/c4/ctor_dtor.hpp +449 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/src/c4/enum.hpp +258 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/src/c4/error.cpp +173 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/src/c4/error.hpp +341 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/src/c4/export.hpp +18 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/src/c4/format.cpp +68 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/src/c4/format.hpp +691 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/src/c4/hash.hpp +95 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/src/c4/language.cpp +17 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/src/c4/language.hpp +246 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/src/c4/memory_resource.cpp +330 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/src/c4/memory_resource.hpp +564 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/src/c4/memory_util.cpp +50 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/src/c4/memory_util.hpp +339 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/src/c4/platform.hpp +39 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/src/c4/preprocessor.hpp +124 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/src/c4/restrict.hpp +51 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/src/c4/span.hpp +499 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/src/c4/std/std.hpp +10 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/src/c4/std/string.hpp +64 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/src/c4/std/tuple.hpp +179 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/src/c4/std/vector.hpp +70 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/src/c4/substr.hpp +1580 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/src/c4/substr_fwd.hpp +22 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/src/c4/szconv.hpp +64 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/src/c4/time.cpp +49 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/src/c4/time.hpp +80 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/src/c4/type_name.hpp +123 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/src/c4/types.hpp +479 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/src/c4/unrestrict.hpp +17 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/src/c4/windows.hpp +9 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/src/c4/windows_pop.hpp +37 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/src/c4/windows_push.hpp +92 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/test/CMakeLists.txt +56 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/test/allocator.cpp +239 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/test/base64.cpp +131 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/test/bitmask.cpp +296 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/test/blob.cpp +24 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/test/c4/libtest/archetypes.cpp +12 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/test/c4/libtest/archetypes.hpp +574 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/test/c4/libtest/supprwarn_pop.hpp +12 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/test/c4/libtest/supprwarn_push.hpp +47 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/test/c4/libtest/test.cpp +10 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/test/c4/test.hpp +366 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/test/char_traits.cpp +68 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/test/charconv.cpp +1038 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/test/ctor_dtor.cpp +335 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/test/enum.cpp +128 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/test/enum_common.hpp +143 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/test/error.cpp +51 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/test/error_exception.cpp +105 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/test/format.cpp +546 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/test/log.cpp +65 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/test/memory_resource.cpp +255 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/test/memory_util.cpp +244 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/test/preprocessor.cpp +56 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/test/span.cpp +767 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/test/std_string.cpp +28 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/test/std_vector.cpp +22 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/test/substr.cpp +3133 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/test/szconv.cpp +167 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/test/type_name.cpp +50 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/test/types.cpp +82 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/img/first_comparison_yaml_cpp.png +0 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/src/c4/yml/common.cpp +139 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/src/c4/yml/common.hpp +292 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/src/c4/yml/detail/checks.hpp +195 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/src/c4/yml/detail/parser_dbg.hpp +54 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/src/c4/yml/detail/print.hpp +126 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/src/c4/yml/detail/stack.hpp +241 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/src/c4/yml/emit.def.hpp +425 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/src/c4/yml/emit.hpp +359 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/src/c4/yml/export.hpp +18 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/src/c4/yml/node.hpp +856 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/src/c4/yml/parse.cpp +3899 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/src/c4/yml/parse.hpp +378 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/src/c4/yml/preprocess.cpp +227 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/src/c4/yml/preprocess.hpp +146 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/src/c4/yml/std/map.hpp +45 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/src/c4/yml/std/std.hpp +8 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/src/c4/yml/std/string.hpp +9 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/src/c4/yml/std/vector.hpp +40 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/src/c4/yml/tree.cpp +1682 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/src/c4/yml/tree.hpp +1104 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/src/c4/yml/writer.hpp +205 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/src/c4/yml/yml.hpp +10 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/src/ryml.hpp +8 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/src/ryml.natvis +127 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/src/ryml_std.hpp +6 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/test/CMakeLists.txt +148 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/test/libyaml.hpp +362 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/test/parse_emit.cpp +87 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/test/test_basic.cpp +1611 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/test/test_basic_json.cpp +247 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/test/test_block_folded.cpp +265 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/test/test_block_literal.cpp +373 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/test/test_case.cpp +867 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/test/test_case.hpp +479 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/test/test_complex_key.cpp +259 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/test/test_double_quoted.cpp +163 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/test/test_empty_doc.cpp +48 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/test/test_empty_file.cpp +31 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/test/test_empty_map.cpp +54 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/test/test_empty_seq.cpp +51 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/test/test_generic_map.cpp +100 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/test/test_generic_seq.cpp +55 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/test/test_github_issues.cpp +531 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/test/test_group.cpp +468 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/test/test_group.hpp +126 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/test/test_indentation.cpp +340 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/test/test_map_of_seq.cpp +216 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/test/test_merge.cpp +172 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/test/test_nested_mapx2.cpp +82 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/test/test_nested_mapx3.cpp +113 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/test/test_nested_mapx4.cpp +198 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/test/test_nested_seqx2.cpp +147 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/test/test_nested_seqx3.cpp +198 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/test/test_nested_seqx4.cpp +132 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/test/test_null_val.cpp +117 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/test/test_number.cpp +56 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/test/test_plain_scalar.cpp +503 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/test/test_preprocess.cpp +135 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/test/test_scalar_names.cpp +91 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/test/test_seq_of_map.cpp +164 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/test/test_simple_anchor.cpp +628 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/test/test_simple_doc.cpp +457 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/test/test_simple_map.cpp +643 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/test/test_simple_seq.cpp +541 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/test/test_simple_set.cpp +142 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/test/test_single_quoted.cpp +149 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/test/test_stack.cpp +324 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/test/test_suite.cpp +755 -0
- tkvsc_oead-1.4.5/lib/rapidyaml/test/test_tag_property.cpp +151 -0
- tkvsc_oead-1.4.5/lib/zlib-ng/.git +1 -0
- tkvsc_oead-1.4.5/lib/zlib-ng/.gitattributes +4 -0
- tkvsc_oead-1.4.5/lib/zlib-ng/.github/workflows/cmake.yml +378 -0
- tkvsc_oead-1.4.5/lib/zlib-ng/.github/workflows/configure.yml +160 -0
- tkvsc_oead-1.4.5/lib/zlib-ng/.gitignore +79 -0
- tkvsc_oead-1.4.5/lib/zlib-ng/CMakeLists.txt +1115 -0
- tkvsc_oead-1.4.5/lib/zlib-ng/FAQ.zlib +374 -0
- tkvsc_oead-1.4.5/lib/zlib-ng/LICENSE.md +19 -0
- tkvsc_oead-1.4.5/lib/zlib-ng/Makefile.in +393 -0
- tkvsc_oead-1.4.5/lib/zlib-ng/README.md +212 -0
- tkvsc_oead-1.4.5/lib/zlib-ng/adler32.c +132 -0
- tkvsc_oead-1.4.5/lib/zlib-ng/adler32_p.h +77 -0
- tkvsc_oead-1.4.5/lib/zlib-ng/arch/.gitignore +2 -0
- tkvsc_oead-1.4.5/lib/zlib-ng/arch/arm/Makefile.in +54 -0
- tkvsc_oead-1.4.5/lib/zlib-ng/arch/arm/adler32_neon.c +134 -0
- tkvsc_oead-1.4.5/lib/zlib-ng/arch/arm/adler32_neon.h +29 -0
- tkvsc_oead-1.4.5/lib/zlib-ng/arch/arm/arm.h +13 -0
- tkvsc_oead-1.4.5/lib/zlib-ng/arch/arm/armfeature.c +49 -0
- tkvsc_oead-1.4.5/lib/zlib-ng/arch/arm/crc32_acle.c +115 -0
- tkvsc_oead-1.4.5/lib/zlib-ng/arch/arm/ctzl.h +12 -0
- tkvsc_oead-1.4.5/lib/zlib-ng/arch/arm/fill_window_arm.c +169 -0
- tkvsc_oead-1.4.5/lib/zlib-ng/arch/arm/insert_string_acle.c +53 -0
- tkvsc_oead-1.4.5/lib/zlib-ng/arch/generic/Makefile.in +21 -0
- tkvsc_oead-1.4.5/lib/zlib-ng/arch/s390/Makefile.in +40 -0
- tkvsc_oead-1.4.5/lib/zlib-ng/arch/s390/README.md +80 -0
- tkvsc_oead-1.4.5/lib/zlib-ng/arch/s390/dfltcc_common.c +84 -0
- tkvsc_oead-1.4.5/lib/zlib-ng/arch/s390/dfltcc_common.h +29 -0
- tkvsc_oead-1.4.5/lib/zlib-ng/arch/s390/dfltcc_deflate.c +371 -0
- tkvsc_oead-1.4.5/lib/zlib-ng/arch/s390/dfltcc_deflate.h +53 -0
- tkvsc_oead-1.4.5/lib/zlib-ng/arch/s390/dfltcc_detail.h +199 -0
- tkvsc_oead-1.4.5/lib/zlib-ng/arch/s390/dfltcc_inflate.c +137 -0
- tkvsc_oead-1.4.5/lib/zlib-ng/arch/s390/dfltcc_inflate.h +44 -0
- tkvsc_oead-1.4.5/lib/zlib-ng/arch/x86/Makefile.in +71 -0
- tkvsc_oead-1.4.5/lib/zlib-ng/arch/x86/README.md +8 -0
- tkvsc_oead-1.4.5/lib/zlib-ng/arch/x86/crc_folding.c +458 -0
- tkvsc_oead-1.4.5/lib/zlib-ng/arch/x86/crc_folding.h +19 -0
- tkvsc_oead-1.4.5/lib/zlib-ng/arch/x86/deflate_quick.c +2395 -0
- tkvsc_oead-1.4.5/lib/zlib-ng/arch/x86/fill_window_sse.c +155 -0
- tkvsc_oead-1.4.5/lib/zlib-ng/arch/x86/insert_string_sse.c +71 -0
- tkvsc_oead-1.4.5/lib/zlib-ng/arch/x86/slide_avx.c +47 -0
- tkvsc_oead-1.4.5/lib/zlib-ng/arch/x86/slide_sse.c +46 -0
- tkvsc_oead-1.4.5/lib/zlib-ng/arch/x86/x86.c +78 -0
- tkvsc_oead-1.4.5/lib/zlib-ng/arch/x86/x86.h +17 -0
- tkvsc_oead-1.4.5/lib/zlib-ng/cmake/archdetect.c +95 -0
- tkvsc_oead-1.4.5/lib/zlib-ng/cmake/archdetect.cmake +93 -0
- tkvsc_oead-1.4.5/lib/zlib-ng/cmake/run-and-redirect.cmake +26 -0
- tkvsc_oead-1.4.5/lib/zlib-ng/cmake/toolchain-aarch64.cmake +26 -0
- tkvsc_oead-1.4.5/lib/zlib-ng/cmake/toolchain-arm.cmake +24 -0
- tkvsc_oead-1.4.5/lib/zlib-ng/cmake/toolchain-powerpc.cmake +25 -0
- tkvsc_oead-1.4.5/lib/zlib-ng/cmake/toolchain-powerpc64.cmake +25 -0
- tkvsc_oead-1.4.5/lib/zlib-ng/cmake/toolchain-powerpc64le.cmake +25 -0
- tkvsc_oead-1.4.5/lib/zlib-ng/cmake/toolchain-s390x.cmake +25 -0
- tkvsc_oead-1.4.5/lib/zlib-ng/cmake/toolchain-sparc64.cmake +25 -0
- tkvsc_oead-1.4.5/lib/zlib-ng/compress.c +82 -0
- tkvsc_oead-1.4.5/lib/zlib-ng/crc32.c +281 -0
- tkvsc_oead-1.4.5/lib/zlib-ng/crc32.h +735 -0
- tkvsc_oead-1.4.5/lib/zlib-ng/crc32_p.h +19 -0
- tkvsc_oead-1.4.5/lib/zlib-ng/deflate.c +1798 -0
- tkvsc_oead-1.4.5/lib/zlib-ng/deflate.h +478 -0
- tkvsc_oead-1.4.5/lib/zlib-ng/deflate_fast.c +120 -0
- tkvsc_oead-1.4.5/lib/zlib-ng/deflate_medium.c +327 -0
- tkvsc_oead-1.4.5/lib/zlib-ng/deflate_p.h +77 -0
- tkvsc_oead-1.4.5/lib/zlib-ng/deflate_slow.c +164 -0
- tkvsc_oead-1.4.5/lib/zlib-ng/doc/algorithm.txt +209 -0
- tkvsc_oead-1.4.5/lib/zlib-ng/doc/rfc1950.txt +619 -0
- tkvsc_oead-1.4.5/lib/zlib-ng/doc/rfc1951.txt +955 -0
- tkvsc_oead-1.4.5/lib/zlib-ng/doc/rfc1952.txt +675 -0
- tkvsc_oead-1.4.5/lib/zlib-ng/doc/txtvsbin.txt +107 -0
- tkvsc_oead-1.4.5/lib/zlib-ng/fallback_builtins.h +24 -0
- tkvsc_oead-1.4.5/lib/zlib-ng/functable.c +159 -0
- tkvsc_oead-1.4.5/lib/zlib-ng/functable.h +22 -0
- tkvsc_oead-1.4.5/lib/zlib-ng/gzclose.c +24 -0
- tkvsc_oead-1.4.5/lib/zlib-ng/gzguts.h +167 -0
- tkvsc_oead-1.4.5/lib/zlib-ng/gzlib.c +520 -0
- tkvsc_oead-1.4.5/lib/zlib-ng/gzread.c +601 -0
- tkvsc_oead-1.4.5/lib/zlib-ng/gzwrite.c +525 -0
- tkvsc_oead-1.4.5/lib/zlib-ng/infback.c +508 -0
- tkvsc_oead-1.4.5/lib/zlib-ng/inffast.c +379 -0
- tkvsc_oead-1.4.5/lib/zlib-ng/inffast.h +18 -0
- tkvsc_oead-1.4.5/lib/zlib-ng/inffixed.h +94 -0
- tkvsc_oead-1.4.5/lib/zlib-ng/inflate.c +1369 -0
- tkvsc_oead-1.4.5/lib/zlib-ng/inflate.h +134 -0
- tkvsc_oead-1.4.5/lib/zlib-ng/inflate_p.h +94 -0
- tkvsc_oead-1.4.5/lib/zlib-ng/inftrees.c +297 -0
- tkvsc_oead-1.4.5/lib/zlib-ng/inftrees.h +66 -0
- tkvsc_oead-1.4.5/lib/zlib-ng/match_p.h +508 -0
- tkvsc_oead-1.4.5/lib/zlib-ng/memcopy.h +675 -0
- tkvsc_oead-1.4.5/lib/zlib-ng/test/.gitignore +5 -0
- tkvsc_oead-1.4.5/lib/zlib-ng/test/CVE-2002-0059/test.gz +0 -0
- tkvsc_oead-1.4.5/lib/zlib-ng/test/CVE-2003-0107.c +20 -0
- tkvsc_oead-1.4.5/lib/zlib-ng/test/CVE-2004-0797/test.gz +0 -0
- tkvsc_oead-1.4.5/lib/zlib-ng/test/CVE-2005-1849/test.gz +0 -0
- tkvsc_oead-1.4.5/lib/zlib-ng/test/CVE-2005-2096/test.gz +0 -0
- tkvsc_oead-1.4.5/lib/zlib-ng/test/GH-361/test.txt +4 -0
- tkvsc_oead-1.4.5/lib/zlib-ng/test/GH-364/test.bin +0 -0
- tkvsc_oead-1.4.5/lib/zlib-ng/test/Makefile.in +119 -0
- tkvsc_oead-1.4.5/lib/zlib-ng/test/README.md +33 -0
- tkvsc_oead-1.4.5/lib/zlib-ng/test/data/fireworks.jpg +0 -0
- tkvsc_oead-1.4.5/lib/zlib-ng/test/data/lcet10.txt +7519 -0
- tkvsc_oead-1.4.5/lib/zlib-ng/test/data/paper-100k.pdf +600 -2
- tkvsc_oead-1.4.5/lib/zlib-ng/test/example.c +934 -0
- tkvsc_oead-1.4.5/lib/zlib-ng/test/fuzz/checksum_fuzzer.c +84 -0
- tkvsc_oead-1.4.5/lib/zlib-ng/test/fuzz/compress_fuzzer.c +87 -0
- tkvsc_oead-1.4.5/lib/zlib-ng/test/fuzz/example_dict_fuzzer.c +169 -0
- tkvsc_oead-1.4.5/lib/zlib-ng/test/fuzz/example_flush_fuzzer.c +124 -0
- tkvsc_oead-1.4.5/lib/zlib-ng/test/fuzz/example_large_fuzzer.c +141 -0
- tkvsc_oead-1.4.5/lib/zlib-ng/test/fuzz/example_small_fuzzer.c +123 -0
- tkvsc_oead-1.4.5/lib/zlib-ng/test/fuzz/minigzip_fuzzer.c +320 -0
- tkvsc_oead-1.4.5/lib/zlib-ng/test/fuzz/standalone_fuzz_target_runner.c +36 -0
- tkvsc_oead-1.4.5/lib/zlib-ng/test/infcover.c +665 -0
- tkvsc_oead-1.4.5/lib/zlib-ng/test/minigzip.c +356 -0
- tkvsc_oead-1.4.5/lib/zlib-ng/test/switchlevels.c +108 -0
- tkvsc_oead-1.4.5/lib/zlib-ng/test/testCVEinputs.sh +30 -0
- tkvsc_oead-1.4.5/lib/zlib-ng/tools/makecrct.c +156 -0
- tkvsc_oead-1.4.5/lib/zlib-ng/tools/makefixed.c +90 -0
- tkvsc_oead-1.4.5/lib/zlib-ng/tools/maketrees.c +147 -0
- tkvsc_oead-1.4.5/lib/zlib-ng/trees.c +916 -0
- tkvsc_oead-1.4.5/lib/zlib-ng/trees.h +132 -0
- tkvsc_oead-1.4.5/lib/zlib-ng/trees_p.h +40 -0
- tkvsc_oead-1.4.5/lib/zlib-ng/uncompr.c +87 -0
- tkvsc_oead-1.4.5/lib/zlib-ng/win32/DLL_FAQ.txt +397 -0
- tkvsc_oead-1.4.5/lib/zlib-ng/win32/Makefile.a64 +168 -0
- tkvsc_oead-1.4.5/lib/zlib-ng/win32/Makefile.arm +182 -0
- tkvsc_oead-1.4.5/lib/zlib-ng/win32/Makefile.msc +175 -0
- tkvsc_oead-1.4.5/lib/zlib-ng/win32/README-WIN32.txt +103 -0
- tkvsc_oead-1.4.5/lib/zlib-ng/win32/zlib-ng.def +63 -0
- tkvsc_oead-1.4.5/lib/zlib-ng/win32/zlib-ng1.rc +40 -0
- tkvsc_oead-1.4.5/lib/zlib-ng/win32/zlib.def +61 -0
- tkvsc_oead-1.4.5/lib/zlib-ng/win32/zlib1.rc +40 -0
- tkvsc_oead-1.4.5/lib/zlib-ng/win32/zlibcompat.def +94 -0
- tkvsc_oead-1.4.5/lib/zlib-ng/zbuild.h +25 -0
- tkvsc_oead-1.4.5/lib/zlib-ng/zconf-ng.h.in +174 -0
- tkvsc_oead-1.4.5/lib/zlib-ng/zconf.h.in +178 -0
- tkvsc_oead-1.4.5/lib/zlib-ng/zendian.h +60 -0
- tkvsc_oead-1.4.5/lib/zlib-ng/zlib-ng.h +1957 -0
- tkvsc_oead-1.4.5/lib/zlib-ng/zlib-ng.map +109 -0
- tkvsc_oead-1.4.5/lib/zlib-ng/zlib.3 +149 -0
- tkvsc_oead-1.4.5/lib/zlib-ng/zlib.h +1848 -0
- tkvsc_oead-1.4.5/lib/zlib-ng/zlib.map +96 -0
- tkvsc_oead-1.4.5/lib/zlib-ng/zlib.pc.cmakein +13 -0
- tkvsc_oead-1.4.5/lib/zlib-ng/zlib.pc.in +13 -0
- tkvsc_oead-1.4.5/lib/zlib-ng/zutil.c +142 -0
- tkvsc_oead-1.4.5/lib/zlib-ng/zutil.h +255 -0
- tkvsc_oead-1.4.5/py/CMakeLists.txt +47 -0
- tkvsc_oead-1.4.5/py/_version.py +21 -0
- tkvsc_oead-1.4.5/py/main.cpp +31 -0
- tkvsc_oead-1.4.5/py/main.h +37 -0
- tkvsc_oead-1.4.5/py/py_aamp.cpp +146 -0
- tkvsc_oead-1.4.5/py/py_byml.cpp +140 -0
- tkvsc_oead-1.4.5/py/py_common_types.cpp +160 -0
- tkvsc_oead-1.4.5/py/py_gsheet.cpp +134 -0
- tkvsc_oead-1.4.5/py/py_sarc.cpp +73 -0
- tkvsc_oead-1.4.5/py/py_yaz0.cpp +65 -0
- tkvsc_oead-1.4.5/py/pybind11_common.h +296 -0
- tkvsc_oead-1.4.5/py/pybind11_variant_caster.h +180 -0
- tkvsc_oead-1.4.5/readme.rst +77 -0
- tkvsc_oead-1.4.5/setup.cfg +14 -0
- tkvsc_oead-1.4.5/setup.py +114 -0
- tkvsc_oead-1.4.5/src/aamp.cpp +515 -0
- tkvsc_oead-1.4.5/src/aamp_text.cpp +461 -0
- tkvsc_oead-1.4.5/src/byml.cpp +736 -0
- tkvsc_oead-1.4.5/src/byml_text.cpp +307 -0
- tkvsc_oead-1.4.5/src/gsheet.cpp +621 -0
- tkvsc_oead-1.4.5/src/include/oead/aamp.h +231 -0
- tkvsc_oead-1.4.5/src/include/oead/byml.h +221 -0
- tkvsc_oead-1.4.5/src/include/oead/errors.h +41 -0
- tkvsc_oead-1.4.5/src/include/oead/gsheet.h +349 -0
- tkvsc_oead-1.4.5/src/include/oead/sarc.h +156 -0
- tkvsc_oead-1.4.5/src/include/oead/types.h +227 -0
- tkvsc_oead-1.4.5/src/include/oead/util/align.h +21 -0
- tkvsc_oead-1.4.5/src/include/oead/util/binary_reader.h +197 -0
- tkvsc_oead-1.4.5/src/include/oead/util/bit_utils.h +323 -0
- tkvsc_oead-1.4.5/src/include/oead/util/hash.h +45 -0
- tkvsc_oead-1.4.5/src/include/oead/util/iterator_utils.h +64 -0
- tkvsc_oead-1.4.5/src/include/oead/util/magic_utils.h +34 -0
- tkvsc_oead-1.4.5/src/include/oead/util/scope_guard.h +37 -0
- tkvsc_oead-1.4.5/src/include/oead/util/string_utils.h +44 -0
- tkvsc_oead-1.4.5/src/include/oead/util/swap.h +220 -0
- tkvsc_oead-1.4.5/src/include/oead/util/type_utils.h +67 -0
- tkvsc_oead-1.4.5/src/include/oead/util/variant_utils.h +178 -0
- tkvsc_oead-1.4.5/src/include/oead/yaz0.h +62 -0
- tkvsc_oead-1.4.5/src/sarc.cpp +434 -0
- tkvsc_oead-1.4.5/src/yaml.cpp +210 -0
- tkvsc_oead-1.4.5/src/yaml.h +236 -0
- tkvsc_oead-1.4.5/src/yaz0.cpp +185 -0
- tkvsc_oead-1.4.5/tkvsc_oead.egg-info/PKG-INFO +102 -0
- tkvsc_oead-1.4.5/tkvsc_oead.egg-info/SOURCES.txt +1753 -0
- tkvsc_oead-1.4.5/tkvsc_oead.egg-info/dependency_links.txt +1 -0
- tkvsc_oead-1.4.5/tkvsc_oead.egg-info/not-zip-safe +1 -0
- tkvsc_oead-1.4.5/tkvsc_oead.egg-info/top_level.txt +1 -0
- tkvsc_oead-1.4.5/versioneer.py +2277 -0
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
cmake_minimum_required(VERSION 3.10)
|
|
2
|
+
project(oead CXX)
|
|
3
|
+
|
|
4
|
+
set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
|
|
5
|
+
if ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU")
|
|
6
|
+
add_compile_options(-fdiagnostics-color=always)
|
|
7
|
+
elseif ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "Clang")
|
|
8
|
+
add_compile_options(-fcolor-diagnostics)
|
|
9
|
+
endif()
|
|
10
|
+
|
|
11
|
+
set(CMAKE_CXX_STANDARD 17)
|
|
12
|
+
set(CMAKE_CXX_STANDARD_REQUIRED ON)
|
|
13
|
+
set(CMAKE_CXX_EXTENSIONS OFF)
|
|
14
|
+
set(CMAKE_POSITION_INDEPENDENT_CODE ON)
|
|
15
|
+
|
|
16
|
+
include(CMakeRC.cmake)
|
|
17
|
+
cmrc_add_resource_library(oead_res ALIAS oead::res NAMESPACE oead::res
|
|
18
|
+
data/aglenv_file_info.json
|
|
19
|
+
data/botw_hashed_names.txt
|
|
20
|
+
data/botw_numbered_names.txt
|
|
21
|
+
data/botw_resource_factory_info.tsv
|
|
22
|
+
)
|
|
23
|
+
|
|
24
|
+
add_library(oead
|
|
25
|
+
src/include/oead/util/align.h
|
|
26
|
+
src/include/oead/util/binary_reader.h
|
|
27
|
+
src/include/oead/util/bit_utils.h
|
|
28
|
+
src/include/oead/util/hash.h
|
|
29
|
+
src/include/oead/util/iterator_utils.h
|
|
30
|
+
src/include/oead/util/magic_utils.h
|
|
31
|
+
src/include/oead/util/scope_guard.h
|
|
32
|
+
src/include/oead/util/string_utils.h
|
|
33
|
+
src/include/oead/util/swap.h
|
|
34
|
+
src/include/oead/util/type_utils.h
|
|
35
|
+
src/include/oead/util/variant_utils.h
|
|
36
|
+
src/include/oead/aamp.h
|
|
37
|
+
src/include/oead/byml.h
|
|
38
|
+
src/include/oead/errors.h
|
|
39
|
+
src/include/oead/gsheet.h
|
|
40
|
+
src/include/oead/sarc.h
|
|
41
|
+
src/include/oead/types.h
|
|
42
|
+
src/include/oead/yaz0.h
|
|
43
|
+
src/aamp.cpp
|
|
44
|
+
src/aamp_text.cpp
|
|
45
|
+
src/byml.cpp
|
|
46
|
+
src/byml_text.cpp
|
|
47
|
+
src/gsheet.cpp
|
|
48
|
+
src/sarc.cpp
|
|
49
|
+
src/yaml.cpp
|
|
50
|
+
src/yaml.h
|
|
51
|
+
src/yaz0.cpp
|
|
52
|
+
)
|
|
53
|
+
|
|
54
|
+
target_include_directories(oead PUBLIC src/include)
|
|
55
|
+
target_include_directories(oead PRIVATE src/)
|
|
56
|
+
if (MSVC)
|
|
57
|
+
target_compile_options(oead PRIVATE /W4 /wd4244 /wd4127 /Zc:__cplusplus)
|
|
58
|
+
else()
|
|
59
|
+
target_compile_options(oead PRIVATE -Wall -Wextra -fno-plt)
|
|
60
|
+
endif()
|
|
61
|
+
|
|
62
|
+
target_include_directories(oead SYSTEM PUBLIC lib/nonstd)
|
|
63
|
+
|
|
64
|
+
set(BUILD_TESTING OFF)
|
|
65
|
+
add_subdirectory(lib/abseil)
|
|
66
|
+
add_subdirectory(lib/EasyIterator)
|
|
67
|
+
add_subdirectory(lib/libyaml)
|
|
68
|
+
add_subdirectory(lib/ordered-map)
|
|
69
|
+
add_subdirectory(lib/rapidyaml)
|
|
70
|
+
# Enabling AVX2 would require users to have a recent CPU
|
|
71
|
+
option(WITH_AVX2 "" OFF)
|
|
72
|
+
option(ZLIB_ENABLE_TESTS "" OFF)
|
|
73
|
+
add_subdirectory(lib/zlib-ng)
|
|
74
|
+
target_link_libraries(oead
|
|
75
|
+
PUBLIC
|
|
76
|
+
absl::btree
|
|
77
|
+
absl::flat_hash_map
|
|
78
|
+
absl::hash
|
|
79
|
+
EasyIterator
|
|
80
|
+
tsl::ordered_map
|
|
81
|
+
PRIVATE
|
|
82
|
+
oead::res
|
|
83
|
+
absl::inlined_vector
|
|
84
|
+
absl::strings
|
|
85
|
+
absl::str_format
|
|
86
|
+
ryml
|
|
87
|
+
yaml
|
|
88
|
+
zlib
|
|
89
|
+
)
|
|
@@ -0,0 +1,617 @@
|
|
|
1
|
+
# This block is executed when generating an intermediate resource file, not when
|
|
2
|
+
# running in CMake configure mode
|
|
3
|
+
if(_CMRC_GENERATE_MODE)
|
|
4
|
+
# Read in the digits
|
|
5
|
+
file(READ "${INPUT_FILE}" bytes HEX)
|
|
6
|
+
# Format each pair into a character literal. Heuristics seem to favor doing
|
|
7
|
+
# the conversion in groups of five for fastest conversion
|
|
8
|
+
string(REGEX REPLACE "(..)(..)(..)(..)(..)" "'\\\\x\\1','\\\\x\\2','\\\\x\\3','\\\\x\\4','\\\\x\\5'," chars "${bytes}")
|
|
9
|
+
# Since we did this in groups, we have some leftovers to clean up
|
|
10
|
+
string(LENGTH "${bytes}" n_bytes2)
|
|
11
|
+
math(EXPR n_bytes "${n_bytes2} / 2")
|
|
12
|
+
math(EXPR remainder "${n_bytes} % 5") # <-- '5' is the grouping count from above
|
|
13
|
+
set(cleanup_re "$")
|
|
14
|
+
set(cleanup_sub )
|
|
15
|
+
while(remainder)
|
|
16
|
+
set(cleanup_re "(..)${cleanup_re}")
|
|
17
|
+
set(cleanup_sub "'\\\\x\\${remainder}',${cleanup_sub}")
|
|
18
|
+
math(EXPR remainder "${remainder} - 1")
|
|
19
|
+
endwhile()
|
|
20
|
+
if(NOT cleanup_re STREQUAL "$")
|
|
21
|
+
string(REGEX REPLACE "${cleanup_re}" "${cleanup_sub}" chars "${chars}")
|
|
22
|
+
endif()
|
|
23
|
+
string(CONFIGURE [[
|
|
24
|
+
namespace { const char file_array[] = { @chars@ 0 }; }
|
|
25
|
+
namespace cmrc { namespace @NAMESPACE@ { namespace res_chars {
|
|
26
|
+
extern const char* const @SYMBOL@_begin = file_array;
|
|
27
|
+
extern const char* const @SYMBOL@_end = file_array + @n_bytes@;
|
|
28
|
+
}}}
|
|
29
|
+
]] code)
|
|
30
|
+
file(WRITE "${OUTPUT_FILE}" "${code}")
|
|
31
|
+
# Exit from the script. Nothing else needs to be processed
|
|
32
|
+
return()
|
|
33
|
+
endif()
|
|
34
|
+
|
|
35
|
+
set(_version 2.0.0)
|
|
36
|
+
|
|
37
|
+
cmake_minimum_required(VERSION 3.5)
|
|
38
|
+
include(CMakeParseArguments)
|
|
39
|
+
|
|
40
|
+
if(COMMAND cmrc_add_resource_library)
|
|
41
|
+
if(NOT DEFINED _CMRC_VERSION OR NOT (_version STREQUAL _CMRC_VERSION))
|
|
42
|
+
message(WARNING "More than one CMakeRC version has been included in this project.")
|
|
43
|
+
endif()
|
|
44
|
+
# CMakeRC has already been included! Don't do anything
|
|
45
|
+
return()
|
|
46
|
+
endif()
|
|
47
|
+
|
|
48
|
+
set(_CMRC_VERSION "${_version}" CACHE INTERNAL "CMakeRC version. Used for checking for conflicts")
|
|
49
|
+
|
|
50
|
+
set(_CMRC_SCRIPT "${CMAKE_CURRENT_LIST_FILE}" CACHE INTERNAL "Path to CMakeRC script")
|
|
51
|
+
|
|
52
|
+
function(_cmrc_normalize_path var)
|
|
53
|
+
set(path "${${var}}")
|
|
54
|
+
file(TO_CMAKE_PATH "${path}" path)
|
|
55
|
+
while(path MATCHES "//")
|
|
56
|
+
string(REPLACE "//" "/" path "${path}")
|
|
57
|
+
endwhile()
|
|
58
|
+
string(REGEX REPLACE "/+$" "" path "${path}")
|
|
59
|
+
set("${var}" "${path}" PARENT_SCOPE)
|
|
60
|
+
endfunction()
|
|
61
|
+
|
|
62
|
+
get_filename_component(_inc_dir "${CMAKE_BINARY_DIR}/_cmrc/include" ABSOLUTE)
|
|
63
|
+
set(CMRC_INCLUDE_DIR "${_inc_dir}" CACHE INTERNAL "Directory for CMakeRC include files")
|
|
64
|
+
# Let's generate the primary include file
|
|
65
|
+
file(MAKE_DIRECTORY "${CMRC_INCLUDE_DIR}/cmrc")
|
|
66
|
+
set(hpp_content [==[
|
|
67
|
+
#ifndef CMRC_CMRC_HPP_INCLUDED
|
|
68
|
+
#define CMRC_CMRC_HPP_INCLUDED
|
|
69
|
+
|
|
70
|
+
#include <cassert>
|
|
71
|
+
#include <functional>
|
|
72
|
+
#include <iterator>
|
|
73
|
+
#include <list>
|
|
74
|
+
#include <map>
|
|
75
|
+
#include <mutex>
|
|
76
|
+
#include <string>
|
|
77
|
+
#include <system_error>
|
|
78
|
+
#include <type_traits>
|
|
79
|
+
|
|
80
|
+
namespace cmrc { namespace detail { struct dummy; } }
|
|
81
|
+
|
|
82
|
+
#define CMRC_DECLARE(libid) \
|
|
83
|
+
namespace cmrc { namespace detail { \
|
|
84
|
+
struct dummy; \
|
|
85
|
+
static_assert(std::is_same<dummy, ::cmrc::detail::dummy>::value, "CMRC_DECLARE() must only appear at the global namespace"); \
|
|
86
|
+
} } \
|
|
87
|
+
namespace cmrc { namespace libid { \
|
|
88
|
+
cmrc::embedded_filesystem get_filesystem(); \
|
|
89
|
+
} } static_assert(true, "")
|
|
90
|
+
|
|
91
|
+
namespace cmrc {
|
|
92
|
+
|
|
93
|
+
class file {
|
|
94
|
+
const char* _begin = nullptr;
|
|
95
|
+
const char* _end = nullptr;
|
|
96
|
+
|
|
97
|
+
public:
|
|
98
|
+
using iterator = const char*;
|
|
99
|
+
using const_iterator = iterator;
|
|
100
|
+
iterator begin() const noexcept { return _begin; }
|
|
101
|
+
iterator cbegin() const noexcept { return _begin; }
|
|
102
|
+
iterator end() const noexcept { return _end; }
|
|
103
|
+
iterator cend() const noexcept { return _end; }
|
|
104
|
+
std::size_t size() const { return std::distance(begin(), end()); }
|
|
105
|
+
|
|
106
|
+
file() = default;
|
|
107
|
+
file(iterator beg, iterator end) noexcept : _begin(beg), _end(end) {}
|
|
108
|
+
};
|
|
109
|
+
|
|
110
|
+
class directory_entry;
|
|
111
|
+
|
|
112
|
+
namespace detail {
|
|
113
|
+
|
|
114
|
+
class directory;
|
|
115
|
+
class file_data;
|
|
116
|
+
|
|
117
|
+
class file_or_directory {
|
|
118
|
+
union _data_t {
|
|
119
|
+
class file_data* file_data;
|
|
120
|
+
class directory* directory;
|
|
121
|
+
} _data;
|
|
122
|
+
bool _is_file = true;
|
|
123
|
+
|
|
124
|
+
public:
|
|
125
|
+
explicit file_or_directory(file_data& f) {
|
|
126
|
+
_data.file_data = &f;
|
|
127
|
+
}
|
|
128
|
+
explicit file_or_directory(directory& d) {
|
|
129
|
+
_data.directory = &d;
|
|
130
|
+
_is_file = false;
|
|
131
|
+
}
|
|
132
|
+
bool is_file() const noexcept {
|
|
133
|
+
return _is_file;
|
|
134
|
+
}
|
|
135
|
+
bool is_directory() const noexcept {
|
|
136
|
+
return !is_file();
|
|
137
|
+
}
|
|
138
|
+
const directory& as_directory() const noexcept {
|
|
139
|
+
assert(!is_file());
|
|
140
|
+
return *_data.directory;
|
|
141
|
+
}
|
|
142
|
+
const file_data& as_file() const noexcept {
|
|
143
|
+
assert(is_file());
|
|
144
|
+
return *_data.file_data;
|
|
145
|
+
}
|
|
146
|
+
};
|
|
147
|
+
|
|
148
|
+
class file_data {
|
|
149
|
+
public:
|
|
150
|
+
const char* begin_ptr;
|
|
151
|
+
const char* end_ptr;
|
|
152
|
+
file_data(const file_data&) = delete;
|
|
153
|
+
file_data(const char* b, const char* e) : begin_ptr(b), end_ptr(e) {}
|
|
154
|
+
};
|
|
155
|
+
|
|
156
|
+
inline std::pair<std::string, std::string> split_path(const std::string& path) {
|
|
157
|
+
auto first_sep = path.find("/");
|
|
158
|
+
if (first_sep == path.npos) {
|
|
159
|
+
return std::make_pair(path, "");
|
|
160
|
+
} else {
|
|
161
|
+
return std::make_pair(path.substr(0, first_sep), path.substr(first_sep + 1));
|
|
162
|
+
}
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
struct created_subdirectory {
|
|
166
|
+
class directory& directory;
|
|
167
|
+
class file_or_directory& index_entry;
|
|
168
|
+
};
|
|
169
|
+
|
|
170
|
+
class directory {
|
|
171
|
+
std::list<file_data> _files;
|
|
172
|
+
std::list<directory> _dirs;
|
|
173
|
+
std::map<std::string, file_or_directory> _index;
|
|
174
|
+
|
|
175
|
+
using base_iterator = std::map<std::string, file_or_directory>::const_iterator;
|
|
176
|
+
|
|
177
|
+
public:
|
|
178
|
+
|
|
179
|
+
directory() = default;
|
|
180
|
+
directory(const directory&) = delete;
|
|
181
|
+
|
|
182
|
+
created_subdirectory add_subdir(std::string name) & {
|
|
183
|
+
_dirs.emplace_back();
|
|
184
|
+
auto& back = _dirs.back();
|
|
185
|
+
auto& fod = _index.emplace(name, file_or_directory{back}).first->second;
|
|
186
|
+
return created_subdirectory{back, fod};
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
file_or_directory* add_file(std::string name, const char* begin, const char* end) & {
|
|
190
|
+
assert(_index.find(name) == _index.end());
|
|
191
|
+
_files.emplace_back(begin, end);
|
|
192
|
+
return &_index.emplace(name, file_or_directory{_files.back()}).first->second;
|
|
193
|
+
}
|
|
194
|
+
|
|
195
|
+
const file_or_directory* get(const std::string& path) const {
|
|
196
|
+
auto pair = split_path(path);
|
|
197
|
+
auto child = _index.find(pair.first);
|
|
198
|
+
if (child == _index.end()) {
|
|
199
|
+
return nullptr;
|
|
200
|
+
}
|
|
201
|
+
auto& entry = child->second;
|
|
202
|
+
if (pair.second.empty()) {
|
|
203
|
+
// We're at the end of the path
|
|
204
|
+
return &entry;
|
|
205
|
+
}
|
|
206
|
+
|
|
207
|
+
if (entry.is_file()) {
|
|
208
|
+
// We can't traverse into a file. Stop.
|
|
209
|
+
return nullptr;
|
|
210
|
+
}
|
|
211
|
+
// Keep going down
|
|
212
|
+
return entry.as_directory().get(pair.second);
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
class iterator {
|
|
216
|
+
base_iterator _base_iter;
|
|
217
|
+
base_iterator _end_iter;
|
|
218
|
+
public:
|
|
219
|
+
using value_type = directory_entry;
|
|
220
|
+
using difference_type = std::ptrdiff_t;
|
|
221
|
+
using pointer = const value_type*;
|
|
222
|
+
using reference = const value_type&;
|
|
223
|
+
using iterator_category = std::input_iterator_tag;
|
|
224
|
+
|
|
225
|
+
iterator() = default;
|
|
226
|
+
explicit iterator(base_iterator iter, base_iterator end) : _base_iter(iter), _end_iter(end) {}
|
|
227
|
+
|
|
228
|
+
iterator begin() const noexcept {
|
|
229
|
+
return *this;
|
|
230
|
+
}
|
|
231
|
+
|
|
232
|
+
iterator end() const noexcept {
|
|
233
|
+
return iterator(_end_iter, _end_iter);
|
|
234
|
+
}
|
|
235
|
+
|
|
236
|
+
inline value_type operator*() const noexcept;
|
|
237
|
+
|
|
238
|
+
bool operator==(const iterator& rhs) const noexcept {
|
|
239
|
+
return _base_iter == rhs._base_iter;
|
|
240
|
+
}
|
|
241
|
+
|
|
242
|
+
bool operator!=(const iterator& rhs) const noexcept {
|
|
243
|
+
return !(*this == rhs);
|
|
244
|
+
}
|
|
245
|
+
|
|
246
|
+
iterator operator++() noexcept {
|
|
247
|
+
auto cp = *this;
|
|
248
|
+
++_base_iter;
|
|
249
|
+
return cp;
|
|
250
|
+
}
|
|
251
|
+
|
|
252
|
+
iterator& operator++(int) noexcept {
|
|
253
|
+
++_base_iter;
|
|
254
|
+
return *this;
|
|
255
|
+
}
|
|
256
|
+
};
|
|
257
|
+
|
|
258
|
+
using const_iterator = iterator;
|
|
259
|
+
|
|
260
|
+
iterator begin() const noexcept {
|
|
261
|
+
return iterator(_index.begin(), _index.end());
|
|
262
|
+
}
|
|
263
|
+
|
|
264
|
+
iterator end() const noexcept {
|
|
265
|
+
return iterator();
|
|
266
|
+
}
|
|
267
|
+
};
|
|
268
|
+
|
|
269
|
+
inline std::string normalize_path(std::string path) {
|
|
270
|
+
while (path.find("/") == 0) {
|
|
271
|
+
path.erase(path.begin());
|
|
272
|
+
}
|
|
273
|
+
while (!path.empty() && (path.rfind("/") == path.size() - 1)) {
|
|
274
|
+
path.pop_back();
|
|
275
|
+
}
|
|
276
|
+
auto off = path.npos;
|
|
277
|
+
while ((off = path.find("//")) != path.npos) {
|
|
278
|
+
path.erase(path.begin() + off);
|
|
279
|
+
}
|
|
280
|
+
return path;
|
|
281
|
+
}
|
|
282
|
+
|
|
283
|
+
using index_type = std::map<std::string, const cmrc::detail::file_or_directory*>;
|
|
284
|
+
|
|
285
|
+
} // detail
|
|
286
|
+
|
|
287
|
+
class directory_entry {
|
|
288
|
+
std::string _fname;
|
|
289
|
+
const detail::file_or_directory* _item;
|
|
290
|
+
|
|
291
|
+
public:
|
|
292
|
+
directory_entry() = delete;
|
|
293
|
+
explicit directory_entry(std::string filename, const detail::file_or_directory& item)
|
|
294
|
+
: _fname(filename)
|
|
295
|
+
, _item(&item)
|
|
296
|
+
{}
|
|
297
|
+
|
|
298
|
+
const std::string& filename() const & {
|
|
299
|
+
return _fname;
|
|
300
|
+
}
|
|
301
|
+
std::string filename() const && {
|
|
302
|
+
return std::move(_fname);
|
|
303
|
+
}
|
|
304
|
+
|
|
305
|
+
bool is_file() const {
|
|
306
|
+
return _item->is_file();
|
|
307
|
+
}
|
|
308
|
+
|
|
309
|
+
bool is_directory() const {
|
|
310
|
+
return _item->is_directory();
|
|
311
|
+
}
|
|
312
|
+
};
|
|
313
|
+
|
|
314
|
+
directory_entry detail::directory::iterator::operator*() const noexcept {
|
|
315
|
+
assert(begin() != end());
|
|
316
|
+
return directory_entry(_base_iter->first, _base_iter->second);
|
|
317
|
+
}
|
|
318
|
+
|
|
319
|
+
using directory_iterator = detail::directory::iterator;
|
|
320
|
+
|
|
321
|
+
class embedded_filesystem {
|
|
322
|
+
// Never-null:
|
|
323
|
+
const cmrc::detail::index_type* _index;
|
|
324
|
+
const detail::file_or_directory* _get(std::string path) const {
|
|
325
|
+
path = detail::normalize_path(path);
|
|
326
|
+
auto found = _index->find(path);
|
|
327
|
+
if (found == _index->end()) {
|
|
328
|
+
return nullptr;
|
|
329
|
+
} else {
|
|
330
|
+
return found->second;
|
|
331
|
+
}
|
|
332
|
+
}
|
|
333
|
+
|
|
334
|
+
public:
|
|
335
|
+
explicit embedded_filesystem(const detail::index_type& index)
|
|
336
|
+
: _index(&index)
|
|
337
|
+
{}
|
|
338
|
+
|
|
339
|
+
file open(const std::string& path) const {
|
|
340
|
+
auto entry_ptr = _get(path);
|
|
341
|
+
if (!entry_ptr || !entry_ptr->is_file()) {
|
|
342
|
+
throw std::system_error(make_error_code(std::errc::no_such_file_or_directory), path);
|
|
343
|
+
}
|
|
344
|
+
auto& dat = entry_ptr->as_file();
|
|
345
|
+
return file{dat.begin_ptr, dat.end_ptr};
|
|
346
|
+
}
|
|
347
|
+
|
|
348
|
+
bool is_file(const std::string& path) const noexcept {
|
|
349
|
+
auto entry_ptr = _get(path);
|
|
350
|
+
return entry_ptr && entry_ptr->is_file();
|
|
351
|
+
}
|
|
352
|
+
|
|
353
|
+
bool is_directory(const std::string& path) const noexcept {
|
|
354
|
+
auto entry_ptr = _get(path);
|
|
355
|
+
return entry_ptr && entry_ptr->is_directory();
|
|
356
|
+
}
|
|
357
|
+
|
|
358
|
+
bool exists(const std::string& path) const noexcept {
|
|
359
|
+
return !!_get(path);
|
|
360
|
+
}
|
|
361
|
+
|
|
362
|
+
directory_iterator iterate_directory(const std::string& path) const {
|
|
363
|
+
auto entry_ptr = _get(path);
|
|
364
|
+
if (!entry_ptr) {
|
|
365
|
+
throw std::system_error(make_error_code(std::errc::no_such_file_or_directory), path);
|
|
366
|
+
}
|
|
367
|
+
if (!entry_ptr->is_directory()) {
|
|
368
|
+
throw std::system_error(make_error_code(std::errc::not_a_directory), path);
|
|
369
|
+
}
|
|
370
|
+
return entry_ptr->as_directory().begin();
|
|
371
|
+
}
|
|
372
|
+
};
|
|
373
|
+
|
|
374
|
+
}
|
|
375
|
+
|
|
376
|
+
#endif // CMRC_CMRC_HPP_INCLUDED
|
|
377
|
+
]==])
|
|
378
|
+
|
|
379
|
+
set(cmrc_hpp "${CMRC_INCLUDE_DIR}/cmrc/cmrc.hpp" CACHE INTERNAL "")
|
|
380
|
+
set(_generate 1)
|
|
381
|
+
if(EXISTS "${cmrc_hpp}")
|
|
382
|
+
file(READ "${cmrc_hpp}" _current)
|
|
383
|
+
if(_current STREQUAL hpp_content)
|
|
384
|
+
set(_generate 0)
|
|
385
|
+
endif()
|
|
386
|
+
endif()
|
|
387
|
+
file(GENERATE OUTPUT "${cmrc_hpp}" CONTENT "${hpp_content}" CONDITION ${_generate})
|
|
388
|
+
|
|
389
|
+
add_library(cmrc-base INTERFACE)
|
|
390
|
+
target_include_directories(cmrc-base INTERFACE "${CMRC_INCLUDE_DIR}")
|
|
391
|
+
# Signal a basic C++11 feature to require C++11.
|
|
392
|
+
target_compile_features(cmrc-base INTERFACE cxx_nullptr)
|
|
393
|
+
set_property(TARGET cmrc-base PROPERTY INTERFACE_CXX_EXTENSIONS OFF)
|
|
394
|
+
add_library(cmrc::base ALIAS cmrc-base)
|
|
395
|
+
|
|
396
|
+
function(cmrc_add_resource_library name)
|
|
397
|
+
set(args ALIAS NAMESPACE)
|
|
398
|
+
cmake_parse_arguments(ARG "" "${args}" "" "${ARGN}")
|
|
399
|
+
# Generate the identifier for the resource library's namespace
|
|
400
|
+
set(ns_re "[a-zA-Z_][a-zA-Z0-9_]*")
|
|
401
|
+
if(NOT DEFINED ARG_NAMESPACE)
|
|
402
|
+
# Check that the library name is also a valid namespace
|
|
403
|
+
if(NOT name MATCHES "${ns_re}")
|
|
404
|
+
message(SEND_ERROR "Library name is not a valid namespace. Specify the NAMESPACE argument")
|
|
405
|
+
endif()
|
|
406
|
+
set(ARG_NAMESPACE "${name}")
|
|
407
|
+
else()
|
|
408
|
+
if(NOT ARG_NAMESPACE MATCHES "${ns_re}")
|
|
409
|
+
message(SEND_ERROR "NAMESPACE for ${name} is not a valid C++ namespace identifier (${ARG_NAMESPACE})")
|
|
410
|
+
endif()
|
|
411
|
+
endif()
|
|
412
|
+
set(libname "${name}")
|
|
413
|
+
# Generate a library with the compiled in character arrays.
|
|
414
|
+
string(CONFIGURE [=[
|
|
415
|
+
#include <cmrc/cmrc.hpp>
|
|
416
|
+
#include <map>
|
|
417
|
+
#include <utility>
|
|
418
|
+
|
|
419
|
+
namespace cmrc {
|
|
420
|
+
namespace @ARG_NAMESPACE@ {
|
|
421
|
+
|
|
422
|
+
namespace res_chars {
|
|
423
|
+
// These are the files which are available in this resource library
|
|
424
|
+
$<JOIN:$<TARGET_PROPERTY:@libname@,CMRC_EXTERN_DECLS>,
|
|
425
|
+
>
|
|
426
|
+
}
|
|
427
|
+
|
|
428
|
+
namespace {
|
|
429
|
+
|
|
430
|
+
const cmrc::detail::index_type&
|
|
431
|
+
get_root_index() {
|
|
432
|
+
static cmrc::detail::directory root_directory_;
|
|
433
|
+
static cmrc::detail::file_or_directory root_directory_fod{root_directory_};
|
|
434
|
+
static cmrc::detail::index_type root_index;
|
|
435
|
+
root_index.emplace("", &root_directory_fod);
|
|
436
|
+
struct dir_inl {
|
|
437
|
+
class cmrc::detail::directory& directory;
|
|
438
|
+
};
|
|
439
|
+
dir_inl root_directory_dir{root_directory_};
|
|
440
|
+
(void)root_directory_dir;
|
|
441
|
+
$<JOIN:$<TARGET_PROPERTY:@libname@,CMRC_MAKE_DIRS>,
|
|
442
|
+
>
|
|
443
|
+
$<JOIN:$<TARGET_PROPERTY:@libname@,CMRC_MAKE_FILES>,
|
|
444
|
+
>
|
|
445
|
+
return root_index;
|
|
446
|
+
}
|
|
447
|
+
|
|
448
|
+
}
|
|
449
|
+
|
|
450
|
+
cmrc::embedded_filesystem get_filesystem() {
|
|
451
|
+
static auto& index = get_root_index();
|
|
452
|
+
return cmrc::embedded_filesystem{index};
|
|
453
|
+
}
|
|
454
|
+
|
|
455
|
+
} // @ARG_NAMESPACE@
|
|
456
|
+
} // cmrc
|
|
457
|
+
]=] cpp_content @ONLY)
|
|
458
|
+
get_filename_component(libdir "${CMAKE_CURRENT_BINARY_DIR}/__cmrc_${name}" ABSOLUTE)
|
|
459
|
+
get_filename_component(lib_tmp_cpp "${libdir}/lib_.cpp" ABSOLUTE)
|
|
460
|
+
string(REPLACE "\n " "\n" cpp_content "${cpp_content}")
|
|
461
|
+
file(GENERATE OUTPUT "${lib_tmp_cpp}" CONTENT "${cpp_content}")
|
|
462
|
+
get_filename_component(libcpp "${libdir}/lib.cpp" ABSOLUTE)
|
|
463
|
+
add_custom_command(OUTPUT "${libcpp}"
|
|
464
|
+
DEPENDS "${lib_tmp_cpp}" "${cmrc_hpp}"
|
|
465
|
+
COMMAND ${CMAKE_COMMAND} -E copy_if_different "${lib_tmp_cpp}" "${libcpp}"
|
|
466
|
+
COMMENT "Generating ${name} resource loader"
|
|
467
|
+
)
|
|
468
|
+
# Generate the actual static library. Each source file is just a single file
|
|
469
|
+
# with a character array compiled in containing the contents of the
|
|
470
|
+
# corresponding resource file.
|
|
471
|
+
add_library(${name} STATIC ${libcpp})
|
|
472
|
+
set_property(TARGET ${name} PROPERTY CMRC_LIBDIR "${libdir}")
|
|
473
|
+
set_property(TARGET ${name} PROPERTY CMRC_NAMESPACE "${ARG_NAMESPACE}")
|
|
474
|
+
target_link_libraries(${name} PUBLIC cmrc::base)
|
|
475
|
+
set_property(TARGET ${name} PROPERTY CMRC_IS_RESOURCE_LIBRARY TRUE)
|
|
476
|
+
if(ARG_ALIAS)
|
|
477
|
+
add_library("${ARG_ALIAS}" ALIAS ${name})
|
|
478
|
+
endif()
|
|
479
|
+
cmrc_add_resources(${name} ${ARG_UNPARSED_ARGUMENTS})
|
|
480
|
+
endfunction()
|
|
481
|
+
|
|
482
|
+
function(_cmrc_register_dirs name dirpath)
|
|
483
|
+
if(dirpath STREQUAL "")
|
|
484
|
+
return()
|
|
485
|
+
endif()
|
|
486
|
+
# Skip this dir if we have already registered it
|
|
487
|
+
get_target_property(registered "${name}" _CMRC_REGISTERED_DIRS)
|
|
488
|
+
if(dirpath IN_LIST registered)
|
|
489
|
+
return()
|
|
490
|
+
endif()
|
|
491
|
+
# Register the parent directory first
|
|
492
|
+
get_filename_component(parent "${dirpath}" DIRECTORY)
|
|
493
|
+
if(NOT parent STREQUAL "")
|
|
494
|
+
_cmrc_register_dirs("${name}" "${parent}")
|
|
495
|
+
endif()
|
|
496
|
+
# Now generate the registration
|
|
497
|
+
set_property(TARGET "${name}" APPEND PROPERTY _CMRC_REGISTERED_DIRS "${dirpath}")
|
|
498
|
+
_cm_encode_fpath(sym "${dirpath}")
|
|
499
|
+
if(parent STREQUAL "")
|
|
500
|
+
set(parent_sym root_directory)
|
|
501
|
+
else()
|
|
502
|
+
_cm_encode_fpath(parent_sym "${parent}")
|
|
503
|
+
endif()
|
|
504
|
+
get_filename_component(leaf "${dirpath}" NAME)
|
|
505
|
+
set_property(
|
|
506
|
+
TARGET "${name}"
|
|
507
|
+
APPEND PROPERTY CMRC_MAKE_DIRS
|
|
508
|
+
"static auto ${sym}_dir = ${parent_sym}_dir.directory.add_subdir(\"${leaf}\")\;"
|
|
509
|
+
"root_index.emplace(\"${dirpath}\", &${sym}_dir.index_entry)\;"
|
|
510
|
+
)
|
|
511
|
+
endfunction()
|
|
512
|
+
|
|
513
|
+
function(cmrc_add_resources name)
|
|
514
|
+
get_target_property(is_reslib ${name} CMRC_IS_RESOURCE_LIBRARY)
|
|
515
|
+
if(NOT TARGET ${name} OR NOT is_reslib)
|
|
516
|
+
message(SEND_ERROR "cmrc_add_resources called on target '${name}' which is not an existing resource library")
|
|
517
|
+
return()
|
|
518
|
+
endif()
|
|
519
|
+
|
|
520
|
+
set(options)
|
|
521
|
+
set(args WHENCE PREFIX)
|
|
522
|
+
set(list_args)
|
|
523
|
+
cmake_parse_arguments(ARG "${options}" "${args}" "${list_args}" "${ARGN}")
|
|
524
|
+
|
|
525
|
+
if(NOT ARG_WHENCE)
|
|
526
|
+
set(ARG_WHENCE ${CMAKE_CURRENT_SOURCE_DIR})
|
|
527
|
+
endif()
|
|
528
|
+
_cmrc_normalize_path(ARG_WHENCE)
|
|
529
|
+
get_filename_component(ARG_WHENCE "${ARG_WHENCE}" ABSOLUTE)
|
|
530
|
+
|
|
531
|
+
# Generate the identifier for the resource library's namespace
|
|
532
|
+
get_target_property(lib_ns "${name}" CMRC_NAMESPACE)
|
|
533
|
+
|
|
534
|
+
get_target_property(libdir ${name} CMRC_LIBDIR)
|
|
535
|
+
get_target_property(target_dir ${name} SOURCE_DIR)
|
|
536
|
+
file(RELATIVE_PATH reldir "${target_dir}" "${CMAKE_CURRENT_SOURCE_DIR}")
|
|
537
|
+
if(reldir MATCHES "^\\.\\.")
|
|
538
|
+
message(SEND_ERROR "Cannot call cmrc_add_resources in a parent directory from the resource library target")
|
|
539
|
+
return()
|
|
540
|
+
endif()
|
|
541
|
+
|
|
542
|
+
foreach(input IN LISTS ARG_UNPARSED_ARGUMENTS)
|
|
543
|
+
_cmrc_normalize_path(input)
|
|
544
|
+
get_filename_component(abs_in "${input}" ABSOLUTE)
|
|
545
|
+
# Generate a filename based on the input filename that we can put in
|
|
546
|
+
# the intermediate directory.
|
|
547
|
+
file(RELATIVE_PATH relpath "${ARG_WHENCE}" "${abs_in}")
|
|
548
|
+
if(relpath MATCHES "^\\.\\.")
|
|
549
|
+
# For now we just error on files that exist outside of the soure dir.
|
|
550
|
+
message(SEND_ERROR "Cannot add file '${input}': File must be in a subdirectory of ${ARG_WHENCE}")
|
|
551
|
+
continue()
|
|
552
|
+
endif()
|
|
553
|
+
if(DEFINED ARG_PREFIX)
|
|
554
|
+
_cmrc_normalize_path(ARG_PREFIX)
|
|
555
|
+
endif()
|
|
556
|
+
if(ARG_PREFIX AND NOT ARG_PREFIX MATCHES "/$")
|
|
557
|
+
set(ARG_PREFIX "${ARG_PREFIX}/")
|
|
558
|
+
endif()
|
|
559
|
+
get_filename_component(dirpath "${ARG_PREFIX}${relpath}" DIRECTORY)
|
|
560
|
+
_cmrc_register_dirs("${name}" "${dirpath}")
|
|
561
|
+
get_filename_component(abs_out "${libdir}/intermediate/${relpath}.cpp" ABSOLUTE)
|
|
562
|
+
# Generate a symbol name relpath the file's character array
|
|
563
|
+
_cm_encode_fpath(sym "${relpath}")
|
|
564
|
+
# Get the symbol name for the parent directory
|
|
565
|
+
if(dirpath STREQUAL "")
|
|
566
|
+
set(parent_sym root_directory)
|
|
567
|
+
else()
|
|
568
|
+
_cm_encode_fpath(parent_sym "${dirpath}")
|
|
569
|
+
endif()
|
|
570
|
+
# Generate the rule for the intermediate source file
|
|
571
|
+
_cmrc_generate_intermediate_cpp(${lib_ns} ${sym} "${abs_out}" "${abs_in}")
|
|
572
|
+
target_sources(${name} PRIVATE "${abs_out}")
|
|
573
|
+
set_property(TARGET ${name} APPEND PROPERTY CMRC_EXTERN_DECLS
|
|
574
|
+
"// Pointers to ${input}"
|
|
575
|
+
"extern const char* const ${sym}_begin\;"
|
|
576
|
+
"extern const char* const ${sym}_end\;"
|
|
577
|
+
)
|
|
578
|
+
get_filename_component(leaf "${relpath}" NAME)
|
|
579
|
+
set_property(
|
|
580
|
+
TARGET ${name}
|
|
581
|
+
APPEND PROPERTY CMRC_MAKE_FILES
|
|
582
|
+
"root_index.emplace("
|
|
583
|
+
" \"${ARG_PREFIX}${relpath}\","
|
|
584
|
+
" ${parent_sym}_dir.directory.add_file("
|
|
585
|
+
" \"${leaf}\","
|
|
586
|
+
" res_chars::${sym}_begin,"
|
|
587
|
+
" res_chars::${sym}_end"
|
|
588
|
+
" )"
|
|
589
|
+
")\;"
|
|
590
|
+
)
|
|
591
|
+
endforeach()
|
|
592
|
+
endfunction()
|
|
593
|
+
|
|
594
|
+
function(_cmrc_generate_intermediate_cpp lib_ns symbol outfile infile)
|
|
595
|
+
add_custom_command(
|
|
596
|
+
# This is the file we will generate
|
|
597
|
+
OUTPUT "${outfile}"
|
|
598
|
+
# These are the primary files that affect the output
|
|
599
|
+
DEPENDS "${infile}" "${_CMRC_SCRIPT}"
|
|
600
|
+
COMMAND
|
|
601
|
+
"${CMAKE_COMMAND}"
|
|
602
|
+
-D_CMRC_GENERATE_MODE=TRUE
|
|
603
|
+
-DNAMESPACE=${lib_ns}
|
|
604
|
+
-DSYMBOL=${symbol}
|
|
605
|
+
"-DINPUT_FILE=${infile}"
|
|
606
|
+
"-DOUTPUT_FILE=${outfile}"
|
|
607
|
+
-P "${_CMRC_SCRIPT}"
|
|
608
|
+
COMMENT "Generating intermediate file for ${infile}"
|
|
609
|
+
)
|
|
610
|
+
endfunction()
|
|
611
|
+
|
|
612
|
+
function(_cm_encode_fpath var fpath)
|
|
613
|
+
string(MAKE_C_IDENTIFIER "${fpath}" ident)
|
|
614
|
+
string(MD5 hash "${fpath}")
|
|
615
|
+
string(SUBSTRING "${hash}" 0 4 hash)
|
|
616
|
+
set(${var} f_${hash}_${ident} PARENT_SCOPE)
|
|
617
|
+
endfunction()
|