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.
Files changed (1754) hide show
  1. tkvsc_oead-1.4.5/CMakeLists.txt +89 -0
  2. tkvsc_oead-1.4.5/CMakeRC.cmake +617 -0
  3. tkvsc_oead-1.4.5/LICENSE.md +361 -0
  4. tkvsc_oead-1.4.5/MANIFEST.in +6 -0
  5. tkvsc_oead-1.4.5/PKG-INFO +102 -0
  6. tkvsc_oead-1.4.5/data/aglenv_file_info.json +492 -0
  7. tkvsc_oead-1.4.5/data/botw_hashed_names.txt +95580 -0
  8. tkvsc_oead-1.4.5/data/botw_numbered_names.txt +384 -0
  9. tkvsc_oead-1.4.5/data/botw_resource_factory_info.tsv +56 -0
  10. tkvsc_oead-1.4.5/lib/EasyIterator/.git +1 -0
  11. tkvsc_oead-1.4.5/lib/EasyIterator/.travis.yml +70 -0
  12. tkvsc_oead-1.4.5/lib/EasyIterator/CMakeLists.txt +106 -0
  13. tkvsc_oead-1.4.5/lib/EasyIterator/README.md +122 -0
  14. tkvsc_oead-1.4.5/lib/EasyIterator/benchmark/CMakeLists.txt +57 -0
  15. tkvsc_oead-1.4.5/lib/EasyIterator/benchmark/benchmark.cpp +292 -0
  16. tkvsc_oead-1.4.5/lib/EasyIterator/cmake/CPM.cmake +183 -0
  17. tkvsc_oead-1.4.5/lib/EasyIterator/cmake/EasyIteratorConfig.cmake.in +5 -0
  18. tkvsc_oead-1.4.5/lib/EasyIterator/examples/CMakeLists.txt +24 -0
  19. tkvsc_oead-1.4.5/lib/EasyIterator/examples/array.cpp +46 -0
  20. tkvsc_oead-1.4.5/lib/EasyIterator/examples/fibonacci.cpp +37 -0
  21. tkvsc_oead-1.4.5/lib/EasyIterator/examples/iteration.cpp +28 -0
  22. tkvsc_oead-1.4.5/lib/EasyIterator/include/easy_iterator.h +455 -0
  23. tkvsc_oead-1.4.5/lib/EasyIterator/tests/CMakeLists.txt +38 -0
  24. tkvsc_oead-1.4.5/lib/EasyIterator/tests/easy_iterator.cpp +347 -0
  25. tkvsc_oead-1.4.5/lib/EasyIterator/tests/main.cpp +3 -0
  26. tkvsc_oead-1.4.5/lib/abseil/.clang-format +4 -0
  27. tkvsc_oead-1.4.5/lib/abseil/.git +1 -0
  28. tkvsc_oead-1.4.5/lib/abseil/.github/ISSUE_TEMPLATE/00-bug_report.yml +53 -0
  29. tkvsc_oead-1.4.5/lib/abseil/.github/ISSUE_TEMPLATE/config.yml +5 -0
  30. tkvsc_oead-1.4.5/lib/abseil/.github/PULL_REQUEST_TEMPLATE.md +8 -0
  31. tkvsc_oead-1.4.5/lib/abseil/.gitignore +17 -0
  32. tkvsc_oead-1.4.5/lib/abseil/ABSEIL_ISSUE_TEMPLATE.md +22 -0
  33. tkvsc_oead-1.4.5/lib/abseil/BUILD.bazel +35 -0
  34. tkvsc_oead-1.4.5/lib/abseil/CMake/AbseilDll.cmake +915 -0
  35. tkvsc_oead-1.4.5/lib/abseil/CMake/AbseilHelpers.cmake +460 -0
  36. tkvsc_oead-1.4.5/lib/abseil/CMake/Googletest/CMakeLists.txt.in +14 -0
  37. tkvsc_oead-1.4.5/lib/abseil/CMake/Googletest/DownloadGTest.cmake +41 -0
  38. tkvsc_oead-1.4.5/lib/abseil/CMake/README.md +188 -0
  39. tkvsc_oead-1.4.5/lib/abseil/CMake/abslConfig.cmake.in +8 -0
  40. tkvsc_oead-1.4.5/lib/abseil/CMake/install_test_project/CMakeLists.txt +25 -0
  41. tkvsc_oead-1.4.5/lib/abseil/CMake/install_test_project/simple.cc +32 -0
  42. tkvsc_oead-1.4.5/lib/abseil/CMake/install_test_project/test.sh +113 -0
  43. tkvsc_oead-1.4.5/lib/abseil/CMakeLists.txt +270 -0
  44. tkvsc_oead-1.4.5/lib/abseil/CONTRIBUTING.md +141 -0
  45. tkvsc_oead-1.4.5/lib/abseil/FAQ.md +167 -0
  46. tkvsc_oead-1.4.5/lib/abseil/MODULE.bazel +46 -0
  47. tkvsc_oead-1.4.5/lib/abseil/PrivacyInfo.xcprivacy +14 -0
  48. tkvsc_oead-1.4.5/lib/abseil/README.md +160 -0
  49. tkvsc_oead-1.4.5/lib/abseil/UPGRADES.md +17 -0
  50. tkvsc_oead-1.4.5/lib/abseil/WORKSPACE.bzlmod +19 -0
  51. tkvsc_oead-1.4.5/lib/abseil/absl/BUILD.bazel +62 -0
  52. tkvsc_oead-1.4.5/lib/abseil/absl/CMakeLists.txt +44 -0
  53. tkvsc_oead-1.4.5/lib/abseil/absl/abseil.podspec.gen.py +243 -0
  54. tkvsc_oead-1.4.5/lib/abseil/absl/algorithm/BUILD.bazel +90 -0
  55. tkvsc_oead-1.4.5/lib/abseil/absl/algorithm/CMakeLists.txt +73 -0
  56. tkvsc_oead-1.4.5/lib/abseil/absl/algorithm/algorithm.h +64 -0
  57. tkvsc_oead-1.4.5/lib/abseil/absl/algorithm/algorithm_test.cc +60 -0
  58. tkvsc_oead-1.4.5/lib/abseil/absl/algorithm/container.h +1830 -0
  59. tkvsc_oead-1.4.5/lib/abseil/absl/algorithm/container_test.cc +1421 -0
  60. tkvsc_oead-1.4.5/lib/abseil/absl/base/BUILD.bazel +982 -0
  61. tkvsc_oead-1.4.5/lib/abseil/absl/base/CMakeLists.txt +823 -0
  62. tkvsc_oead-1.4.5/lib/abseil/absl/base/attributes.h +1008 -0
  63. tkvsc_oead-1.4.5/lib/abseil/absl/base/bit_cast_test.cc +109 -0
  64. tkvsc_oead-1.4.5/lib/abseil/absl/base/c_header_test.c +30 -0
  65. tkvsc_oead-1.4.5/lib/abseil/absl/base/call_once.h +228 -0
  66. tkvsc_oead-1.4.5/lib/abseil/absl/base/call_once_test.cc +107 -0
  67. tkvsc_oead-1.4.5/lib/abseil/absl/base/casts.h +180 -0
  68. tkvsc_oead-1.4.5/lib/abseil/absl/base/config.h +985 -0
  69. tkvsc_oead-1.4.5/lib/abseil/absl/base/config_test.cc +60 -0
  70. tkvsc_oead-1.4.5/lib/abseil/absl/base/const_init.h +76 -0
  71. tkvsc_oead-1.4.5/lib/abseil/absl/base/dynamic_annotations.h +480 -0
  72. tkvsc_oead-1.4.5/lib/abseil/absl/base/exception_safety_testing_test.cc +962 -0
  73. tkvsc_oead-1.4.5/lib/abseil/absl/base/inline_variable_test.cc +64 -0
  74. tkvsc_oead-1.4.5/lib/abseil/absl/base/inline_variable_test_a.cc +27 -0
  75. tkvsc_oead-1.4.5/lib/abseil/absl/base/inline_variable_test_b.cc +27 -0
  76. tkvsc_oead-1.4.5/lib/abseil/absl/base/internal/atomic_hook.h +200 -0
  77. tkvsc_oead-1.4.5/lib/abseil/absl/base/internal/atomic_hook_test.cc +97 -0
  78. tkvsc_oead-1.4.5/lib/abseil/absl/base/internal/atomic_hook_test_helper.cc +32 -0
  79. tkvsc_oead-1.4.5/lib/abseil/absl/base/internal/atomic_hook_test_helper.h +34 -0
  80. tkvsc_oead-1.4.5/lib/abseil/absl/base/internal/cmake_thread_test.cc +22 -0
  81. tkvsc_oead-1.4.5/lib/abseil/absl/base/internal/cycleclock.cc +77 -0
  82. tkvsc_oead-1.4.5/lib/abseil/absl/base/internal/cycleclock.h +144 -0
  83. tkvsc_oead-1.4.5/lib/abseil/absl/base/internal/cycleclock_config.h +55 -0
  84. tkvsc_oead-1.4.5/lib/abseil/absl/base/internal/direct_mmap.h +170 -0
  85. tkvsc_oead-1.4.5/lib/abseil/absl/base/internal/dynamic_annotations.h +398 -0
  86. tkvsc_oead-1.4.5/lib/abseil/absl/base/internal/endian.h +283 -0
  87. tkvsc_oead-1.4.5/lib/abseil/absl/base/internal/endian_test.cc +263 -0
  88. tkvsc_oead-1.4.5/lib/abseil/absl/base/internal/errno_saver.h +43 -0
  89. tkvsc_oead-1.4.5/lib/abseil/absl/base/internal/errno_saver_test.cc +45 -0
  90. tkvsc_oead-1.4.5/lib/abseil/absl/base/internal/exception_safety_testing.cc +79 -0
  91. tkvsc_oead-1.4.5/lib/abseil/absl/base/internal/exception_safety_testing.h +1109 -0
  92. tkvsc_oead-1.4.5/lib/abseil/absl/base/internal/exception_testing.h +42 -0
  93. tkvsc_oead-1.4.5/lib/abseil/absl/base/internal/fast_type_id.h +50 -0
  94. tkvsc_oead-1.4.5/lib/abseil/absl/base/internal/fast_type_id_test.cc +123 -0
  95. tkvsc_oead-1.4.5/lib/abseil/absl/base/internal/hide_ptr.h +51 -0
  96. tkvsc_oead-1.4.5/lib/abseil/absl/base/internal/identity.h +39 -0
  97. tkvsc_oead-1.4.5/lib/abseil/absl/base/internal/inline_variable.h +108 -0
  98. tkvsc_oead-1.4.5/lib/abseil/absl/base/internal/inline_variable_testing.h +46 -0
  99. tkvsc_oead-1.4.5/lib/abseil/absl/base/internal/invoke.h +241 -0
  100. tkvsc_oead-1.4.5/lib/abseil/absl/base/internal/low_level_alloc.cc +631 -0
  101. tkvsc_oead-1.4.5/lib/abseil/absl/base/internal/low_level_alloc.h +127 -0
  102. tkvsc_oead-1.4.5/lib/abseil/absl/base/internal/low_level_alloc_test.cc +180 -0
  103. tkvsc_oead-1.4.5/lib/abseil/absl/base/internal/low_level_scheduling.h +134 -0
  104. tkvsc_oead-1.4.5/lib/abseil/absl/base/internal/nullability_impl.h +69 -0
  105. tkvsc_oead-1.4.5/lib/abseil/absl/base/internal/per_thread_tls.h +52 -0
  106. tkvsc_oead-1.4.5/lib/abseil/absl/base/internal/poison.cc +84 -0
  107. tkvsc_oead-1.4.5/lib/abseil/absl/base/internal/poison.h +59 -0
  108. tkvsc_oead-1.4.5/lib/abseil/absl/base/internal/poison_test.cc +41 -0
  109. tkvsc_oead-1.4.5/lib/abseil/absl/base/internal/pretty_function.h +33 -0
  110. tkvsc_oead-1.4.5/lib/abseil/absl/base/internal/raw_logging.cc +280 -0
  111. tkvsc_oead-1.4.5/lib/abseil/absl/base/internal/raw_logging.h +217 -0
  112. tkvsc_oead-1.4.5/lib/abseil/absl/base/internal/scheduling_mode.h +58 -0
  113. tkvsc_oead-1.4.5/lib/abseil/absl/base/internal/scoped_set_env.cc +81 -0
  114. tkvsc_oead-1.4.5/lib/abseil/absl/base/internal/scoped_set_env.h +45 -0
  115. tkvsc_oead-1.4.5/lib/abseil/absl/base/internal/scoped_set_env_test.cc +99 -0
  116. tkvsc_oead-1.4.5/lib/abseil/absl/base/internal/spinlock.cc +232 -0
  117. tkvsc_oead-1.4.5/lib/abseil/absl/base/internal/spinlock.h +275 -0
  118. tkvsc_oead-1.4.5/lib/abseil/absl/base/internal/spinlock_akaros.inc +35 -0
  119. tkvsc_oead-1.4.5/lib/abseil/absl/base/internal/spinlock_benchmark.cc +80 -0
  120. tkvsc_oead-1.4.5/lib/abseil/absl/base/internal/spinlock_linux.inc +71 -0
  121. tkvsc_oead-1.4.5/lib/abseil/absl/base/internal/spinlock_posix.inc +46 -0
  122. tkvsc_oead-1.4.5/lib/abseil/absl/base/internal/spinlock_wait.cc +81 -0
  123. tkvsc_oead-1.4.5/lib/abseil/absl/base/internal/spinlock_wait.h +95 -0
  124. tkvsc_oead-1.4.5/lib/abseil/absl/base/internal/spinlock_win32.inc +40 -0
  125. tkvsc_oead-1.4.5/lib/abseil/absl/base/internal/strerror.cc +88 -0
  126. tkvsc_oead-1.4.5/lib/abseil/absl/base/internal/strerror.h +39 -0
  127. tkvsc_oead-1.4.5/lib/abseil/absl/base/internal/strerror_benchmark.cc +29 -0
  128. tkvsc_oead-1.4.5/lib/abseil/absl/base/internal/strerror_test.cc +88 -0
  129. tkvsc_oead-1.4.5/lib/abseil/absl/base/internal/sysinfo.cc +503 -0
  130. tkvsc_oead-1.4.5/lib/abseil/absl/base/internal/sysinfo.h +74 -0
  131. tkvsc_oead-1.4.5/lib/abseil/absl/base/internal/sysinfo_test.cc +88 -0
  132. tkvsc_oead-1.4.5/lib/abseil/absl/base/internal/thread_identity.cc +163 -0
  133. tkvsc_oead-1.4.5/lib/abseil/absl/base/internal/thread_identity.h +273 -0
  134. tkvsc_oead-1.4.5/lib/abseil/absl/base/internal/thread_identity_benchmark.cc +38 -0
  135. tkvsc_oead-1.4.5/lib/abseil/absl/base/internal/thread_identity_test.cc +129 -0
  136. tkvsc_oead-1.4.5/lib/abseil/absl/base/internal/throw_delegate.cc +203 -0
  137. tkvsc_oead-1.4.5/lib/abseil/absl/base/internal/throw_delegate.h +75 -0
  138. tkvsc_oead-1.4.5/lib/abseil/absl/base/internal/tracing.cc +39 -0
  139. tkvsc_oead-1.4.5/lib/abseil/absl/base/internal/tracing.h +81 -0
  140. tkvsc_oead-1.4.5/lib/abseil/absl/base/internal/tracing_strong_test.cc +117 -0
  141. tkvsc_oead-1.4.5/lib/abseil/absl/base/internal/tracing_weak_test.cc +34 -0
  142. tkvsc_oead-1.4.5/lib/abseil/absl/base/internal/tsan_mutex_interface.h +68 -0
  143. tkvsc_oead-1.4.5/lib/abseil/absl/base/internal/unaligned_access.h +89 -0
  144. tkvsc_oead-1.4.5/lib/abseil/absl/base/internal/unique_small_name_test.cc +77 -0
  145. tkvsc_oead-1.4.5/lib/abseil/absl/base/internal/unscaledcycleclock.cc +130 -0
  146. tkvsc_oead-1.4.5/lib/abseil/absl/base/internal/unscaledcycleclock.h +108 -0
  147. tkvsc_oead-1.4.5/lib/abseil/absl/base/internal/unscaledcycleclock_config.h +62 -0
  148. tkvsc_oead-1.4.5/lib/abseil/absl/base/invoke_test.cc +331 -0
  149. tkvsc_oead-1.4.5/lib/abseil/absl/base/log_severity.cc +56 -0
  150. tkvsc_oead-1.4.5/lib/abseil/absl/base/log_severity.h +185 -0
  151. tkvsc_oead-1.4.5/lib/abseil/absl/base/log_severity_test.cc +251 -0
  152. tkvsc_oead-1.4.5/lib/abseil/absl/base/macros.h +220 -0
  153. tkvsc_oead-1.4.5/lib/abseil/absl/base/no_destructor.h +212 -0
  154. tkvsc_oead-1.4.5/lib/abseil/absl/base/no_destructor_benchmark.cc +165 -0
  155. tkvsc_oead-1.4.5/lib/abseil/absl/base/no_destructor_test.cc +209 -0
  156. tkvsc_oead-1.4.5/lib/abseil/absl/base/nullability.h +306 -0
  157. tkvsc_oead-1.4.5/lib/abseil/absl/base/nullability_default_nonnull_test.cc +44 -0
  158. tkvsc_oead-1.4.5/lib/abseil/absl/base/nullability_test.cc +129 -0
  159. tkvsc_oead-1.4.5/lib/abseil/absl/base/optimization.h +312 -0
  160. tkvsc_oead-1.4.5/lib/abseil/absl/base/optimization_test.cc +141 -0
  161. tkvsc_oead-1.4.5/lib/abseil/absl/base/options.h +261 -0
  162. tkvsc_oead-1.4.5/lib/abseil/absl/base/policy_checks.h +115 -0
  163. tkvsc_oead-1.4.5/lib/abseil/absl/base/port.h +25 -0
  164. tkvsc_oead-1.4.5/lib/abseil/absl/base/prefetch.h +209 -0
  165. tkvsc_oead-1.4.5/lib/abseil/absl/base/prefetch_test.cc +64 -0
  166. tkvsc_oead-1.4.5/lib/abseil/absl/base/raw_logging_test.cc +83 -0
  167. tkvsc_oead-1.4.5/lib/abseil/absl/base/spinlock_test_common.cc +285 -0
  168. tkvsc_oead-1.4.5/lib/abseil/absl/base/thread_annotations.h +333 -0
  169. tkvsc_oead-1.4.5/lib/abseil/absl/base/throw_delegate_test.cc +175 -0
  170. tkvsc_oead-1.4.5/lib/abseil/absl/cleanup/BUILD.bazel +73 -0
  171. tkvsc_oead-1.4.5/lib/abseil/absl/cleanup/CMakeLists.txt +56 -0
  172. tkvsc_oead-1.4.5/lib/abseil/absl/cleanup/cleanup.h +140 -0
  173. tkvsc_oead-1.4.5/lib/abseil/absl/cleanup/cleanup_test.cc +311 -0
  174. tkvsc_oead-1.4.5/lib/abseil/absl/cleanup/internal/cleanup.h +100 -0
  175. tkvsc_oead-1.4.5/lib/abseil/absl/container/BUILD.bazel +1128 -0
  176. tkvsc_oead-1.4.5/lib/abseil/absl/container/CMakeLists.txt +1032 -0
  177. tkvsc_oead-1.4.5/lib/abseil/absl/container/btree_benchmark.cc +764 -0
  178. tkvsc_oead-1.4.5/lib/abseil/absl/container/btree_map.h +889 -0
  179. tkvsc_oead-1.4.5/lib/abseil/absl/container/btree_set.h +824 -0
  180. tkvsc_oead-1.4.5/lib/abseil/absl/container/btree_test.cc +3462 -0
  181. tkvsc_oead-1.4.5/lib/abseil/absl/container/btree_test.h +166 -0
  182. tkvsc_oead-1.4.5/lib/abseil/absl/container/fixed_array.h +557 -0
  183. tkvsc_oead-1.4.5/lib/abseil/absl/container/fixed_array_benchmark.cc +67 -0
  184. tkvsc_oead-1.4.5/lib/abseil/absl/container/fixed_array_exception_safety_test.cc +201 -0
  185. tkvsc_oead-1.4.5/lib/abseil/absl/container/fixed_array_test.cc +857 -0
  186. tkvsc_oead-1.4.5/lib/abseil/absl/container/flat_hash_map.h +687 -0
  187. tkvsc_oead-1.4.5/lib/abseil/absl/container/flat_hash_map_test.cc +458 -0
  188. tkvsc_oead-1.4.5/lib/abseil/absl/container/flat_hash_set.h +575 -0
  189. tkvsc_oead-1.4.5/lib/abseil/absl/container/flat_hash_set_test.cc +357 -0
  190. tkvsc_oead-1.4.5/lib/abseil/absl/container/hash_container_defaults.h +45 -0
  191. tkvsc_oead-1.4.5/lib/abseil/absl/container/inlined_vector.h +1016 -0
  192. tkvsc_oead-1.4.5/lib/abseil/absl/container/inlined_vector_benchmark.cc +829 -0
  193. tkvsc_oead-1.4.5/lib/abseil/absl/container/inlined_vector_exception_safety_test.cc +508 -0
  194. tkvsc_oead-1.4.5/lib/abseil/absl/container/inlined_vector_test.cc +2229 -0
  195. tkvsc_oead-1.4.5/lib/abseil/absl/container/internal/btree.h +3046 -0
  196. tkvsc_oead-1.4.5/lib/abseil/absl/container/internal/btree_container.h +763 -0
  197. tkvsc_oead-1.4.5/lib/abseil/absl/container/internal/common.h +207 -0
  198. tkvsc_oead-1.4.5/lib/abseil/absl/container/internal/common_policy_traits.h +152 -0
  199. tkvsc_oead-1.4.5/lib/abseil/absl/container/internal/common_policy_traits_test.cc +157 -0
  200. tkvsc_oead-1.4.5/lib/abseil/absl/container/internal/compressed_tuple.h +271 -0
  201. tkvsc_oead-1.4.5/lib/abseil/absl/container/internal/compressed_tuple_test.cc +482 -0
  202. tkvsc_oead-1.4.5/lib/abseil/absl/container/internal/container_memory.h +492 -0
  203. tkvsc_oead-1.4.5/lib/abseil/absl/container/internal/container_memory_test.cc +318 -0
  204. tkvsc_oead-1.4.5/lib/abseil/absl/container/internal/hash_function_defaults.h +276 -0
  205. tkvsc_oead-1.4.5/lib/abseil/absl/container/internal/hash_function_defaults_test.cc +684 -0
  206. tkvsc_oead-1.4.5/lib/abseil/absl/container/internal/hash_generator_testing.cc +78 -0
  207. tkvsc_oead-1.4.5/lib/abseil/absl/container/internal/hash_generator_testing.h +182 -0
  208. tkvsc_oead-1.4.5/lib/abseil/absl/container/internal/hash_policy_testing.h +183 -0
  209. tkvsc_oead-1.4.5/lib/abseil/absl/container/internal/hash_policy_testing_test.cc +45 -0
  210. tkvsc_oead-1.4.5/lib/abseil/absl/container/internal/hash_policy_traits.h +207 -0
  211. tkvsc_oead-1.4.5/lib/abseil/absl/container/internal/hash_policy_traits_test.cc +144 -0
  212. tkvsc_oead-1.4.5/lib/abseil/absl/container/internal/hashtable_debug.h +102 -0
  213. tkvsc_oead-1.4.5/lib/abseil/absl/container/internal/hashtable_debug_hooks.h +85 -0
  214. tkvsc_oead-1.4.5/lib/abseil/absl/container/internal/hashtablez_sampler.cc +300 -0
  215. tkvsc_oead-1.4.5/lib/abseil/absl/container/internal/hashtablez_sampler.h +275 -0
  216. tkvsc_oead-1.4.5/lib/abseil/absl/container/internal/hashtablez_sampler_force_weak_definition.cc +31 -0
  217. tkvsc_oead-1.4.5/lib/abseil/absl/container/internal/hashtablez_sampler_test.cc +518 -0
  218. tkvsc_oead-1.4.5/lib/abseil/absl/container/internal/inlined_vector.h +1107 -0
  219. tkvsc_oead-1.4.5/lib/abseil/absl/container/internal/layout.h +844 -0
  220. tkvsc_oead-1.4.5/lib/abseil/absl/container/internal/layout_benchmark.cc +295 -0
  221. tkvsc_oead-1.4.5/lib/abseil/absl/container/internal/layout_test.cc +2034 -0
  222. tkvsc_oead-1.4.5/lib/abseil/absl/container/internal/node_slot_policy.h +95 -0
  223. tkvsc_oead-1.4.5/lib/abseil/absl/container/internal/node_slot_policy_test.cc +71 -0
  224. tkvsc_oead-1.4.5/lib/abseil/absl/container/internal/raw_hash_map.h +226 -0
  225. tkvsc_oead-1.4.5/lib/abseil/absl/container/internal/raw_hash_set.cc +671 -0
  226. tkvsc_oead-1.4.5/lib/abseil/absl/container/internal/raw_hash_set.h +4332 -0
  227. tkvsc_oead-1.4.5/lib/abseil/absl/container/internal/raw_hash_set_allocator_test.cc +520 -0
  228. tkvsc_oead-1.4.5/lib/abseil/absl/container/internal/raw_hash_set_benchmark.cc +687 -0
  229. tkvsc_oead-1.4.5/lib/abseil/absl/container/internal/raw_hash_set_probe_benchmark.cc +597 -0
  230. tkvsc_oead-1.4.5/lib/abseil/absl/container/internal/raw_hash_set_test.cc +3751 -0
  231. tkvsc_oead-1.4.5/lib/abseil/absl/container/internal/test_allocator.h +387 -0
  232. tkvsc_oead-1.4.5/lib/abseil/absl/container/internal/test_instance_tracker.cc +29 -0
  233. tkvsc_oead-1.4.5/lib/abseil/absl/container/internal/test_instance_tracker.h +274 -0
  234. tkvsc_oead-1.4.5/lib/abseil/absl/container/internal/test_instance_tracker_test.cc +184 -0
  235. tkvsc_oead-1.4.5/lib/abseil/absl/container/internal/tracked.h +83 -0
  236. tkvsc_oead-1.4.5/lib/abseil/absl/container/internal/unordered_map_constructor_test.h +494 -0
  237. tkvsc_oead-1.4.5/lib/abseil/absl/container/internal/unordered_map_lookup_test.h +117 -0
  238. tkvsc_oead-1.4.5/lib/abseil/absl/container/internal/unordered_map_members_test.h +87 -0
  239. tkvsc_oead-1.4.5/lib/abseil/absl/container/internal/unordered_map_modifiers_test.h +352 -0
  240. tkvsc_oead-1.4.5/lib/abseil/absl/container/internal/unordered_map_test.cc +50 -0
  241. tkvsc_oead-1.4.5/lib/abseil/absl/container/internal/unordered_set_constructor_test.h +496 -0
  242. tkvsc_oead-1.4.5/lib/abseil/absl/container/internal/unordered_set_lookup_test.h +91 -0
  243. tkvsc_oead-1.4.5/lib/abseil/absl/container/internal/unordered_set_members_test.h +86 -0
  244. tkvsc_oead-1.4.5/lib/abseil/absl/container/internal/unordered_set_modifiers_test.h +221 -0
  245. tkvsc_oead-1.4.5/lib/abseil/absl/container/internal/unordered_set_test.cc +41 -0
  246. tkvsc_oead-1.4.5/lib/abseil/absl/container/node_hash_map.h +682 -0
  247. tkvsc_oead-1.4.5/lib/abseil/absl/container/node_hash_map_test.cc +351 -0
  248. tkvsc_oead-1.4.5/lib/abseil/absl/container/node_hash_set.h +573 -0
  249. tkvsc_oead-1.4.5/lib/abseil/absl/container/node_hash_set_test.cc +189 -0
  250. tkvsc_oead-1.4.5/lib/abseil/absl/container/sample_element_size_test.cc +123 -0
  251. tkvsc_oead-1.4.5/lib/abseil/absl/copts/AbseilConfigureCopts.cmake +106 -0
  252. tkvsc_oead-1.4.5/lib/abseil/absl/copts/GENERATED_AbseilCopts.cmake +235 -0
  253. tkvsc_oead-1.4.5/lib/abseil/absl/copts/GENERATED_copts.bzl +236 -0
  254. tkvsc_oead-1.4.5/lib/abseil/absl/copts/configure_copts.bzl +39 -0
  255. tkvsc_oead-1.4.5/lib/abseil/absl/copts/copts.py +183 -0
  256. tkvsc_oead-1.4.5/lib/abseil/absl/copts/generate_copts.py +109 -0
  257. tkvsc_oead-1.4.5/lib/abseil/absl/crc/BUILD.bazel +225 -0
  258. tkvsc_oead-1.4.5/lib/abseil/absl/crc/CMakeLists.txt +177 -0
  259. tkvsc_oead-1.4.5/lib/abseil/absl/crc/crc32c.cc +99 -0
  260. tkvsc_oead-1.4.5/lib/abseil/absl/crc/crc32c.h +190 -0
  261. tkvsc_oead-1.4.5/lib/abseil/absl/crc/crc32c_benchmark.cc +183 -0
  262. tkvsc_oead-1.4.5/lib/abseil/absl/crc/crc32c_test.cc +227 -0
  263. tkvsc_oead-1.4.5/lib/abseil/absl/crc/internal/cpu_detect.cc +342 -0
  264. tkvsc_oead-1.4.5/lib/abseil/absl/crc/internal/cpu_detect.h +63 -0
  265. tkvsc_oead-1.4.5/lib/abseil/absl/crc/internal/crc.cc +437 -0
  266. tkvsc_oead-1.4.5/lib/abseil/absl/crc/internal/crc.h +83 -0
  267. tkvsc_oead-1.4.5/lib/abseil/absl/crc/internal/crc32_x86_arm_combined_simd.h +300 -0
  268. tkvsc_oead-1.4.5/lib/abseil/absl/crc/internal/crc32c.h +39 -0
  269. tkvsc_oead-1.4.5/lib/abseil/absl/crc/internal/crc32c_inline.h +72 -0
  270. tkvsc_oead-1.4.5/lib/abseil/absl/crc/internal/crc_cord_state.cc +131 -0
  271. tkvsc_oead-1.4.5/lib/abseil/absl/crc/internal/crc_cord_state.h +159 -0
  272. tkvsc_oead-1.4.5/lib/abseil/absl/crc/internal/crc_cord_state_test.cc +124 -0
  273. tkvsc_oead-1.4.5/lib/abseil/absl/crc/internal/crc_internal.h +177 -0
  274. tkvsc_oead-1.4.5/lib/abseil/absl/crc/internal/crc_memcpy.h +122 -0
  275. tkvsc_oead-1.4.5/lib/abseil/absl/crc/internal/crc_memcpy_fallback.cc +78 -0
  276. tkvsc_oead-1.4.5/lib/abseil/absl/crc/internal/crc_memcpy_test.cc +177 -0
  277. tkvsc_oead-1.4.5/lib/abseil/absl/crc/internal/crc_memcpy_x86_arm_combined.cc +454 -0
  278. tkvsc_oead-1.4.5/lib/abseil/absl/crc/internal/crc_non_temporal_memcpy.cc +93 -0
  279. tkvsc_oead-1.4.5/lib/abseil/absl/crc/internal/crc_x86_arm_combined.cc +737 -0
  280. tkvsc_oead-1.4.5/lib/abseil/absl/crc/internal/non_temporal_arm_intrinsics.h +79 -0
  281. tkvsc_oead-1.4.5/lib/abseil/absl/crc/internal/non_temporal_memcpy.h +195 -0
  282. tkvsc_oead-1.4.5/lib/abseil/absl/crc/internal/non_temporal_memcpy_test.cc +90 -0
  283. tkvsc_oead-1.4.5/lib/abseil/absl/debugging/BUILD.bazel +445 -0
  284. tkvsc_oead-1.4.5/lib/abseil/absl/debugging/CMakeLists.txt +410 -0
  285. tkvsc_oead-1.4.5/lib/abseil/absl/debugging/failure_signal_handler.cc +434 -0
  286. tkvsc_oead-1.4.5/lib/abseil/absl/debugging/failure_signal_handler.h +121 -0
  287. tkvsc_oead-1.4.5/lib/abseil/absl/debugging/failure_signal_handler_test.cc +166 -0
  288. tkvsc_oead-1.4.5/lib/abseil/absl/debugging/internal/address_is_readable.cc +98 -0
  289. tkvsc_oead-1.4.5/lib/abseil/absl/debugging/internal/address_is_readable.h +32 -0
  290. tkvsc_oead-1.4.5/lib/abseil/absl/debugging/internal/bounded_utf8_length_sequence.h +126 -0
  291. tkvsc_oead-1.4.5/lib/abseil/absl/debugging/internal/bounded_utf8_length_sequence_test.cc +126 -0
  292. tkvsc_oead-1.4.5/lib/abseil/absl/debugging/internal/decode_rust_punycode.cc +258 -0
  293. tkvsc_oead-1.4.5/lib/abseil/absl/debugging/internal/decode_rust_punycode.h +55 -0
  294. tkvsc_oead-1.4.5/lib/abseil/absl/debugging/internal/decode_rust_punycode_test.cc +606 -0
  295. tkvsc_oead-1.4.5/lib/abseil/absl/debugging/internal/demangle.cc +2985 -0
  296. tkvsc_oead-1.4.5/lib/abseil/absl/debugging/internal/demangle.h +76 -0
  297. tkvsc_oead-1.4.5/lib/abseil/absl/debugging/internal/demangle_rust.cc +925 -0
  298. tkvsc_oead-1.4.5/lib/abseil/absl/debugging/internal/demangle_rust.h +42 -0
  299. tkvsc_oead-1.4.5/lib/abseil/absl/debugging/internal/demangle_rust_test.cc +584 -0
  300. tkvsc_oead-1.4.5/lib/abseil/absl/debugging/internal/demangle_test.cc +2049 -0
  301. tkvsc_oead-1.4.5/lib/abseil/absl/debugging/internal/elf_mem_image.cc +413 -0
  302. tkvsc_oead-1.4.5/lib/abseil/absl/debugging/internal/elf_mem_image.h +141 -0
  303. tkvsc_oead-1.4.5/lib/abseil/absl/debugging/internal/examine_stack.cc +320 -0
  304. tkvsc_oead-1.4.5/lib/abseil/absl/debugging/internal/examine_stack.h +64 -0
  305. tkvsc_oead-1.4.5/lib/abseil/absl/debugging/internal/stack_consumption.cc +206 -0
  306. tkvsc_oead-1.4.5/lib/abseil/absl/debugging/internal/stack_consumption.h +50 -0
  307. tkvsc_oead-1.4.5/lib/abseil/absl/debugging/internal/stack_consumption_test.cc +50 -0
  308. tkvsc_oead-1.4.5/lib/abseil/absl/debugging/internal/stacktrace_aarch64-inl.inc +285 -0
  309. tkvsc_oead-1.4.5/lib/abseil/absl/debugging/internal/stacktrace_arm-inl.inc +139 -0
  310. tkvsc_oead-1.4.5/lib/abseil/absl/debugging/internal/stacktrace_config.h +95 -0
  311. tkvsc_oead-1.4.5/lib/abseil/absl/debugging/internal/stacktrace_emscripten-inl.inc +110 -0
  312. tkvsc_oead-1.4.5/lib/abseil/absl/debugging/internal/stacktrace_generic-inl.inc +108 -0
  313. tkvsc_oead-1.4.5/lib/abseil/absl/debugging/internal/stacktrace_powerpc-inl.inc +258 -0
  314. tkvsc_oead-1.4.5/lib/abseil/absl/debugging/internal/stacktrace_riscv-inl.inc +194 -0
  315. tkvsc_oead-1.4.5/lib/abseil/absl/debugging/internal/stacktrace_unimplemented-inl.inc +24 -0
  316. tkvsc_oead-1.4.5/lib/abseil/absl/debugging/internal/stacktrace_win32-inl.inc +94 -0
  317. tkvsc_oead-1.4.5/lib/abseil/absl/debugging/internal/stacktrace_x86-inl.inc +394 -0
  318. tkvsc_oead-1.4.5/lib/abseil/absl/debugging/internal/symbolize.h +153 -0
  319. tkvsc_oead-1.4.5/lib/abseil/absl/debugging/internal/utf8_for_code_point.cc +70 -0
  320. tkvsc_oead-1.4.5/lib/abseil/absl/debugging/internal/utf8_for_code_point.h +47 -0
  321. tkvsc_oead-1.4.5/lib/abseil/absl/debugging/internal/utf8_for_code_point_test.cc +175 -0
  322. tkvsc_oead-1.4.5/lib/abseil/absl/debugging/internal/vdso_support.cc +205 -0
  323. tkvsc_oead-1.4.5/lib/abseil/absl/debugging/internal/vdso_support.h +158 -0
  324. tkvsc_oead-1.4.5/lib/abseil/absl/debugging/leak_check.cc +73 -0
  325. tkvsc_oead-1.4.5/lib/abseil/absl/debugging/leak_check.h +150 -0
  326. tkvsc_oead-1.4.5/lib/abseil/absl/debugging/leak_check_fail_test.cc +41 -0
  327. tkvsc_oead-1.4.5/lib/abseil/absl/debugging/leak_check_test.cc +41 -0
  328. tkvsc_oead-1.4.5/lib/abseil/absl/debugging/stacktrace.cc +142 -0
  329. tkvsc_oead-1.4.5/lib/abseil/absl/debugging/stacktrace.h +231 -0
  330. tkvsc_oead-1.4.5/lib/abseil/absl/debugging/stacktrace_benchmark.cc +55 -0
  331. tkvsc_oead-1.4.5/lib/abseil/absl/debugging/stacktrace_test.cc +47 -0
  332. tkvsc_oead-1.4.5/lib/abseil/absl/debugging/symbolize.cc +44 -0
  333. tkvsc_oead-1.4.5/lib/abseil/absl/debugging/symbolize.h +99 -0
  334. tkvsc_oead-1.4.5/lib/abseil/absl/debugging/symbolize_darwin.inc +102 -0
  335. tkvsc_oead-1.4.5/lib/abseil/absl/debugging/symbolize_elf.inc +1764 -0
  336. tkvsc_oead-1.4.5/lib/abseil/absl/debugging/symbolize_emscripten.inc +75 -0
  337. tkvsc_oead-1.4.5/lib/abseil/absl/debugging/symbolize_test.cc +634 -0
  338. tkvsc_oead-1.4.5/lib/abseil/absl/debugging/symbolize_unimplemented.inc +40 -0
  339. tkvsc_oead-1.4.5/lib/abseil/absl/debugging/symbolize_win32.inc +82 -0
  340. tkvsc_oead-1.4.5/lib/abseil/absl/flags/BUILD.bazel +610 -0
  341. tkvsc_oead-1.4.5/lib/abseil/absl/flags/CMakeLists.txt +478 -0
  342. tkvsc_oead-1.4.5/lib/abseil/absl/flags/commandlineflag.cc +35 -0
  343. tkvsc_oead-1.4.5/lib/abseil/absl/flags/commandlineflag.h +218 -0
  344. tkvsc_oead-1.4.5/lib/abseil/absl/flags/commandlineflag_test.cc +236 -0
  345. tkvsc_oead-1.4.5/lib/abseil/absl/flags/config.h +68 -0
  346. tkvsc_oead-1.4.5/lib/abseil/absl/flags/config_test.cc +61 -0
  347. tkvsc_oead-1.4.5/lib/abseil/absl/flags/declare.h +68 -0
  348. tkvsc_oead-1.4.5/lib/abseil/absl/flags/flag.h +305 -0
  349. tkvsc_oead-1.4.5/lib/abseil/absl/flags/flag_benchmark.cc +251 -0
  350. tkvsc_oead-1.4.5/lib/abseil/absl/flags/flag_benchmark.lds +13 -0
  351. tkvsc_oead-1.4.5/lib/abseil/absl/flags/flag_test.cc +1381 -0
  352. tkvsc_oead-1.4.5/lib/abseil/absl/flags/flag_test_defs.cc +24 -0
  353. tkvsc_oead-1.4.5/lib/abseil/absl/flags/internal/commandlineflag.cc +26 -0
  354. tkvsc_oead-1.4.5/lib/abseil/absl/flags/internal/commandlineflag.h +68 -0
  355. tkvsc_oead-1.4.5/lib/abseil/absl/flags/internal/flag.cc +710 -0
  356. tkvsc_oead-1.4.5/lib/abseil/absl/flags/internal/flag.h +969 -0
  357. tkvsc_oead-1.4.5/lib/abseil/absl/flags/internal/parse.h +70 -0
  358. tkvsc_oead-1.4.5/lib/abseil/absl/flags/internal/path_util.h +62 -0
  359. tkvsc_oead-1.4.5/lib/abseil/absl/flags/internal/path_util_test.cc +46 -0
  360. tkvsc_oead-1.4.5/lib/abseil/absl/flags/internal/private_handle_accessor.cc +69 -0
  361. tkvsc_oead-1.4.5/lib/abseil/absl/flags/internal/private_handle_accessor.h +64 -0
  362. tkvsc_oead-1.4.5/lib/abseil/absl/flags/internal/program_name.cc +61 -0
  363. tkvsc_oead-1.4.5/lib/abseil/absl/flags/internal/program_name.h +50 -0
  364. tkvsc_oead-1.4.5/lib/abseil/absl/flags/internal/program_name_test.cc +61 -0
  365. tkvsc_oead-1.4.5/lib/abseil/absl/flags/internal/registry.h +97 -0
  366. tkvsc_oead-1.4.5/lib/abseil/absl/flags/internal/sequence_lock.h +187 -0
  367. tkvsc_oead-1.4.5/lib/abseil/absl/flags/internal/sequence_lock_test.cc +169 -0
  368. tkvsc_oead-1.4.5/lib/abseil/absl/flags/internal/usage.cc +558 -0
  369. tkvsc_oead-1.4.5/lib/abseil/absl/flags/internal/usage.h +106 -0
  370. tkvsc_oead-1.4.5/lib/abseil/absl/flags/internal/usage_test.cc +550 -0
  371. tkvsc_oead-1.4.5/lib/abseil/absl/flags/marshalling.cc +291 -0
  372. tkvsc_oead-1.4.5/lib/abseil/absl/flags/marshalling.h +361 -0
  373. tkvsc_oead-1.4.5/lib/abseil/absl/flags/marshalling_test.cc +1220 -0
  374. tkvsc_oead-1.4.5/lib/abseil/absl/flags/parse.cc +946 -0
  375. tkvsc_oead-1.4.5/lib/abseil/absl/flags/parse.h +130 -0
  376. tkvsc_oead-1.4.5/lib/abseil/absl/flags/parse_test.cc +1094 -0
  377. tkvsc_oead-1.4.5/lib/abseil/absl/flags/reflection.cc +365 -0
  378. tkvsc_oead-1.4.5/lib/abseil/absl/flags/reflection.h +90 -0
  379. tkvsc_oead-1.4.5/lib/abseil/absl/flags/reflection_test.cc +268 -0
  380. tkvsc_oead-1.4.5/lib/abseil/absl/flags/usage.cc +66 -0
  381. tkvsc_oead-1.4.5/lib/abseil/absl/flags/usage.h +43 -0
  382. tkvsc_oead-1.4.5/lib/abseil/absl/flags/usage_config.cc +170 -0
  383. tkvsc_oead-1.4.5/lib/abseil/absl/flags/usage_config.h +135 -0
  384. tkvsc_oead-1.4.5/lib/abseil/absl/flags/usage_config_test.cc +205 -0
  385. tkvsc_oead-1.4.5/lib/abseil/absl/functional/BUILD.bazel +168 -0
  386. tkvsc_oead-1.4.5/lib/abseil/absl/functional/CMakeLists.txt +138 -0
  387. tkvsc_oead-1.4.5/lib/abseil/absl/functional/any_invocable.h +334 -0
  388. tkvsc_oead-1.4.5/lib/abseil/absl/functional/any_invocable_test.cc +1719 -0
  389. tkvsc_oead-1.4.5/lib/abseil/absl/functional/bind_front.h +194 -0
  390. tkvsc_oead-1.4.5/lib/abseil/absl/functional/bind_front_test.cc +227 -0
  391. tkvsc_oead-1.4.5/lib/abseil/absl/functional/function_ref.h +151 -0
  392. tkvsc_oead-1.4.5/lib/abseil/absl/functional/function_ref_test.cc +293 -0
  393. tkvsc_oead-1.4.5/lib/abseil/absl/functional/function_type_benchmark.cc +176 -0
  394. tkvsc_oead-1.4.5/lib/abseil/absl/functional/internal/any_invocable.h +891 -0
  395. tkvsc_oead-1.4.5/lib/abseil/absl/functional/internal/front_binder.h +95 -0
  396. tkvsc_oead-1.4.5/lib/abseil/absl/functional/internal/function_ref.h +116 -0
  397. tkvsc_oead-1.4.5/lib/abseil/absl/functional/overload.h +92 -0
  398. tkvsc_oead-1.4.5/lib/abseil/absl/functional/overload_test.cc +213 -0
  399. tkvsc_oead-1.4.5/lib/abseil/absl/hash/BUILD.bazel +212 -0
  400. tkvsc_oead-1.4.5/lib/abseil/absl/hash/CMakeLists.txt +181 -0
  401. tkvsc_oead-1.4.5/lib/abseil/absl/hash/hash.h +448 -0
  402. tkvsc_oead-1.4.5/lib/abseil/absl/hash/hash_benchmark.cc +384 -0
  403. tkvsc_oead-1.4.5/lib/abseil/absl/hash/hash_instantiated_test.cc +224 -0
  404. tkvsc_oead-1.4.5/lib/abseil/absl/hash/hash_test.cc +1216 -0
  405. tkvsc_oead-1.4.5/lib/abseil/absl/hash/hash_testing.h +380 -0
  406. tkvsc_oead-1.4.5/lib/abseil/absl/hash/internal/city.cc +349 -0
  407. tkvsc_oead-1.4.5/lib/abseil/absl/hash/internal/city.h +78 -0
  408. tkvsc_oead-1.4.5/lib/abseil/absl/hash/internal/city_test.cc +597 -0
  409. tkvsc_oead-1.4.5/lib/abseil/absl/hash/internal/hash.cc +69 -0
  410. tkvsc_oead-1.4.5/lib/abseil/absl/hash/internal/hash.h +1490 -0
  411. tkvsc_oead-1.4.5/lib/abseil/absl/hash/internal/hash_test.h +87 -0
  412. tkvsc_oead-1.4.5/lib/abseil/absl/hash/internal/low_level_hash.cc +148 -0
  413. tkvsc_oead-1.4.5/lib/abseil/absl/hash/internal/low_level_hash.h +54 -0
  414. tkvsc_oead-1.4.5/lib/abseil/absl/hash/internal/low_level_hash_test.cc +532 -0
  415. tkvsc_oead-1.4.5/lib/abseil/absl/hash/internal/print_hash_of.cc +23 -0
  416. tkvsc_oead-1.4.5/lib/abseil/absl/hash/internal/spy_hash_state.h +274 -0
  417. tkvsc_oead-1.4.5/lib/abseil/absl/log/BUILD.bazel +680 -0
  418. tkvsc_oead-1.4.5/lib/abseil/absl/log/CMakeLists.txt +1198 -0
  419. tkvsc_oead-1.4.5/lib/abseil/absl/log/absl_check.h +117 -0
  420. tkvsc_oead-1.4.5/lib/abseil/absl/log/absl_check_test.cc +58 -0
  421. tkvsc_oead-1.4.5/lib/abseil/absl/log/absl_log.h +115 -0
  422. tkvsc_oead-1.4.5/lib/abseil/absl/log/absl_log_basic_test.cc +22 -0
  423. tkvsc_oead-1.4.5/lib/abseil/absl/log/absl_vlog_is_on.h +95 -0
  424. tkvsc_oead-1.4.5/lib/abseil/absl/log/check.h +209 -0
  425. tkvsc_oead-1.4.5/lib/abseil/absl/log/check_test.cc +58 -0
  426. tkvsc_oead-1.4.5/lib/abseil/absl/log/check_test_impl.inc +686 -0
  427. tkvsc_oead-1.4.5/lib/abseil/absl/log/die_if_null.cc +32 -0
  428. tkvsc_oead-1.4.5/lib/abseil/absl/log/die_if_null.h +76 -0
  429. tkvsc_oead-1.4.5/lib/abseil/absl/log/die_if_null_test.cc +107 -0
  430. tkvsc_oead-1.4.5/lib/abseil/absl/log/flags.cc +143 -0
  431. tkvsc_oead-1.4.5/lib/abseil/absl/log/flags.h +43 -0
  432. tkvsc_oead-1.4.5/lib/abseil/absl/log/flags_test.cc +188 -0
  433. tkvsc_oead-1.4.5/lib/abseil/absl/log/globals.cc +178 -0
  434. tkvsc_oead-1.4.5/lib/abseil/absl/log/globals.h +231 -0
  435. tkvsc_oead-1.4.5/lib/abseil/absl/log/globals_test.cc +156 -0
  436. tkvsc_oead-1.4.5/lib/abseil/absl/log/initialize.cc +38 -0
  437. tkvsc_oead-1.4.5/lib/abseil/absl/log/initialize.h +45 -0
  438. tkvsc_oead-1.4.5/lib/abseil/absl/log/internal/BUILD.bazel +547 -0
  439. tkvsc_oead-1.4.5/lib/abseil/absl/log/internal/append_truncated.h +47 -0
  440. tkvsc_oead-1.4.5/lib/abseil/absl/log/internal/check_impl.h +150 -0
  441. tkvsc_oead-1.4.5/lib/abseil/absl/log/internal/check_op.cc +143 -0
  442. tkvsc_oead-1.4.5/lib/abseil/absl/log/internal/check_op.h +484 -0
  443. tkvsc_oead-1.4.5/lib/abseil/absl/log/internal/conditions.cc +83 -0
  444. tkvsc_oead-1.4.5/lib/abseil/absl/log/internal/conditions.h +239 -0
  445. tkvsc_oead-1.4.5/lib/abseil/absl/log/internal/config.h +45 -0
  446. tkvsc_oead-1.4.5/lib/abseil/absl/log/internal/flags.h +59 -0
  447. tkvsc_oead-1.4.5/lib/abseil/absl/log/internal/fnmatch.cc +73 -0
  448. tkvsc_oead-1.4.5/lib/abseil/absl/log/internal/fnmatch.h +35 -0
  449. tkvsc_oead-1.4.5/lib/abseil/absl/log/internal/fnmatch_benchmark.cc +29 -0
  450. tkvsc_oead-1.4.5/lib/abseil/absl/log/internal/fnmatch_test.cc +59 -0
  451. tkvsc_oead-1.4.5/lib/abseil/absl/log/internal/globals.cc +145 -0
  452. tkvsc_oead-1.4.5/lib/abseil/absl/log/internal/globals.h +101 -0
  453. tkvsc_oead-1.4.5/lib/abseil/absl/log/internal/log_format.cc +205 -0
  454. tkvsc_oead-1.4.5/lib/abseil/absl/log/internal/log_format.h +78 -0
  455. tkvsc_oead-1.4.5/lib/abseil/absl/log/internal/log_impl.h +282 -0
  456. tkvsc_oead-1.4.5/lib/abseil/absl/log/internal/log_message.cc +742 -0
  457. tkvsc_oead-1.4.5/lib/abseil/absl/log/internal/log_message.h +426 -0
  458. tkvsc_oead-1.4.5/lib/abseil/absl/log/internal/log_sink_set.cc +296 -0
  459. tkvsc_oead-1.4.5/lib/abseil/absl/log/internal/log_sink_set.h +54 -0
  460. tkvsc_oead-1.4.5/lib/abseil/absl/log/internal/nullguard.cc +35 -0
  461. tkvsc_oead-1.4.5/lib/abseil/absl/log/internal/nullguard.h +88 -0
  462. tkvsc_oead-1.4.5/lib/abseil/absl/log/internal/nullstream.h +127 -0
  463. tkvsc_oead-1.4.5/lib/abseil/absl/log/internal/proto.cc +217 -0
  464. tkvsc_oead-1.4.5/lib/abseil/absl/log/internal/proto.h +298 -0
  465. tkvsc_oead-1.4.5/lib/abseil/absl/log/internal/stderr_log_sink_test.cc +105 -0
  466. tkvsc_oead-1.4.5/lib/abseil/absl/log/internal/strip.h +108 -0
  467. tkvsc_oead-1.4.5/lib/abseil/absl/log/internal/structured.h +164 -0
  468. tkvsc_oead-1.4.5/lib/abseil/absl/log/internal/structured_proto.cc +115 -0
  469. tkvsc_oead-1.4.5/lib/abseil/absl/log/internal/structured_proto.h +107 -0
  470. tkvsc_oead-1.4.5/lib/abseil/absl/log/internal/structured_proto_test.cc +120 -0
  471. tkvsc_oead-1.4.5/lib/abseil/absl/log/internal/test_actions.cc +75 -0
  472. tkvsc_oead-1.4.5/lib/abseil/absl/log/internal/test_actions.h +90 -0
  473. tkvsc_oead-1.4.5/lib/abseil/absl/log/internal/test_helpers.cc +82 -0
  474. tkvsc_oead-1.4.5/lib/abseil/absl/log/internal/test_helpers.h +71 -0
  475. tkvsc_oead-1.4.5/lib/abseil/absl/log/internal/test_matchers.cc +216 -0
  476. tkvsc_oead-1.4.5/lib/abseil/absl/log/internal/test_matchers.h +94 -0
  477. tkvsc_oead-1.4.5/lib/abseil/absl/log/internal/vlog_config.cc +347 -0
  478. tkvsc_oead-1.4.5/lib/abseil/absl/log/internal/vlog_config.h +163 -0
  479. tkvsc_oead-1.4.5/lib/abseil/absl/log/internal/vlog_config_benchmark.cc +187 -0
  480. tkvsc_oead-1.4.5/lib/abseil/absl/log/internal/voidify.h +44 -0
  481. tkvsc_oead-1.4.5/lib/abseil/absl/log/log.h +365 -0
  482. tkvsc_oead-1.4.5/lib/abseil/absl/log/log_basic_test.cc +22 -0
  483. tkvsc_oead-1.4.5/lib/abseil/absl/log/log_basic_test_impl.inc +609 -0
  484. tkvsc_oead-1.4.5/lib/abseil/absl/log/log_benchmark.cc +164 -0
  485. tkvsc_oead-1.4.5/lib/abseil/absl/log/log_entry.cc +41 -0
  486. tkvsc_oead-1.4.5/lib/abseil/absl/log/log_entry.h +221 -0
  487. tkvsc_oead-1.4.5/lib/abseil/absl/log/log_entry_test.cc +468 -0
  488. tkvsc_oead-1.4.5/lib/abseil/absl/log/log_format_test.cc +1855 -0
  489. tkvsc_oead-1.4.5/lib/abseil/absl/log/log_macro_hygiene_test.cc +187 -0
  490. tkvsc_oead-1.4.5/lib/abseil/absl/log/log_modifier_methods_test.cc +224 -0
  491. tkvsc_oead-1.4.5/lib/abseil/absl/log/log_sink.cc +23 -0
  492. tkvsc_oead-1.4.5/lib/abseil/absl/log/log_sink.h +71 -0
  493. tkvsc_oead-1.4.5/lib/abseil/absl/log/log_sink_registry.h +64 -0
  494. tkvsc_oead-1.4.5/lib/abseil/absl/log/log_sink_test.cc +418 -0
  495. tkvsc_oead-1.4.5/lib/abseil/absl/log/log_streamer.h +181 -0
  496. tkvsc_oead-1.4.5/lib/abseil/absl/log/log_streamer_test.cc +438 -0
  497. tkvsc_oead-1.4.5/lib/abseil/absl/log/scoped_mock_log.cc +86 -0
  498. tkvsc_oead-1.4.5/lib/abseil/absl/log/scoped_mock_log.h +197 -0
  499. tkvsc_oead-1.4.5/lib/abseil/absl/log/scoped_mock_log_test.cc +295 -0
  500. tkvsc_oead-1.4.5/lib/abseil/absl/log/stripping_test.cc +502 -0
  501. tkvsc_oead-1.4.5/lib/abseil/absl/log/structured.h +75 -0
  502. tkvsc_oead-1.4.5/lib/abseil/absl/log/structured_test.cc +63 -0
  503. tkvsc_oead-1.4.5/lib/abseil/absl/log/vlog_is_on.h +74 -0
  504. tkvsc_oead-1.4.5/lib/abseil/absl/log/vlog_is_on_test.cc +233 -0
  505. tkvsc_oead-1.4.5/lib/abseil/absl/memory/BUILD.bazel +60 -0
  506. tkvsc_oead-1.4.5/lib/abseil/absl/memory/CMakeLists.txt +41 -0
  507. tkvsc_oead-1.4.5/lib/abseil/absl/memory/memory.h +278 -0
  508. tkvsc_oead-1.4.5/lib/abseil/absl/memory/memory_test.cc +222 -0
  509. tkvsc_oead-1.4.5/lib/abseil/absl/meta/BUILD.bazel +59 -0
  510. tkvsc_oead-1.4.5/lib/abseil/absl/meta/CMakeLists.txt +54 -0
  511. tkvsc_oead-1.4.5/lib/abseil/absl/meta/type_traits.h +670 -0
  512. tkvsc_oead-1.4.5/lib/abseil/absl/meta/type_traits_test.cc +841 -0
  513. tkvsc_oead-1.4.5/lib/abseil/absl/numeric/BUILD.bazel +141 -0
  514. tkvsc_oead-1.4.5/lib/abseil/absl/numeric/CMakeLists.txt +102 -0
  515. tkvsc_oead-1.4.5/lib/abseil/absl/numeric/bits.h +196 -0
  516. tkvsc_oead-1.4.5/lib/abseil/absl/numeric/bits_benchmark.cc +73 -0
  517. tkvsc_oead-1.4.5/lib/abseil/absl/numeric/bits_test.cc +641 -0
  518. tkvsc_oead-1.4.5/lib/abseil/absl/numeric/int128.cc +396 -0
  519. tkvsc_oead-1.4.5/lib/abseil/absl/numeric/int128.h +1204 -0
  520. tkvsc_oead-1.4.5/lib/abseil/absl/numeric/int128_benchmark.cc +282 -0
  521. tkvsc_oead-1.4.5/lib/abseil/absl/numeric/int128_have_intrinsic.inc +309 -0
  522. tkvsc_oead-1.4.5/lib/abseil/absl/numeric/int128_no_intrinsic.inc +349 -0
  523. tkvsc_oead-1.4.5/lib/abseil/absl/numeric/int128_stream_test.cc +1400 -0
  524. tkvsc_oead-1.4.5/lib/abseil/absl/numeric/int128_test.cc +1355 -0
  525. tkvsc_oead-1.4.5/lib/abseil/absl/numeric/internal/bits.h +362 -0
  526. tkvsc_oead-1.4.5/lib/abseil/absl/numeric/internal/representation.h +55 -0
  527. tkvsc_oead-1.4.5/lib/abseil/absl/profiling/BUILD.bazel +140 -0
  528. tkvsc_oead-1.4.5/lib/abseil/absl/profiling/CMakeLists.txt +93 -0
  529. tkvsc_oead-1.4.5/lib/abseil/absl/profiling/internal/exponential_biased.cc +93 -0
  530. tkvsc_oead-1.4.5/lib/abseil/absl/profiling/internal/exponential_biased.h +130 -0
  531. tkvsc_oead-1.4.5/lib/abseil/absl/profiling/internal/exponential_biased_test.cc +203 -0
  532. tkvsc_oead-1.4.5/lib/abseil/absl/profiling/internal/periodic_sampler.cc +53 -0
  533. tkvsc_oead-1.4.5/lib/abseil/absl/profiling/internal/periodic_sampler.h +211 -0
  534. tkvsc_oead-1.4.5/lib/abseil/absl/profiling/internal/periodic_sampler_benchmark.cc +79 -0
  535. tkvsc_oead-1.4.5/lib/abseil/absl/profiling/internal/periodic_sampler_test.cc +177 -0
  536. tkvsc_oead-1.4.5/lib/abseil/absl/profiling/internal/sample_recorder.h +253 -0
  537. tkvsc_oead-1.4.5/lib/abseil/absl/profiling/internal/sample_recorder_test.cc +184 -0
  538. tkvsc_oead-1.4.5/lib/abseil/absl/random/BUILD.bazel +548 -0
  539. tkvsc_oead-1.4.5/lib/abseil/absl/random/CMakeLists.txt +1249 -0
  540. tkvsc_oead-1.4.5/lib/abseil/absl/random/benchmarks.cc +383 -0
  541. tkvsc_oead-1.4.5/lib/abseil/absl/random/bernoulli_distribution.h +202 -0
  542. tkvsc_oead-1.4.5/lib/abseil/absl/random/bernoulli_distribution_test.cc +217 -0
  543. tkvsc_oead-1.4.5/lib/abseil/absl/random/beta_distribution.h +429 -0
  544. tkvsc_oead-1.4.5/lib/abseil/absl/random/beta_distribution_test.cc +615 -0
  545. tkvsc_oead-1.4.5/lib/abseil/absl/random/bit_gen_ref.h +188 -0
  546. tkvsc_oead-1.4.5/lib/abseil/absl/random/bit_gen_ref_test.cc +102 -0
  547. tkvsc_oead-1.4.5/lib/abseil/absl/random/discrete_distribution.cc +108 -0
  548. tkvsc_oead-1.4.5/lib/abseil/absl/random/discrete_distribution.h +249 -0
  549. tkvsc_oead-1.4.5/lib/abseil/absl/random/discrete_distribution_test.cc +251 -0
  550. tkvsc_oead-1.4.5/lib/abseil/absl/random/distributions.h +452 -0
  551. tkvsc_oead-1.4.5/lib/abseil/absl/random/distributions_test.cc +516 -0
  552. tkvsc_oead-1.4.5/lib/abseil/absl/random/examples_test.cc +98 -0
  553. tkvsc_oead-1.4.5/lib/abseil/absl/random/exponential_distribution.h +166 -0
  554. tkvsc_oead-1.4.5/lib/abseil/absl/random/exponential_distribution_test.cc +426 -0
  555. tkvsc_oead-1.4.5/lib/abseil/absl/random/gaussian_distribution.cc +104 -0
  556. tkvsc_oead-1.4.5/lib/abseil/absl/random/gaussian_distribution.h +276 -0
  557. tkvsc_oead-1.4.5/lib/abseil/absl/random/gaussian_distribution_test.cc +561 -0
  558. tkvsc_oead-1.4.5/lib/abseil/absl/random/generators_test.cc +185 -0
  559. tkvsc_oead-1.4.5/lib/abseil/absl/random/internal/BUILD.bazel +864 -0
  560. tkvsc_oead-1.4.5/lib/abseil/absl/random/internal/chi_square.cc +230 -0
  561. tkvsc_oead-1.4.5/lib/abseil/absl/random/internal/chi_square.h +89 -0
  562. tkvsc_oead-1.4.5/lib/abseil/absl/random/internal/chi_square_test.cc +364 -0
  563. tkvsc_oead-1.4.5/lib/abseil/absl/random/internal/distribution_caller.h +97 -0
  564. tkvsc_oead-1.4.5/lib/abseil/absl/random/internal/distribution_test_util.cc +418 -0
  565. tkvsc_oead-1.4.5/lib/abseil/absl/random/internal/distribution_test_util.h +113 -0
  566. tkvsc_oead-1.4.5/lib/abseil/absl/random/internal/distribution_test_util_test.cc +193 -0
  567. tkvsc_oead-1.4.5/lib/abseil/absl/random/internal/explicit_seed_seq.h +92 -0
  568. tkvsc_oead-1.4.5/lib/abseil/absl/random/internal/explicit_seed_seq_test.cc +241 -0
  569. tkvsc_oead-1.4.5/lib/abseil/absl/random/internal/fast_uniform_bits.h +271 -0
  570. tkvsc_oead-1.4.5/lib/abseil/absl/random/internal/fast_uniform_bits_test.cc +336 -0
  571. tkvsc_oead-1.4.5/lib/abseil/absl/random/internal/fastmath.h +57 -0
  572. tkvsc_oead-1.4.5/lib/abseil/absl/random/internal/fastmath_test.cc +97 -0
  573. tkvsc_oead-1.4.5/lib/abseil/absl/random/internal/gaussian_distribution_gentables.cc +142 -0
  574. tkvsc_oead-1.4.5/lib/abseil/absl/random/internal/generate_real.h +144 -0
  575. tkvsc_oead-1.4.5/lib/abseil/absl/random/internal/generate_real_test.cc +496 -0
  576. tkvsc_oead-1.4.5/lib/abseil/absl/random/internal/iostream_state_saver.h +248 -0
  577. tkvsc_oead-1.4.5/lib/abseil/absl/random/internal/iostream_state_saver_test.cc +373 -0
  578. tkvsc_oead-1.4.5/lib/abseil/absl/random/internal/mock_helpers.h +161 -0
  579. tkvsc_oead-1.4.5/lib/abseil/absl/random/internal/mock_overload_set.h +122 -0
  580. tkvsc_oead-1.4.5/lib/abseil/absl/random/internal/mock_validators.h +98 -0
  581. tkvsc_oead-1.4.5/lib/abseil/absl/random/internal/nanobenchmark.cc +804 -0
  582. tkvsc_oead-1.4.5/lib/abseil/absl/random/internal/nanobenchmark.h +172 -0
  583. tkvsc_oead-1.4.5/lib/abseil/absl/random/internal/nanobenchmark_test.cc +79 -0
  584. tkvsc_oead-1.4.5/lib/abseil/absl/random/internal/nonsecure_base.h +161 -0
  585. tkvsc_oead-1.4.5/lib/abseil/absl/random/internal/nonsecure_base_test.cc +228 -0
  586. tkvsc_oead-1.4.5/lib/abseil/absl/random/internal/pcg_engine.h +287 -0
  587. tkvsc_oead-1.4.5/lib/abseil/absl/random/internal/pcg_engine_test.cc +638 -0
  588. tkvsc_oead-1.4.5/lib/abseil/absl/random/internal/platform.h +171 -0
  589. tkvsc_oead-1.4.5/lib/abseil/absl/random/internal/pool_urbg.cc +253 -0
  590. tkvsc_oead-1.4.5/lib/abseil/absl/random/internal/pool_urbg.h +131 -0
  591. tkvsc_oead-1.4.5/lib/abseil/absl/random/internal/pool_urbg_test.cc +182 -0
  592. tkvsc_oead-1.4.5/lib/abseil/absl/random/internal/randen.cc +91 -0
  593. tkvsc_oead-1.4.5/lib/abseil/absl/random/internal/randen.h +96 -0
  594. tkvsc_oead-1.4.5/lib/abseil/absl/random/internal/randen_benchmarks.cc +175 -0
  595. tkvsc_oead-1.4.5/lib/abseil/absl/random/internal/randen_detect.cc +280 -0
  596. tkvsc_oead-1.4.5/lib/abseil/absl/random/internal/randen_detect.h +33 -0
  597. tkvsc_oead-1.4.5/lib/abseil/absl/random/internal/randen_engine.h +265 -0
  598. tkvsc_oead-1.4.5/lib/abseil/absl/random/internal/randen_engine_test.cc +655 -0
  599. tkvsc_oead-1.4.5/lib/abseil/absl/random/internal/randen_hwaes.cc +526 -0
  600. tkvsc_oead-1.4.5/lib/abseil/absl/random/internal/randen_hwaes.h +50 -0
  601. tkvsc_oead-1.4.5/lib/abseil/absl/random/internal/randen_hwaes_test.cc +99 -0
  602. tkvsc_oead-1.4.5/lib/abseil/absl/random/internal/randen_round_keys.cc +462 -0
  603. tkvsc_oead-1.4.5/lib/abseil/absl/random/internal/randen_slow.cc +471 -0
  604. tkvsc_oead-1.4.5/lib/abseil/absl/random/internal/randen_slow.h +40 -0
  605. tkvsc_oead-1.4.5/lib/abseil/absl/random/internal/randen_slow_test.cc +61 -0
  606. tkvsc_oead-1.4.5/lib/abseil/absl/random/internal/randen_test.cc +75 -0
  607. tkvsc_oead-1.4.5/lib/abseil/absl/random/internal/randen_traits.h +88 -0
  608. tkvsc_oead-1.4.5/lib/abseil/absl/random/internal/salted_seed_seq.h +165 -0
  609. tkvsc_oead-1.4.5/lib/abseil/absl/random/internal/salted_seed_seq_test.cc +172 -0
  610. tkvsc_oead-1.4.5/lib/abseil/absl/random/internal/seed_material.cc +267 -0
  611. tkvsc_oead-1.4.5/lib/abseil/absl/random/internal/seed_material.h +104 -0
  612. tkvsc_oead-1.4.5/lib/abseil/absl/random/internal/seed_material_test.cc +202 -0
  613. tkvsc_oead-1.4.5/lib/abseil/absl/random/internal/sequence_urbg.h +60 -0
  614. tkvsc_oead-1.4.5/lib/abseil/absl/random/internal/traits.h +149 -0
  615. tkvsc_oead-1.4.5/lib/abseil/absl/random/internal/traits_test.cc +123 -0
  616. tkvsc_oead-1.4.5/lib/abseil/absl/random/internal/uniform_helper.h +244 -0
  617. tkvsc_oead-1.4.5/lib/abseil/absl/random/internal/uniform_helper_test.cc +279 -0
  618. tkvsc_oead-1.4.5/lib/abseil/absl/random/internal/wide_multiply.h +95 -0
  619. tkvsc_oead-1.4.5/lib/abseil/absl/random/internal/wide_multiply_test.cc +119 -0
  620. tkvsc_oead-1.4.5/lib/abseil/absl/random/log_uniform_int_distribution.h +253 -0
  621. tkvsc_oead-1.4.5/lib/abseil/absl/random/log_uniform_int_distribution_test.cc +277 -0
  622. tkvsc_oead-1.4.5/lib/abseil/absl/random/mock_distributions.h +269 -0
  623. tkvsc_oead-1.4.5/lib/abseil/absl/random/mock_distributions_test.cc +280 -0
  624. tkvsc_oead-1.4.5/lib/abseil/absl/random/mocking_bit_gen.h +239 -0
  625. tkvsc_oead-1.4.5/lib/abseil/absl/random/mocking_bit_gen_test.cc +403 -0
  626. tkvsc_oead-1.4.5/lib/abseil/absl/random/poisson_distribution.h +262 -0
  627. tkvsc_oead-1.4.5/lib/abseil/absl/random/poisson_distribution_test.cc +569 -0
  628. tkvsc_oead-1.4.5/lib/abseil/absl/random/random.h +189 -0
  629. tkvsc_oead-1.4.5/lib/abseil/absl/random/seed_gen_exception.cc +45 -0
  630. tkvsc_oead-1.4.5/lib/abseil/absl/random/seed_gen_exception.h +55 -0
  631. tkvsc_oead-1.4.5/lib/abseil/absl/random/seed_sequences.cc +29 -0
  632. tkvsc_oead-1.4.5/lib/abseil/absl/random/seed_sequences.h +112 -0
  633. tkvsc_oead-1.4.5/lib/abseil/absl/random/seed_sequences_test.cc +126 -0
  634. tkvsc_oead-1.4.5/lib/abseil/absl/random/uniform_int_distribution.h +276 -0
  635. tkvsc_oead-1.4.5/lib/abseil/absl/random/uniform_int_distribution_test.cc +259 -0
  636. tkvsc_oead-1.4.5/lib/abseil/absl/random/uniform_real_distribution.h +204 -0
  637. tkvsc_oead-1.4.5/lib/abseil/absl/random/uniform_real_distribution_test.cc +394 -0
  638. tkvsc_oead-1.4.5/lib/abseil/absl/random/zipf_distribution.h +273 -0
  639. tkvsc_oead-1.4.5/lib/abseil/absl/random/zipf_distribution_test.cc +423 -0
  640. tkvsc_oead-1.4.5/lib/abseil/absl/status/BUILD.bazel +168 -0
  641. tkvsc_oead-1.4.5/lib/abseil/absl/status/CMakeLists.txt +143 -0
  642. tkvsc_oead-1.4.5/lib/abseil/absl/status/internal/status_internal.cc +252 -0
  643. tkvsc_oead-1.4.5/lib/abseil/absl/status/internal/status_internal.h +132 -0
  644. tkvsc_oead-1.4.5/lib/abseil/absl/status/internal/status_matchers.cc +68 -0
  645. tkvsc_oead-1.4.5/lib/abseil/absl/status/internal/status_matchers.h +246 -0
  646. tkvsc_oead-1.4.5/lib/abseil/absl/status/internal/statusor_internal.h +494 -0
  647. tkvsc_oead-1.4.5/lib/abseil/absl/status/status.cc +421 -0
  648. tkvsc_oead-1.4.5/lib/abseil/absl/status/status.h +943 -0
  649. tkvsc_oead-1.4.5/lib/abseil/absl/status/status_matchers.h +118 -0
  650. tkvsc_oead-1.4.5/lib/abseil/absl/status/status_matchers_test.cc +119 -0
  651. tkvsc_oead-1.4.5/lib/abseil/absl/status/status_payload_printer.cc +36 -0
  652. tkvsc_oead-1.4.5/lib/abseil/absl/status/status_payload_printer.h +52 -0
  653. tkvsc_oead-1.4.5/lib/abseil/absl/status/status_test.cc +579 -0
  654. tkvsc_oead-1.4.5/lib/abseil/absl/status/statusor.cc +106 -0
  655. tkvsc_oead-1.4.5/lib/abseil/absl/status/statusor.h +796 -0
  656. tkvsc_oead-1.4.5/lib/abseil/absl/status/statusor_test.cc +1802 -0
  657. tkvsc_oead-1.4.5/lib/abseil/absl/strings/BUILD.bazel +1477 -0
  658. tkvsc_oead-1.4.5/lib/abseil/absl/strings/CMakeLists.txt +1198 -0
  659. tkvsc_oead-1.4.5/lib/abseil/absl/strings/ascii.cc +296 -0
  660. tkvsc_oead-1.4.5/lib/abseil/absl/strings/ascii.h +284 -0
  661. tkvsc_oead-1.4.5/lib/abseil/absl/strings/ascii_benchmark.cc +160 -0
  662. tkvsc_oead-1.4.5/lib/abseil/absl/strings/ascii_test.cc +374 -0
  663. tkvsc_oead-1.4.5/lib/abseil/absl/strings/atod_manual_test.cc +193 -0
  664. tkvsc_oead-1.4.5/lib/abseil/absl/strings/char_formatting_test.cc +169 -0
  665. tkvsc_oead-1.4.5/lib/abseil/absl/strings/charconv.cc +1443 -0
  666. tkvsc_oead-1.4.5/lib/abseil/absl/strings/charconv.h +123 -0
  667. tkvsc_oead-1.4.5/lib/abseil/absl/strings/charconv_benchmark.cc +204 -0
  668. tkvsc_oead-1.4.5/lib/abseil/absl/strings/charconv_test.cc +787 -0
  669. tkvsc_oead-1.4.5/lib/abseil/absl/strings/charset.h +163 -0
  670. tkvsc_oead-1.4.5/lib/abseil/absl/strings/charset_benchmark.cc +57 -0
  671. tkvsc_oead-1.4.5/lib/abseil/absl/strings/charset_test.cc +181 -0
  672. tkvsc_oead-1.4.5/lib/abseil/absl/strings/cord.cc +1581 -0
  673. tkvsc_oead-1.4.5/lib/abseil/absl/strings/cord.h +1753 -0
  674. tkvsc_oead-1.4.5/lib/abseil/absl/strings/cord_analysis.cc +196 -0
  675. tkvsc_oead-1.4.5/lib/abseil/absl/strings/cord_analysis.h +63 -0
  676. tkvsc_oead-1.4.5/lib/abseil/absl/strings/cord_buffer.cc +30 -0
  677. tkvsc_oead-1.4.5/lib/abseil/absl/strings/cord_buffer.h +572 -0
  678. tkvsc_oead-1.4.5/lib/abseil/absl/strings/cord_buffer_test.cc +322 -0
  679. tkvsc_oead-1.4.5/lib/abseil/absl/strings/cord_test.cc +3398 -0
  680. tkvsc_oead-1.4.5/lib/abseil/absl/strings/cord_test_helpers.h +122 -0
  681. tkvsc_oead-1.4.5/lib/abseil/absl/strings/cordz_test.cc +468 -0
  682. tkvsc_oead-1.4.5/lib/abseil/absl/strings/cordz_test_helpers.h +153 -0
  683. tkvsc_oead-1.4.5/lib/abseil/absl/strings/escaping.cc +1022 -0
  684. tkvsc_oead-1.4.5/lib/abseil/absl/strings/escaping.h +186 -0
  685. tkvsc_oead-1.4.5/lib/abseil/absl/strings/escaping_benchmark.cc +125 -0
  686. tkvsc_oead-1.4.5/lib/abseil/absl/strings/escaping_test.cc +750 -0
  687. tkvsc_oead-1.4.5/lib/abseil/absl/strings/has_absl_stringify.h +64 -0
  688. tkvsc_oead-1.4.5/lib/abseil/absl/strings/has_absl_stringify_test.cc +40 -0
  689. tkvsc_oead-1.4.5/lib/abseil/absl/strings/has_ostream_operator.h +42 -0
  690. tkvsc_oead-1.4.5/lib/abseil/absl/strings/has_ostream_operator_test.cc +41 -0
  691. tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/charconv_bigint.cc +357 -0
  692. tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/charconv_bigint.h +433 -0
  693. tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/charconv_bigint_test.cc +260 -0
  694. tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/charconv_parse.cc +504 -0
  695. tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/charconv_parse.h +99 -0
  696. tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/charconv_parse_test.cc +357 -0
  697. tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/cord_data_edge.h +63 -0
  698. tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/cord_data_edge_test.cc +130 -0
  699. tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/cord_internal.cc +70 -0
  700. tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/cord_internal.h +944 -0
  701. tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/cord_rep_btree.cc +1241 -0
  702. tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/cord_rep_btree.h +944 -0
  703. tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/cord_rep_btree_navigator.cc +187 -0
  704. tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/cord_rep_btree_navigator.h +267 -0
  705. tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/cord_rep_btree_navigator_test.cc +346 -0
  706. tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/cord_rep_btree_reader.cc +69 -0
  707. tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/cord_rep_btree_reader.h +212 -0
  708. tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/cord_rep_btree_reader_test.cc +293 -0
  709. tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/cord_rep_btree_test.cc +1568 -0
  710. tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/cord_rep_consume.cc +64 -0
  711. tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/cord_rep_consume.h +47 -0
  712. tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/cord_rep_crc.cc +56 -0
  713. tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/cord_rep_crc.h +103 -0
  714. tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/cord_rep_crc_test.cc +130 -0
  715. tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/cord_rep_flat.h +195 -0
  716. tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/cord_rep_test_util.h +205 -0
  717. tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/cordz_functions.cc +102 -0
  718. tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/cordz_functions.h +87 -0
  719. tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/cordz_functions_test.cc +147 -0
  720. tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/cordz_handle.cc +165 -0
  721. tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/cordz_handle.h +98 -0
  722. tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/cordz_handle_test.cc +265 -0
  723. tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/cordz_info.cc +422 -0
  724. tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/cordz_info.h +303 -0
  725. tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/cordz_info_statistics_test.cc +510 -0
  726. tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/cordz_info_test.cc +342 -0
  727. tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/cordz_sample_token.cc +64 -0
  728. tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/cordz_sample_token.h +97 -0
  729. tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/cordz_sample_token_test.cc +208 -0
  730. tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/cordz_statistics.h +88 -0
  731. tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/cordz_update_scope.h +71 -0
  732. tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/cordz_update_scope_test.cc +49 -0
  733. tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/cordz_update_tracker.h +123 -0
  734. tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/cordz_update_tracker_test.cc +147 -0
  735. tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/damerau_levenshtein_distance.cc +93 -0
  736. tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/damerau_levenshtein_distance.h +34 -0
  737. tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/damerau_levenshtein_distance_test.cc +99 -0
  738. tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/escaping.cc +209 -0
  739. tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/escaping.h +57 -0
  740. tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/escaping_test_common.h +133 -0
  741. tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/memutil.cc +48 -0
  742. tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/memutil.h +40 -0
  743. tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/memutil_benchmark.cc +128 -0
  744. tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/memutil_test.cc +41 -0
  745. tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/numbers_test_common.h +184 -0
  746. tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/ostringstream.cc +43 -0
  747. tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/ostringstream.h +114 -0
  748. tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/ostringstream_benchmark.cc +106 -0
  749. tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/ostringstream_test.cc +131 -0
  750. tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/pow10_helper.cc +122 -0
  751. tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/pow10_helper.h +40 -0
  752. tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/pow10_helper_test.cc +122 -0
  753. tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/resize_uninitialized.h +119 -0
  754. tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/resize_uninitialized_test.cc +133 -0
  755. tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/stl_type_traits.h +248 -0
  756. tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/str_format/arg.cc +671 -0
  757. tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/str_format/arg.h +671 -0
  758. tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/str_format/arg_test.cc +162 -0
  759. tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/str_format/bind.cc +275 -0
  760. tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/str_format/bind.h +237 -0
  761. tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/str_format/bind_test.cc +157 -0
  762. tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/str_format/checker.h +100 -0
  763. tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/str_format/checker_test.cc +176 -0
  764. tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/str_format/constexpr_parser.h +357 -0
  765. tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/str_format/convert_test.cc +1462 -0
  766. tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/str_format/extension.cc +75 -0
  767. tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/str_format/extension.h +456 -0
  768. tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/str_format/extension_test.cc +109 -0
  769. tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/str_format/float_conversion.cc +1458 -0
  770. tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/str_format/float_conversion.h +37 -0
  771. tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/str_format/output.cc +72 -0
  772. tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/str_format/output.h +97 -0
  773. tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/str_format/output_test.cc +79 -0
  774. tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/str_format/parser.cc +140 -0
  775. tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/str_format/parser.h +269 -0
  776. tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/str_format/parser_test.cc +446 -0
  777. tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/str_join_internal.h +338 -0
  778. tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/str_split_internal.h +520 -0
  779. tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/string_constant.h +72 -0
  780. tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/string_constant_test.cc +60 -0
  781. tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/stringify_sink.cc +28 -0
  782. tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/stringify_sink.h +57 -0
  783. tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/utf8.cc +53 -0
  784. tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/utf8.h +50 -0
  785. tkvsc_oead-1.4.5/lib/abseil/absl/strings/internal/utf8_test.cc +66 -0
  786. tkvsc_oead-1.4.5/lib/abseil/absl/strings/match.cc +133 -0
  787. tkvsc_oead-1.4.5/lib/abseil/absl/strings/match.h +129 -0
  788. tkvsc_oead-1.4.5/lib/abseil/absl/strings/match_test.cc +291 -0
  789. tkvsc_oead-1.4.5/lib/abseil/absl/strings/numbers.cc +1146 -0
  790. tkvsc_oead-1.4.5/lib/abseil/absl/strings/numbers.h +317 -0
  791. tkvsc_oead-1.4.5/lib/abseil/absl/strings/numbers_benchmark.cc +288 -0
  792. tkvsc_oead-1.4.5/lib/abseil/absl/strings/numbers_test.cc +1740 -0
  793. tkvsc_oead-1.4.5/lib/abseil/absl/strings/str_cat.cc +243 -0
  794. tkvsc_oead-1.4.5/lib/abseil/absl/strings/str_cat.h +628 -0
  795. tkvsc_oead-1.4.5/lib/abseil/absl/strings/str_cat_benchmark.cc +265 -0
  796. tkvsc_oead-1.4.5/lib/abseil/absl/strings/str_cat_test.cc +697 -0
  797. tkvsc_oead-1.4.5/lib/abseil/absl/strings/str_format.h +887 -0
  798. tkvsc_oead-1.4.5/lib/abseil/absl/strings/str_format_test.cc +1236 -0
  799. tkvsc_oead-1.4.5/lib/abseil/absl/strings/str_join.h +301 -0
  800. tkvsc_oead-1.4.5/lib/abseil/absl/strings/str_join_benchmark.cc +107 -0
  801. tkvsc_oead-1.4.5/lib/abseil/absl/strings/str_join_test.cc +645 -0
  802. tkvsc_oead-1.4.5/lib/abseil/absl/strings/str_replace.cc +91 -0
  803. tkvsc_oead-1.4.5/lib/abseil/absl/strings/str_replace.h +222 -0
  804. tkvsc_oead-1.4.5/lib/abseil/absl/strings/str_replace_benchmark.cc +122 -0
  805. tkvsc_oead-1.4.5/lib/abseil/absl/strings/str_replace_test.cc +345 -0
  806. tkvsc_oead-1.4.5/lib/abseil/absl/strings/str_split.cc +144 -0
  807. tkvsc_oead-1.4.5/lib/abseil/absl/strings/str_split.h +582 -0
  808. tkvsc_oead-1.4.5/lib/abseil/absl/strings/str_split_benchmark.cc +181 -0
  809. tkvsc_oead-1.4.5/lib/abseil/absl/strings/str_split_test.cc +1069 -0
  810. tkvsc_oead-1.4.5/lib/abseil/absl/strings/string_view.cc +262 -0
  811. tkvsc_oead-1.4.5/lib/abseil/absl/strings/string_view.h +771 -0
  812. tkvsc_oead-1.4.5/lib/abseil/absl/strings/string_view_benchmark.cc +382 -0
  813. tkvsc_oead-1.4.5/lib/abseil/absl/strings/string_view_test.cc +1398 -0
  814. tkvsc_oead-1.4.5/lib/abseil/absl/strings/strip.h +99 -0
  815. tkvsc_oead-1.4.5/lib/abseil/absl/strings/strip_test.cc +198 -0
  816. tkvsc_oead-1.4.5/lib/abseil/absl/strings/substitute.cc +186 -0
  817. tkvsc_oead-1.4.5/lib/abseil/absl/strings/substitute.h +767 -0
  818. tkvsc_oead-1.4.5/lib/abseil/absl/strings/substitute_test.cc +288 -0
  819. tkvsc_oead-1.4.5/lib/abseil/absl/synchronization/BUILD.bazel +406 -0
  820. tkvsc_oead-1.4.5/lib/abseil/absl/synchronization/CMakeLists.txt +291 -0
  821. tkvsc_oead-1.4.5/lib/abseil/absl/synchronization/barrier.cc +52 -0
  822. tkvsc_oead-1.4.5/lib/abseil/absl/synchronization/barrier.h +79 -0
  823. tkvsc_oead-1.4.5/lib/abseil/absl/synchronization/barrier_test.cc +75 -0
  824. tkvsc_oead-1.4.5/lib/abseil/absl/synchronization/blocking_counter.cc +73 -0
  825. tkvsc_oead-1.4.5/lib/abseil/absl/synchronization/blocking_counter.h +107 -0
  826. tkvsc_oead-1.4.5/lib/abseil/absl/synchronization/blocking_counter_benchmark.cc +84 -0
  827. tkvsc_oead-1.4.5/lib/abseil/absl/synchronization/blocking_counter_test.cc +146 -0
  828. tkvsc_oead-1.4.5/lib/abseil/absl/synchronization/internal/create_thread_identity.cc +152 -0
  829. tkvsc_oead-1.4.5/lib/abseil/absl/synchronization/internal/create_thread_identity.h +56 -0
  830. tkvsc_oead-1.4.5/lib/abseil/absl/synchronization/internal/futex.h +177 -0
  831. tkvsc_oead-1.4.5/lib/abseil/absl/synchronization/internal/futex_waiter.cc +111 -0
  832. tkvsc_oead-1.4.5/lib/abseil/absl/synchronization/internal/futex_waiter.h +63 -0
  833. tkvsc_oead-1.4.5/lib/abseil/absl/synchronization/internal/graphcycles.cc +717 -0
  834. tkvsc_oead-1.4.5/lib/abseil/absl/synchronization/internal/graphcycles.h +146 -0
  835. tkvsc_oead-1.4.5/lib/abseil/absl/synchronization/internal/graphcycles_benchmark.cc +44 -0
  836. tkvsc_oead-1.4.5/lib/abseil/absl/synchronization/internal/graphcycles_test.cc +482 -0
  837. tkvsc_oead-1.4.5/lib/abseil/absl/synchronization/internal/kernel_timeout.cc +225 -0
  838. tkvsc_oead-1.4.5/lib/abseil/absl/synchronization/internal/kernel_timeout.h +178 -0
  839. tkvsc_oead-1.4.5/lib/abseil/absl/synchronization/internal/kernel_timeout_test.cc +396 -0
  840. tkvsc_oead-1.4.5/lib/abseil/absl/synchronization/internal/per_thread_sem.cc +106 -0
  841. tkvsc_oead-1.4.5/lib/abseil/absl/synchronization/internal/per_thread_sem.h +119 -0
  842. tkvsc_oead-1.4.5/lib/abseil/absl/synchronization/internal/per_thread_sem_test.cc +194 -0
  843. tkvsc_oead-1.4.5/lib/abseil/absl/synchronization/internal/pthread_waiter.cc +167 -0
  844. tkvsc_oead-1.4.5/lib/abseil/absl/synchronization/internal/pthread_waiter.h +60 -0
  845. tkvsc_oead-1.4.5/lib/abseil/absl/synchronization/internal/sem_waiter.cc +122 -0
  846. tkvsc_oead-1.4.5/lib/abseil/absl/synchronization/internal/sem_waiter.h +65 -0
  847. tkvsc_oead-1.4.5/lib/abseil/absl/synchronization/internal/stdcpp_waiter.cc +91 -0
  848. tkvsc_oead-1.4.5/lib/abseil/absl/synchronization/internal/stdcpp_waiter.h +56 -0
  849. tkvsc_oead-1.4.5/lib/abseil/absl/synchronization/internal/thread_pool.h +96 -0
  850. tkvsc_oead-1.4.5/lib/abseil/absl/synchronization/internal/waiter.h +69 -0
  851. tkvsc_oead-1.4.5/lib/abseil/absl/synchronization/internal/waiter_base.cc +42 -0
  852. tkvsc_oead-1.4.5/lib/abseil/absl/synchronization/internal/waiter_base.h +90 -0
  853. tkvsc_oead-1.4.5/lib/abseil/absl/synchronization/internal/waiter_test.cc +183 -0
  854. tkvsc_oead-1.4.5/lib/abseil/absl/synchronization/internal/win32_waiter.cc +151 -0
  855. tkvsc_oead-1.4.5/lib/abseil/absl/synchronization/internal/win32_waiter.h +72 -0
  856. tkvsc_oead-1.4.5/lib/abseil/absl/synchronization/lifetime_test.cc +180 -0
  857. tkvsc_oead-1.4.5/lib/abseil/absl/synchronization/mutex.cc +2821 -0
  858. tkvsc_oead-1.4.5/lib/abseil/absl/synchronization/mutex.h +1219 -0
  859. tkvsc_oead-1.4.5/lib/abseil/absl/synchronization/mutex_benchmark.cc +339 -0
  860. tkvsc_oead-1.4.5/lib/abseil/absl/synchronization/mutex_method_pointer_test.cc +138 -0
  861. tkvsc_oead-1.4.5/lib/abseil/absl/synchronization/mutex_test.cc +2037 -0
  862. tkvsc_oead-1.4.5/lib/abseil/absl/synchronization/notification.cc +85 -0
  863. tkvsc_oead-1.4.5/lib/abseil/absl/synchronization/notification.h +133 -0
  864. tkvsc_oead-1.4.5/lib/abseil/absl/synchronization/notification_test.cc +230 -0
  865. tkvsc_oead-1.4.5/lib/abseil/absl/time/BUILD.bazel +156 -0
  866. tkvsc_oead-1.4.5/lib/abseil/absl/time/CMakeLists.txt +141 -0
  867. tkvsc_oead-1.4.5/lib/abseil/absl/time/civil_time.cc +199 -0
  868. tkvsc_oead-1.4.5/lib/abseil/absl/time/civil_time.h +589 -0
  869. tkvsc_oead-1.4.5/lib/abseil/absl/time/civil_time_benchmark.cc +130 -0
  870. tkvsc_oead-1.4.5/lib/abseil/absl/time/civil_time_test.cc +1262 -0
  871. tkvsc_oead-1.4.5/lib/abseil/absl/time/clock.cc +604 -0
  872. tkvsc_oead-1.4.5/lib/abseil/absl/time/clock.h +78 -0
  873. tkvsc_oead-1.4.5/lib/abseil/absl/time/clock_benchmark.cc +74 -0
  874. tkvsc_oead-1.4.5/lib/abseil/absl/time/clock_test.cc +122 -0
  875. tkvsc_oead-1.4.5/lib/abseil/absl/time/duration.cc +913 -0
  876. tkvsc_oead-1.4.5/lib/abseil/absl/time/duration_benchmark.cc +464 -0
  877. tkvsc_oead-1.4.5/lib/abseil/absl/time/duration_test.cc +1905 -0
  878. tkvsc_oead-1.4.5/lib/abseil/absl/time/flag_test.cc +147 -0
  879. tkvsc_oead-1.4.5/lib/abseil/absl/time/format.cc +162 -0
  880. tkvsc_oead-1.4.5/lib/abseil/absl/time/format_benchmark.cc +64 -0
  881. tkvsc_oead-1.4.5/lib/abseil/absl/time/format_test.cc +441 -0
  882. tkvsc_oead-1.4.5/lib/abseil/absl/time/internal/cctz/BUILD.bazel +178 -0
  883. tkvsc_oead-1.4.5/lib/abseil/absl/time/internal/cctz/include/cctz/civil_time.h +332 -0
  884. tkvsc_oead-1.4.5/lib/abseil/absl/time/internal/cctz/include/cctz/civil_time_detail.h +632 -0
  885. tkvsc_oead-1.4.5/lib/abseil/absl/time/internal/cctz/include/cctz/time_zone.h +460 -0
  886. tkvsc_oead-1.4.5/lib/abseil/absl/time/internal/cctz/include/cctz/zone_info_source.h +102 -0
  887. tkvsc_oead-1.4.5/lib/abseil/absl/time/internal/cctz/src/cctz_benchmark.cc +922 -0
  888. tkvsc_oead-1.4.5/lib/abseil/absl/time/internal/cctz/src/civil_time_detail.cc +94 -0
  889. tkvsc_oead-1.4.5/lib/abseil/absl/time/internal/cctz/src/civil_time_test.cc +1066 -0
  890. tkvsc_oead-1.4.5/lib/abseil/absl/time/internal/cctz/src/time_zone_fixed.cc +140 -0
  891. tkvsc_oead-1.4.5/lib/abseil/absl/time/internal/cctz/src/time_zone_fixed.h +52 -0
  892. tkvsc_oead-1.4.5/lib/abseil/absl/time/internal/cctz/src/time_zone_format.cc +1029 -0
  893. tkvsc_oead-1.4.5/lib/abseil/absl/time/internal/cctz/src/time_zone_format_test.cc +1774 -0
  894. tkvsc_oead-1.4.5/lib/abseil/absl/time/internal/cctz/src/time_zone_if.cc +47 -0
  895. tkvsc_oead-1.4.5/lib/abseil/absl/time/internal/cctz/src/time_zone_if.h +80 -0
  896. tkvsc_oead-1.4.5/lib/abseil/absl/time/internal/cctz/src/time_zone_impl.cc +115 -0
  897. tkvsc_oead-1.4.5/lib/abseil/absl/time/internal/cctz/src/time_zone_impl.h +97 -0
  898. tkvsc_oead-1.4.5/lib/abseil/absl/time/internal/cctz/src/time_zone_info.cc +1070 -0
  899. tkvsc_oead-1.4.5/lib/abseil/absl/time/internal/cctz/src/time_zone_info.h +128 -0
  900. tkvsc_oead-1.4.5/lib/abseil/absl/time/internal/cctz/src/time_zone_libc.cc +333 -0
  901. tkvsc_oead-1.4.5/lib/abseil/absl/time/internal/cctz/src/time_zone_libc.h +60 -0
  902. tkvsc_oead-1.4.5/lib/abseil/absl/time/internal/cctz/src/time_zone_lookup.cc +335 -0
  903. tkvsc_oead-1.4.5/lib/abseil/absl/time/internal/cctz/src/time_zone_lookup_test.cc +1405 -0
  904. tkvsc_oead-1.4.5/lib/abseil/absl/time/internal/cctz/src/time_zone_posix.cc +159 -0
  905. tkvsc_oead-1.4.5/lib/abseil/absl/time/internal/cctz/src/time_zone_posix.h +132 -0
  906. tkvsc_oead-1.4.5/lib/abseil/absl/time/internal/cctz/src/tzfile.h +120 -0
  907. tkvsc_oead-1.4.5/lib/abseil/absl/time/internal/cctz/src/zone_info_source.cc +116 -0
  908. tkvsc_oead-1.4.5/lib/abseil/absl/time/internal/cctz/testdata/README.zoneinfo +38 -0
  909. tkvsc_oead-1.4.5/lib/abseil/absl/time/internal/cctz/testdata/zoneinfo/iso3166.tab +279 -0
  910. tkvsc_oead-1.4.5/lib/abseil/absl/time/internal/cctz/testdata/zoneinfo/zone1970.tab +374 -0
  911. tkvsc_oead-1.4.5/lib/abseil/absl/time/internal/cctz/testdata/zoneinfo/zonenow.tab +296 -0
  912. tkvsc_oead-1.4.5/lib/abseil/absl/time/internal/get_current_time_chrono.inc +31 -0
  913. tkvsc_oead-1.4.5/lib/abseil/absl/time/internal/get_current_time_posix.inc +24 -0
  914. tkvsc_oead-1.4.5/lib/abseil/absl/time/internal/test_util.cc +32 -0
  915. tkvsc_oead-1.4.5/lib/abseil/absl/time/internal/test_util.h +33 -0
  916. tkvsc_oead-1.4.5/lib/abseil/absl/time/time.cc +507 -0
  917. tkvsc_oead-1.4.5/lib/abseil/absl/time/time.h +1920 -0
  918. tkvsc_oead-1.4.5/lib/abseil/absl/time/time_benchmark.cc +321 -0
  919. tkvsc_oead-1.4.5/lib/abseil/absl/time/time_test.cc +1338 -0
  920. tkvsc_oead-1.4.5/lib/abseil/absl/time/time_zone_test.cc +97 -0
  921. tkvsc_oead-1.4.5/lib/abseil/absl/types/BUILD.bazel +319 -0
  922. tkvsc_oead-1.4.5/lib/abseil/absl/types/CMakeLists.txt +323 -0
  923. tkvsc_oead-1.4.5/lib/abseil/absl/types/any.h +519 -0
  924. tkvsc_oead-1.4.5/lib/abseil/absl/types/any_exception_safety_test.cc +173 -0
  925. tkvsc_oead-1.4.5/lib/abseil/absl/types/any_test.cc +778 -0
  926. tkvsc_oead-1.4.5/lib/abseil/absl/types/bad_any_cast.cc +64 -0
  927. tkvsc_oead-1.4.5/lib/abseil/absl/types/bad_any_cast.h +75 -0
  928. tkvsc_oead-1.4.5/lib/abseil/absl/types/bad_optional_access.cc +66 -0
  929. tkvsc_oead-1.4.5/lib/abseil/absl/types/bad_optional_access.h +78 -0
  930. tkvsc_oead-1.4.5/lib/abseil/absl/types/bad_variant_access.cc +82 -0
  931. tkvsc_oead-1.4.5/lib/abseil/absl/types/bad_variant_access.h +82 -0
  932. tkvsc_oead-1.4.5/lib/abseil/absl/types/compare.h +505 -0
  933. tkvsc_oead-1.4.5/lib/abseil/absl/types/compare_test.cc +300 -0
  934. tkvsc_oead-1.4.5/lib/abseil/absl/types/internal/optional.h +352 -0
  935. tkvsc_oead-1.4.5/lib/abseil/absl/types/internal/span.h +140 -0
  936. tkvsc_oead-1.4.5/lib/abseil/absl/types/internal/variant.h +1622 -0
  937. tkvsc_oead-1.4.5/lib/abseil/absl/types/optional.h +781 -0
  938. tkvsc_oead-1.4.5/lib/abseil/absl/types/optional_exception_safety_test.cc +292 -0
  939. tkvsc_oead-1.4.5/lib/abseil/absl/types/optional_test.cc +1615 -0
  940. tkvsc_oead-1.4.5/lib/abseil/absl/types/span.h +796 -0
  941. tkvsc_oead-1.4.5/lib/abseil/absl/types/span_test.cc +888 -0
  942. tkvsc_oead-1.4.5/lib/abseil/absl/types/variant.h +861 -0
  943. tkvsc_oead-1.4.5/lib/abseil/absl/types/variant_benchmark.cc +222 -0
  944. tkvsc_oead-1.4.5/lib/abseil/absl/types/variant_exception_safety_test.cc +532 -0
  945. tkvsc_oead-1.4.5/lib/abseil/absl/types/variant_test.cc +2718 -0
  946. tkvsc_oead-1.4.5/lib/abseil/absl/utility/BUILD.bazel +86 -0
  947. tkvsc_oead-1.4.5/lib/abseil/absl/utility/CMakeLists.txt +68 -0
  948. tkvsc_oead-1.4.5/lib/abseil/absl/utility/internal/if_constexpr.h +70 -0
  949. tkvsc_oead-1.4.5/lib/abseil/absl/utility/internal/if_constexpr_test.cc +79 -0
  950. tkvsc_oead-1.4.5/lib/abseil/absl/utility/utility.h +230 -0
  951. tkvsc_oead-1.4.5/lib/abseil/absl/utility/utility_test.cc +239 -0
  952. tkvsc_oead-1.4.5/lib/abseil/ci/absl_alternate_options.h +30 -0
  953. tkvsc_oead-1.4.5/lib/abseil/ci/cmake_common.sh +19 -0
  954. tkvsc_oead-1.4.5/lib/abseil/ci/cmake_install_test.sh +58 -0
  955. tkvsc_oead-1.4.5/lib/abseil/ci/linux_arm_clang-latest_libcxx_bazel.sh +100 -0
  956. tkvsc_oead-1.4.5/lib/abseil/ci/linux_clang-latest_libcxx_asan_bazel.sh +102 -0
  957. tkvsc_oead-1.4.5/lib/abseil/ci/linux_clang-latest_libcxx_bazel.sh +100 -0
  958. tkvsc_oead-1.4.5/lib/abseil/ci/linux_clang-latest_libcxx_tsan_bazel.sh +97 -0
  959. tkvsc_oead-1.4.5/lib/abseil/ci/linux_clang-latest_libstdcxx_bazel.sh +95 -0
  960. tkvsc_oead-1.4.5/lib/abseil/ci/linux_docker_containers.sh +22 -0
  961. tkvsc_oead-1.4.5/lib/abseil/ci/linux_gcc-floor_libstdcxx_bazel.sh +92 -0
  962. tkvsc_oead-1.4.5/lib/abseil/ci/linux_gcc-latest_libstdcxx_bazel.sh +98 -0
  963. tkvsc_oead-1.4.5/lib/abseil/ci/linux_gcc-latest_libstdcxx_cmake.sh +79 -0
  964. tkvsc_oead-1.4.5/lib/abseil/ci/linux_gcc_alpine_cmake.sh +79 -0
  965. tkvsc_oead-1.4.5/lib/abseil/ci/macos_xcode_bazel.sh +69 -0
  966. tkvsc_oead-1.4.5/lib/abseil/ci/macos_xcode_cmake.sh +65 -0
  967. tkvsc_oead-1.4.5/lib/abseil/ci/windows_clangcl_bazel.bat +61 -0
  968. tkvsc_oead-1.4.5/lib/abseil/ci/windows_msvc_bazel.bat +52 -0
  969. tkvsc_oead-1.4.5/lib/abseil/ci/windows_msvc_cmake.bat +64 -0
  970. tkvsc_oead-1.4.5/lib/abseil/conanfile.py +51 -0
  971. tkvsc_oead-1.4.5/lib/abseil/create_lts.py +139 -0
  972. tkvsc_oead-1.4.5/lib/libyaml/.appveyor.yml +29 -0
  973. tkvsc_oead-1.4.5/lib/libyaml/.git +1 -0
  974. tkvsc_oead-1.4.5/lib/libyaml/.github/workflows/dist.yaml +28 -0
  975. tkvsc_oead-1.4.5/lib/libyaml/.github/workflows/main.yml +54 -0
  976. tkvsc_oead-1.4.5/lib/libyaml/.gitignore +45 -0
  977. tkvsc_oead-1.4.5/lib/libyaml/.indent.pro +1 -0
  978. tkvsc_oead-1.4.5/lib/libyaml/.makefile +65 -0
  979. tkvsc_oead-1.4.5/lib/libyaml/.travis.yml +28 -0
  980. tkvsc_oead-1.4.5/lib/libyaml/CMakeLists.txt +160 -0
  981. tkvsc_oead-1.4.5/lib/libyaml/Makefile.am +51 -0
  982. tkvsc_oead-1.4.5/lib/libyaml/ReadMe.md +46 -0
  983. tkvsc_oead-1.4.5/lib/libyaml/announcement.msg +89 -0
  984. tkvsc_oead-1.4.5/lib/libyaml/cmake/config.h.in +4 -0
  985. tkvsc_oead-1.4.5/lib/libyaml/configure.ac +73 -0
  986. tkvsc_oead-1.4.5/lib/libyaml/doc/doxygen.cfg +222 -0
  987. tkvsc_oead-1.4.5/lib/libyaml/docker/README.mkd +17 -0
  988. tkvsc_oead-1.4.5/lib/libyaml/docker/alpine-3.7 +26 -0
  989. tkvsc_oead-1.4.5/lib/libyaml/docker/ubuntu-14.04 +29 -0
  990. tkvsc_oead-1.4.5/lib/libyaml/docker/ubuntu-16.04 +24 -0
  991. tkvsc_oead-1.4.5/lib/libyaml/examples/anchors.yaml +10 -0
  992. tkvsc_oead-1.4.5/lib/libyaml/examples/array.yaml +2 -0
  993. tkvsc_oead-1.4.5/lib/libyaml/examples/global-tag.yaml +14 -0
  994. tkvsc_oead-1.4.5/lib/libyaml/examples/json.yaml +1 -0
  995. tkvsc_oead-1.4.5/lib/libyaml/examples/mapping.yaml +2 -0
  996. tkvsc_oead-1.4.5/lib/libyaml/examples/numbers.yaml +1 -0
  997. tkvsc_oead-1.4.5/lib/libyaml/examples/strings.yaml +7 -0
  998. tkvsc_oead-1.4.5/lib/libyaml/examples/tags.yaml +7 -0
  999. tkvsc_oead-1.4.5/lib/libyaml/examples/yaml-version.yaml +3 -0
  1000. tkvsc_oead-1.4.5/lib/libyaml/include/Makefile.am +17 -0
  1001. tkvsc_oead-1.4.5/lib/libyaml/include/yaml.h +1985 -0
  1002. tkvsc_oead-1.4.5/lib/libyaml/pkg/ReadMe.md +77 -0
  1003. tkvsc_oead-1.4.5/lib/libyaml/pkg/docker/.gitignore +3 -0
  1004. tkvsc_oead-1.4.5/lib/libyaml/pkg/docker/scripts/libyaml-dist.sh +23 -0
  1005. tkvsc_oead-1.4.5/lib/libyaml/regression-inputs/clusterfuzz-testcase-minimized-5607885063061504.yml +1 -0
  1006. tkvsc_oead-1.4.5/lib/libyaml/src/Makefile.am +4 -0
  1007. tkvsc_oead-1.4.5/lib/libyaml/src/api.c +1393 -0
  1008. tkvsc_oead-1.4.5/lib/libyaml/src/dumper.c +394 -0
  1009. tkvsc_oead-1.4.5/lib/libyaml/src/emitter.c +2358 -0
  1010. tkvsc_oead-1.4.5/lib/libyaml/src/loader.c +544 -0
  1011. tkvsc_oead-1.4.5/lib/libyaml/src/parser.c +1375 -0
  1012. tkvsc_oead-1.4.5/lib/libyaml/src/reader.c +469 -0
  1013. tkvsc_oead-1.4.5/lib/libyaml/src/scanner.c +3598 -0
  1014. tkvsc_oead-1.4.5/lib/libyaml/src/writer.c +141 -0
  1015. tkvsc_oead-1.4.5/lib/libyaml/src/yaml_private.h +684 -0
  1016. tkvsc_oead-1.4.5/lib/libyaml/tests/CMakeLists.txt +27 -0
  1017. tkvsc_oead-1.4.5/lib/libyaml/tests/Makefile.am +9 -0
  1018. tkvsc_oead-1.4.5/lib/libyaml/tests/ReadMe.md +63 -0
  1019. tkvsc_oead-1.4.5/lib/libyaml/tests/example-deconstructor-alt.c +800 -0
  1020. tkvsc_oead-1.4.5/lib/libyaml/tests/example-deconstructor.c +1127 -0
  1021. tkvsc_oead-1.4.5/lib/libyaml/tests/example-reformatter-alt.c +217 -0
  1022. tkvsc_oead-1.4.5/lib/libyaml/tests/example-reformatter.c +202 -0
  1023. tkvsc_oead-1.4.5/lib/libyaml/tests/run-all-tests.sh +29 -0
  1024. tkvsc_oead-1.4.5/lib/libyaml/tests/run-dumper.c +314 -0
  1025. tkvsc_oead-1.4.5/lib/libyaml/tests/run-emitter-test-suite.c +290 -0
  1026. tkvsc_oead-1.4.5/lib/libyaml/tests/run-emitter.c +327 -0
  1027. tkvsc_oead-1.4.5/lib/libyaml/tests/run-loader.c +63 -0
  1028. tkvsc_oead-1.4.5/lib/libyaml/tests/run-parser-test-suite.c +189 -0
  1029. tkvsc_oead-1.4.5/lib/libyaml/tests/run-parser.c +63 -0
  1030. tkvsc_oead-1.4.5/lib/libyaml/tests/run-scanner.c +63 -0
  1031. tkvsc_oead-1.4.5/lib/libyaml/tests/test-reader.c +354 -0
  1032. tkvsc_oead-1.4.5/lib/libyaml/tests/test-version.c +29 -0
  1033. tkvsc_oead-1.4.5/lib/libyaml/yaml-0.1.pc.in +10 -0
  1034. tkvsc_oead-1.4.5/lib/libyaml/yamlConfig.cmake.in +16 -0
  1035. tkvsc_oead-1.4.5/lib/nonstd/nonstd/span.h +687 -0
  1036. tkvsc_oead-1.4.5/lib/nonstd/nonstd/visit.h +219 -0
  1037. tkvsc_oead-1.4.5/lib/ordered-map/.codecov.yml +5 -0
  1038. tkvsc_oead-1.4.5/lib/ordered-map/.git +1 -0
  1039. tkvsc_oead-1.4.5/lib/ordered-map/.travis.yml +61 -0
  1040. tkvsc_oead-1.4.5/lib/ordered-map/CMakeLists.txt +77 -0
  1041. tkvsc_oead-1.4.5/lib/ordered-map/README.md +445 -0
  1042. tkvsc_oead-1.4.5/lib/ordered-map/appveyor.yml +40 -0
  1043. tkvsc_oead-1.4.5/lib/ordered-map/cmake/tsl-ordered-mapConfig.cmake.in +9 -0
  1044. tkvsc_oead-1.4.5/lib/ordered-map/doxygen.conf +2483 -0
  1045. tkvsc_oead-1.4.5/lib/ordered-map/include/tsl/ordered_hash.h +1628 -0
  1046. tkvsc_oead-1.4.5/lib/ordered-map/include/tsl/ordered_map.h +863 -0
  1047. tkvsc_oead-1.4.5/lib/ordered-map/include/tsl/ordered_set.h +718 -0
  1048. tkvsc_oead-1.4.5/lib/ordered-map/tests/CMakeLists.txt +24 -0
  1049. tkvsc_oead-1.4.5/lib/ordered-map/tests/custom_allocator_tests.cpp +150 -0
  1050. tkvsc_oead-1.4.5/lib/ordered-map/tests/main.cpp +27 -0
  1051. tkvsc_oead-1.4.5/lib/ordered-map/tests/ordered_map_tests.cpp +1554 -0
  1052. tkvsc_oead-1.4.5/lib/ordered-map/tests/ordered_set_tests.cpp +164 -0
  1053. tkvsc_oead-1.4.5/lib/ordered-map/tests/utils.h +319 -0
  1054. tkvsc_oead-1.4.5/lib/ordered-map/tsl-ordered-map.natvis +21 -0
  1055. tkvsc_oead-1.4.5/lib/pybind11/.appveyor.yml +35 -0
  1056. tkvsc_oead-1.4.5/lib/pybind11/.clang-format +38 -0
  1057. tkvsc_oead-1.4.5/lib/pybind11/.clang-tidy +79 -0
  1058. tkvsc_oead-1.4.5/lib/pybind11/.cmake-format.yaml +73 -0
  1059. tkvsc_oead-1.4.5/lib/pybind11/.codespell-ignore-lines +24 -0
  1060. tkvsc_oead-1.4.5/lib/pybind11/.git +1 -0
  1061. tkvsc_oead-1.4.5/lib/pybind11/.gitattributes +1 -0
  1062. tkvsc_oead-1.4.5/lib/pybind11/.github/CONTRIBUTING.md +388 -0
  1063. tkvsc_oead-1.4.5/lib/pybind11/.github/ISSUE_TEMPLATE/bug-report.yml +61 -0
  1064. tkvsc_oead-1.4.5/lib/pybind11/.github/ISSUE_TEMPLATE/config.yml +8 -0
  1065. tkvsc_oead-1.4.5/lib/pybind11/.github/dependabot.yml +15 -0
  1066. tkvsc_oead-1.4.5/lib/pybind11/.github/labeler.yml +13 -0
  1067. tkvsc_oead-1.4.5/lib/pybind11/.github/labeler_merged.yml +8 -0
  1068. tkvsc_oead-1.4.5/lib/pybind11/.github/matchers/pylint.json +32 -0
  1069. tkvsc_oead-1.4.5/lib/pybind11/.github/pull_request_template.md +19 -0
  1070. tkvsc_oead-1.4.5/lib/pybind11/.github/workflows/ci.yml +1241 -0
  1071. tkvsc_oead-1.4.5/lib/pybind11/.github/workflows/configure.yml +92 -0
  1072. tkvsc_oead-1.4.5/lib/pybind11/.github/workflows/emscripten.yaml +30 -0
  1073. tkvsc_oead-1.4.5/lib/pybind11/.github/workflows/format.yml +60 -0
  1074. tkvsc_oead-1.4.5/lib/pybind11/.github/workflows/labeler.yml +25 -0
  1075. tkvsc_oead-1.4.5/lib/pybind11/.github/workflows/pip.yml +120 -0
  1076. tkvsc_oead-1.4.5/lib/pybind11/.github/workflows/upstream.yml +116 -0
  1077. tkvsc_oead-1.4.5/lib/pybind11/.gitignore +46 -0
  1078. tkvsc_oead-1.4.5/lib/pybind11/.pre-commit-config.yaml +156 -0
  1079. tkvsc_oead-1.4.5/lib/pybind11/.readthedocs.yml +20 -0
  1080. tkvsc_oead-1.4.5/lib/pybind11/CMakeLists.txt +378 -0
  1081. tkvsc_oead-1.4.5/lib/pybind11/MANIFEST.in +6 -0
  1082. tkvsc_oead-1.4.5/lib/pybind11/README.rst +181 -0
  1083. tkvsc_oead-1.4.5/lib/pybind11/SECURITY.md +13 -0
  1084. tkvsc_oead-1.4.5/lib/pybind11/docs/_static/css/custom.css +3 -0
  1085. tkvsc_oead-1.4.5/lib/pybind11/docs/advanced/cast/chrono.rst +81 -0
  1086. tkvsc_oead-1.4.5/lib/pybind11/docs/advanced/cast/custom.rst +93 -0
  1087. tkvsc_oead-1.4.5/lib/pybind11/docs/advanced/cast/eigen.rst +310 -0
  1088. tkvsc_oead-1.4.5/lib/pybind11/docs/advanced/cast/functional.rst +109 -0
  1089. tkvsc_oead-1.4.5/lib/pybind11/docs/advanced/cast/index.rst +43 -0
  1090. tkvsc_oead-1.4.5/lib/pybind11/docs/advanced/cast/overview.rst +170 -0
  1091. tkvsc_oead-1.4.5/lib/pybind11/docs/advanced/cast/stl.rst +249 -0
  1092. tkvsc_oead-1.4.5/lib/pybind11/docs/advanced/cast/strings.rst +296 -0
  1093. tkvsc_oead-1.4.5/lib/pybind11/docs/advanced/classes.rst +1335 -0
  1094. tkvsc_oead-1.4.5/lib/pybind11/docs/advanced/embedding.rst +262 -0
  1095. tkvsc_oead-1.4.5/lib/pybind11/docs/advanced/exceptions.rst +401 -0
  1096. tkvsc_oead-1.4.5/lib/pybind11/docs/advanced/functions.rst +614 -0
  1097. tkvsc_oead-1.4.5/lib/pybind11/docs/advanced/misc.rst +429 -0
  1098. tkvsc_oead-1.4.5/lib/pybind11/docs/advanced/pycpp/index.rst +13 -0
  1099. tkvsc_oead-1.4.5/lib/pybind11/docs/advanced/pycpp/numpy.rst +453 -0
  1100. tkvsc_oead-1.4.5/lib/pybind11/docs/advanced/pycpp/object.rst +286 -0
  1101. tkvsc_oead-1.4.5/lib/pybind11/docs/advanced/pycpp/utilities.rst +155 -0
  1102. tkvsc_oead-1.4.5/lib/pybind11/docs/advanced/smart_ptrs.rst +174 -0
  1103. tkvsc_oead-1.4.5/lib/pybind11/docs/basics.rst +314 -0
  1104. tkvsc_oead-1.4.5/lib/pybind11/docs/benchmark.py +89 -0
  1105. tkvsc_oead-1.4.5/lib/pybind11/docs/benchmark.rst +95 -0
  1106. tkvsc_oead-1.4.5/lib/pybind11/docs/changelog.rst +3285 -0
  1107. tkvsc_oead-1.4.5/lib/pybind11/docs/classes.rst +555 -0
  1108. tkvsc_oead-1.4.5/lib/pybind11/docs/cmake/index.rst +8 -0
  1109. tkvsc_oead-1.4.5/lib/pybind11/docs/compiling.rst +726 -0
  1110. tkvsc_oead-1.4.5/lib/pybind11/docs/conf.py +369 -0
  1111. tkvsc_oead-1.4.5/lib/pybind11/docs/faq.rst +352 -0
  1112. tkvsc_oead-1.4.5/lib/pybind11/docs/index.rst +48 -0
  1113. tkvsc_oead-1.4.5/lib/pybind11/docs/installing.rst +105 -0
  1114. tkvsc_oead-1.4.5/lib/pybind11/docs/limitations.rst +68 -0
  1115. tkvsc_oead-1.4.5/lib/pybind11/docs/pybind11-logo.png +0 -0
  1116. tkvsc_oead-1.4.5/lib/pybind11/docs/pybind11_vs_boost_python1.png +0 -0
  1117. tkvsc_oead-1.4.5/lib/pybind11/docs/pybind11_vs_boost_python1.svg +427 -0
  1118. tkvsc_oead-1.4.5/lib/pybind11/docs/pybind11_vs_boost_python2.png +0 -0
  1119. tkvsc_oead-1.4.5/lib/pybind11/docs/pybind11_vs_boost_python2.svg +427 -0
  1120. tkvsc_oead-1.4.5/lib/pybind11/docs/reference.rst +130 -0
  1121. tkvsc_oead-1.4.5/lib/pybind11/docs/release.rst +143 -0
  1122. tkvsc_oead-1.4.5/lib/pybind11/docs/requirements.in +6 -0
  1123. tkvsc_oead-1.4.5/lib/pybind11/docs/requirements.txt +275 -0
  1124. tkvsc_oead-1.4.5/lib/pybind11/docs/upgrade.rst +594 -0
  1125. tkvsc_oead-1.4.5/lib/pybind11/include/pybind11/attr.h +690 -0
  1126. tkvsc_oead-1.4.5/lib/pybind11/include/pybind11/buffer_info.h +208 -0
  1127. tkvsc_oead-1.4.5/lib/pybind11/include/pybind11/cast.h +1855 -0
  1128. tkvsc_oead-1.4.5/lib/pybind11/include/pybind11/chrono.h +225 -0
  1129. tkvsc_oead-1.4.5/lib/pybind11/include/pybind11/common.h +2 -0
  1130. tkvsc_oead-1.4.5/lib/pybind11/include/pybind11/complex.h +74 -0
  1131. tkvsc_oead-1.4.5/lib/pybind11/include/pybind11/detail/class.h +767 -0
  1132. tkvsc_oead-1.4.5/lib/pybind11/include/pybind11/detail/common.h +1287 -0
  1133. tkvsc_oead-1.4.5/lib/pybind11/include/pybind11/detail/cpp_conduit.h +77 -0
  1134. tkvsc_oead-1.4.5/lib/pybind11/include/pybind11/detail/descr.h +172 -0
  1135. tkvsc_oead-1.4.5/lib/pybind11/include/pybind11/detail/exception_translation.h +71 -0
  1136. tkvsc_oead-1.4.5/lib/pybind11/include/pybind11/detail/init.h +436 -0
  1137. tkvsc_oead-1.4.5/lib/pybind11/include/pybind11/detail/internals.h +766 -0
  1138. tkvsc_oead-1.4.5/lib/pybind11/include/pybind11/detail/type_caster_base.h +1195 -0
  1139. tkvsc_oead-1.4.5/lib/pybind11/include/pybind11/detail/typeid.h +65 -0
  1140. tkvsc_oead-1.4.5/lib/pybind11/include/pybind11/detail/value_and_holder.h +77 -0
  1141. tkvsc_oead-1.4.5/lib/pybind11/include/pybind11/eigen/common.h +9 -0
  1142. tkvsc_oead-1.4.5/lib/pybind11/include/pybind11/eigen/matrix.h +715 -0
  1143. tkvsc_oead-1.4.5/lib/pybind11/include/pybind11/eigen/tensor.h +515 -0
  1144. tkvsc_oead-1.4.5/lib/pybind11/include/pybind11/eigen.h +12 -0
  1145. tkvsc_oead-1.4.5/lib/pybind11/include/pybind11/embed.h +313 -0
  1146. tkvsc_oead-1.4.5/lib/pybind11/include/pybind11/eval.h +156 -0
  1147. tkvsc_oead-1.4.5/lib/pybind11/include/pybind11/functional.h +149 -0
  1148. tkvsc_oead-1.4.5/lib/pybind11/include/pybind11/gil.h +219 -0
  1149. tkvsc_oead-1.4.5/lib/pybind11/include/pybind11/gil_safe_call_once.h +100 -0
  1150. tkvsc_oead-1.4.5/lib/pybind11/include/pybind11/iostream.h +265 -0
  1151. tkvsc_oead-1.4.5/lib/pybind11/include/pybind11/numpy.h +2139 -0
  1152. tkvsc_oead-1.4.5/lib/pybind11/include/pybind11/operators.h +202 -0
  1153. tkvsc_oead-1.4.5/lib/pybind11/include/pybind11/options.h +92 -0
  1154. tkvsc_oead-1.4.5/lib/pybind11/include/pybind11/pybind11.h +2978 -0
  1155. tkvsc_oead-1.4.5/lib/pybind11/include/pybind11/pytypes.h +2606 -0
  1156. tkvsc_oead-1.4.5/lib/pybind11/include/pybind11/stl/filesystem.h +124 -0
  1157. tkvsc_oead-1.4.5/lib/pybind11/include/pybind11/stl.h +448 -0
  1158. tkvsc_oead-1.4.5/lib/pybind11/include/pybind11/stl_bind.h +822 -0
  1159. tkvsc_oead-1.4.5/lib/pybind11/include/pybind11/type_caster_pyobject_ptr.h +61 -0
  1160. tkvsc_oead-1.4.5/lib/pybind11/include/pybind11/typing.h +242 -0
  1161. tkvsc_oead-1.4.5/lib/pybind11/noxfile.py +107 -0
  1162. tkvsc_oead-1.4.5/lib/pybind11/pybind11/__init__.py +19 -0
  1163. tkvsc_oead-1.4.5/lib/pybind11/pybind11/__main__.py +86 -0
  1164. tkvsc_oead-1.4.5/lib/pybind11/pybind11/_version.py +12 -0
  1165. tkvsc_oead-1.4.5/lib/pybind11/pybind11/commands.py +39 -0
  1166. tkvsc_oead-1.4.5/lib/pybind11/pybind11/py.typed +0 -0
  1167. tkvsc_oead-1.4.5/lib/pybind11/pybind11/setup_helpers.py +500 -0
  1168. tkvsc_oead-1.4.5/lib/pybind11/pyproject.toml +87 -0
  1169. tkvsc_oead-1.4.5/lib/pybind11/setup.cfg +43 -0
  1170. tkvsc_oead-1.4.5/lib/pybind11/setup.py +149 -0
  1171. tkvsc_oead-1.4.5/lib/pybind11/tests/CMakeLists.txt +604 -0
  1172. tkvsc_oead-1.4.5/lib/pybind11/tests/conftest.py +224 -0
  1173. tkvsc_oead-1.4.5/lib/pybind11/tests/constructor_stats.h +322 -0
  1174. tkvsc_oead-1.4.5/lib/pybind11/tests/cross_module_gil_utils.cpp +111 -0
  1175. tkvsc_oead-1.4.5/lib/pybind11/tests/cross_module_interleaved_error_already_set.cpp +54 -0
  1176. tkvsc_oead-1.4.5/lib/pybind11/tests/eigen_tensor_avoid_stl_array.cpp +16 -0
  1177. tkvsc_oead-1.4.5/lib/pybind11/tests/env.py +31 -0
  1178. tkvsc_oead-1.4.5/lib/pybind11/tests/exo_planet_c_api.cpp +103 -0
  1179. tkvsc_oead-1.4.5/lib/pybind11/tests/exo_planet_pybind11.cpp +19 -0
  1180. tkvsc_oead-1.4.5/lib/pybind11/tests/extra_python_package/pytest.ini +0 -0
  1181. tkvsc_oead-1.4.5/lib/pybind11/tests/extra_python_package/test_files.py +299 -0
  1182. tkvsc_oead-1.4.5/lib/pybind11/tests/extra_setuptools/pytest.ini +0 -0
  1183. tkvsc_oead-1.4.5/lib/pybind11/tests/extra_setuptools/test_setuphelper.py +153 -0
  1184. tkvsc_oead-1.4.5/lib/pybind11/tests/home_planet_very_lonely_traveler.cpp +13 -0
  1185. tkvsc_oead-1.4.5/lib/pybind11/tests/local_bindings.h +92 -0
  1186. tkvsc_oead-1.4.5/lib/pybind11/tests/object.h +205 -0
  1187. tkvsc_oead-1.4.5/lib/pybind11/tests/pybind11_cross_module_tests.cpp +149 -0
  1188. tkvsc_oead-1.4.5/lib/pybind11/tests/pybind11_tests.cpp +131 -0
  1189. tkvsc_oead-1.4.5/lib/pybind11/tests/pybind11_tests.h +98 -0
  1190. tkvsc_oead-1.4.5/lib/pybind11/tests/pyproject.toml +21 -0
  1191. tkvsc_oead-1.4.5/lib/pybind11/tests/pytest.ini +23 -0
  1192. tkvsc_oead-1.4.5/lib/pybind11/tests/requirements.txt +13 -0
  1193. tkvsc_oead-1.4.5/lib/pybind11/tests/test_async.cpp +25 -0
  1194. tkvsc_oead-1.4.5/lib/pybind11/tests/test_async.py +31 -0
  1195. tkvsc_oead-1.4.5/lib/pybind11/tests/test_buffers.cpp +271 -0
  1196. tkvsc_oead-1.4.5/lib/pybind11/tests/test_buffers.py +237 -0
  1197. tkvsc_oead-1.4.5/lib/pybind11/tests/test_builtin_casters.cpp +387 -0
  1198. tkvsc_oead-1.4.5/lib/pybind11/tests/test_builtin_casters.py +532 -0
  1199. tkvsc_oead-1.4.5/lib/pybind11/tests/test_call_policies.cpp +113 -0
  1200. tkvsc_oead-1.4.5/lib/pybind11/tests/test_call_policies.py +249 -0
  1201. tkvsc_oead-1.4.5/lib/pybind11/tests/test_callbacks.cpp +280 -0
  1202. tkvsc_oead-1.4.5/lib/pybind11/tests/test_callbacks.py +230 -0
  1203. tkvsc_oead-1.4.5/lib/pybind11/tests/test_chrono.cpp +81 -0
  1204. tkvsc_oead-1.4.5/lib/pybind11/tests/test_chrono.py +207 -0
  1205. tkvsc_oead-1.4.5/lib/pybind11/tests/test_class.cpp +656 -0
  1206. tkvsc_oead-1.4.5/lib/pybind11/tests/test_class.py +503 -0
  1207. tkvsc_oead-1.4.5/lib/pybind11/tests/test_cmake_build/CMakeLists.txt +80 -0
  1208. tkvsc_oead-1.4.5/lib/pybind11/tests/test_cmake_build/embed.cpp +23 -0
  1209. tkvsc_oead-1.4.5/lib/pybind11/tests/test_cmake_build/installed_embed/CMakeLists.txt +28 -0
  1210. tkvsc_oead-1.4.5/lib/pybind11/tests/test_cmake_build/installed_function/CMakeLists.txt +39 -0
  1211. tkvsc_oead-1.4.5/lib/pybind11/tests/test_cmake_build/installed_target/CMakeLists.txt +46 -0
  1212. tkvsc_oead-1.4.5/lib/pybind11/tests/test_cmake_build/main.cpp +6 -0
  1213. tkvsc_oead-1.4.5/lib/pybind11/tests/test_cmake_build/subdirectory_embed/CMakeLists.txt +47 -0
  1214. tkvsc_oead-1.4.5/lib/pybind11/tests/test_cmake_build/subdirectory_function/CMakeLists.txt +41 -0
  1215. tkvsc_oead-1.4.5/lib/pybind11/tests/test_cmake_build/subdirectory_target/CMakeLists.txt +47 -0
  1216. tkvsc_oead-1.4.5/lib/pybind11/tests/test_cmake_build/test.py +10 -0
  1217. tkvsc_oead-1.4.5/lib/pybind11/tests/test_const_name.cpp +55 -0
  1218. tkvsc_oead-1.4.5/lib/pybind11/tests/test_const_name.py +31 -0
  1219. tkvsc_oead-1.4.5/lib/pybind11/tests/test_constants_and_functions.cpp +158 -0
  1220. tkvsc_oead-1.4.5/lib/pybind11/tests/test_constants_and_functions.py +58 -0
  1221. tkvsc_oead-1.4.5/lib/pybind11/tests/test_copy_move.cpp +544 -0
  1222. tkvsc_oead-1.4.5/lib/pybind11/tests/test_copy_move.py +140 -0
  1223. tkvsc_oead-1.4.5/lib/pybind11/tests/test_cpp_conduit.cpp +22 -0
  1224. tkvsc_oead-1.4.5/lib/pybind11/tests/test_cpp_conduit.py +162 -0
  1225. tkvsc_oead-1.4.5/lib/pybind11/tests/test_cpp_conduit_traveler_bindings.h +47 -0
  1226. tkvsc_oead-1.4.5/lib/pybind11/tests/test_cpp_conduit_traveler_types.h +25 -0
  1227. tkvsc_oead-1.4.5/lib/pybind11/tests/test_custom_type_casters.cpp +217 -0
  1228. tkvsc_oead-1.4.5/lib/pybind11/tests/test_custom_type_casters.py +124 -0
  1229. tkvsc_oead-1.4.5/lib/pybind11/tests/test_custom_type_setup.cpp +41 -0
  1230. tkvsc_oead-1.4.5/lib/pybind11/tests/test_custom_type_setup.py +50 -0
  1231. tkvsc_oead-1.4.5/lib/pybind11/tests/test_docstring_options.cpp +129 -0
  1232. tkvsc_oead-1.4.5/lib/pybind11/tests/test_docstring_options.py +66 -0
  1233. tkvsc_oead-1.4.5/lib/pybind11/tests/test_eigen_matrix.cpp +443 -0
  1234. tkvsc_oead-1.4.5/lib/pybind11/tests/test_eigen_matrix.py +816 -0
  1235. tkvsc_oead-1.4.5/lib/pybind11/tests/test_eigen_tensor.cpp +18 -0
  1236. tkvsc_oead-1.4.5/lib/pybind11/tests/test_eigen_tensor.inl +338 -0
  1237. tkvsc_oead-1.4.5/lib/pybind11/tests/test_eigen_tensor.py +290 -0
  1238. tkvsc_oead-1.4.5/lib/pybind11/tests/test_embed/CMakeLists.txt +54 -0
  1239. tkvsc_oead-1.4.5/lib/pybind11/tests/test_embed/catch.cpp +43 -0
  1240. tkvsc_oead-1.4.5/lib/pybind11/tests/test_embed/external_module.cpp +20 -0
  1241. tkvsc_oead-1.4.5/lib/pybind11/tests/test_embed/test_interpreter.cpp +488 -0
  1242. tkvsc_oead-1.4.5/lib/pybind11/tests/test_embed/test_interpreter.py +16 -0
  1243. tkvsc_oead-1.4.5/lib/pybind11/tests/test_embed/test_trampoline.py +18 -0
  1244. tkvsc_oead-1.4.5/lib/pybind11/tests/test_enum.cpp +133 -0
  1245. tkvsc_oead-1.4.5/lib/pybind11/tests/test_enum.py +270 -0
  1246. tkvsc_oead-1.4.5/lib/pybind11/tests/test_eval.cpp +118 -0
  1247. tkvsc_oead-1.4.5/lib/pybind11/tests/test_eval.py +52 -0
  1248. tkvsc_oead-1.4.5/lib/pybind11/tests/test_eval_call.py +5 -0
  1249. tkvsc_oead-1.4.5/lib/pybind11/tests/test_exceptions.cpp +388 -0
  1250. tkvsc_oead-1.4.5/lib/pybind11/tests/test_exceptions.h +13 -0
  1251. tkvsc_oead-1.4.5/lib/pybind11/tests/test_exceptions.py +434 -0
  1252. tkvsc_oead-1.4.5/lib/pybind11/tests/test_factory_constructors.cpp +430 -0
  1253. tkvsc_oead-1.4.5/lib/pybind11/tests/test_factory_constructors.py +518 -0
  1254. tkvsc_oead-1.4.5/lib/pybind11/tests/test_gil_scoped.cpp +144 -0
  1255. tkvsc_oead-1.4.5/lib/pybind11/tests/test_gil_scoped.py +249 -0
  1256. tkvsc_oead-1.4.5/lib/pybind11/tests/test_iostream.cpp +126 -0
  1257. tkvsc_oead-1.4.5/lib/pybind11/tests/test_iostream.py +297 -0
  1258. tkvsc_oead-1.4.5/lib/pybind11/tests/test_kwargs_and_defaults.cpp +325 -0
  1259. tkvsc_oead-1.4.5/lib/pybind11/tests/test_kwargs_and_defaults.py +428 -0
  1260. tkvsc_oead-1.4.5/lib/pybind11/tests/test_local_bindings.cpp +106 -0
  1261. tkvsc_oead-1.4.5/lib/pybind11/tests/test_local_bindings.py +259 -0
  1262. tkvsc_oead-1.4.5/lib/pybind11/tests/test_methods_and_attributes.cpp +492 -0
  1263. tkvsc_oead-1.4.5/lib/pybind11/tests/test_methods_and_attributes.py +539 -0
  1264. tkvsc_oead-1.4.5/lib/pybind11/tests/test_modules.cpp +125 -0
  1265. tkvsc_oead-1.4.5/lib/pybind11/tests/test_modules.py +118 -0
  1266. tkvsc_oead-1.4.5/lib/pybind11/tests/test_multiple_inheritance.cpp +341 -0
  1267. tkvsc_oead-1.4.5/lib/pybind11/tests/test_multiple_inheritance.py +495 -0
  1268. tkvsc_oead-1.4.5/lib/pybind11/tests/test_numpy_array.cpp +547 -0
  1269. tkvsc_oead-1.4.5/lib/pybind11/tests/test_numpy_array.py +672 -0
  1270. tkvsc_oead-1.4.5/lib/pybind11/tests/test_numpy_dtypes.cpp +641 -0
  1271. tkvsc_oead-1.4.5/lib/pybind11/tests/test_numpy_dtypes.py +448 -0
  1272. tkvsc_oead-1.4.5/lib/pybind11/tests/test_numpy_vectorize.cpp +107 -0
  1273. tkvsc_oead-1.4.5/lib/pybind11/tests/test_numpy_vectorize.py +268 -0
  1274. tkvsc_oead-1.4.5/lib/pybind11/tests/test_opaque_types.cpp +77 -0
  1275. tkvsc_oead-1.4.5/lib/pybind11/tests/test_opaque_types.py +60 -0
  1276. tkvsc_oead-1.4.5/lib/pybind11/tests/test_operator_overloading.cpp +281 -0
  1277. tkvsc_oead-1.4.5/lib/pybind11/tests/test_operator_overloading.py +153 -0
  1278. tkvsc_oead-1.4.5/lib/pybind11/tests/test_pickling.cpp +194 -0
  1279. tkvsc_oead-1.4.5/lib/pybind11/tests/test_pickling.py +95 -0
  1280. tkvsc_oead-1.4.5/lib/pybind11/tests/test_python_multiple_inheritance.cpp +45 -0
  1281. tkvsc_oead-1.4.5/lib/pybind11/tests/test_python_multiple_inheritance.py +36 -0
  1282. tkvsc_oead-1.4.5/lib/pybind11/tests/test_pytypes.cpp +989 -0
  1283. tkvsc_oead-1.4.5/lib/pybind11/tests/test_pytypes.py +1092 -0
  1284. tkvsc_oead-1.4.5/lib/pybind11/tests/test_sequences_and_iterators.cpp +600 -0
  1285. tkvsc_oead-1.4.5/lib/pybind11/tests/test_sequences_and_iterators.py +267 -0
  1286. tkvsc_oead-1.4.5/lib/pybind11/tests/test_smart_ptr.cpp +476 -0
  1287. tkvsc_oead-1.4.5/lib/pybind11/tests/test_smart_ptr.py +317 -0
  1288. tkvsc_oead-1.4.5/lib/pybind11/tests/test_stl.cpp +549 -0
  1289. tkvsc_oead-1.4.5/lib/pybind11/tests/test_stl.py +383 -0
  1290. tkvsc_oead-1.4.5/lib/pybind11/tests/test_stl_binders.cpp +275 -0
  1291. tkvsc_oead-1.4.5/lib/pybind11/tests/test_stl_binders.py +395 -0
  1292. tkvsc_oead-1.4.5/lib/pybind11/tests/test_tagbased_polymorphic.cpp +148 -0
  1293. tkvsc_oead-1.4.5/lib/pybind11/tests/test_tagbased_polymorphic.py +30 -0
  1294. tkvsc_oead-1.4.5/lib/pybind11/tests/test_thread.cpp +66 -0
  1295. tkvsc_oead-1.4.5/lib/pybind11/tests/test_thread.py +49 -0
  1296. tkvsc_oead-1.4.5/lib/pybind11/tests/test_type_caster_pyobject_ptr.cpp +167 -0
  1297. tkvsc_oead-1.4.5/lib/pybind11/tests/test_type_caster_pyobject_ptr.py +122 -0
  1298. tkvsc_oead-1.4.5/lib/pybind11/tests/test_type_caster_std_function_specializations.cpp +46 -0
  1299. tkvsc_oead-1.4.5/lib/pybind11/tests/test_type_caster_std_function_specializations.py +15 -0
  1300. tkvsc_oead-1.4.5/lib/pybind11/tests/test_union.cpp +22 -0
  1301. tkvsc_oead-1.4.5/lib/pybind11/tests/test_union.py +10 -0
  1302. tkvsc_oead-1.4.5/lib/pybind11/tests/test_unnamed_namespace_a.cpp +38 -0
  1303. tkvsc_oead-1.4.5/lib/pybind11/tests/test_unnamed_namespace_a.py +36 -0
  1304. tkvsc_oead-1.4.5/lib/pybind11/tests/test_unnamed_namespace_b.cpp +13 -0
  1305. tkvsc_oead-1.4.5/lib/pybind11/tests/test_unnamed_namespace_b.py +7 -0
  1306. tkvsc_oead-1.4.5/lib/pybind11/tests/test_vector_unique_ptr_member.cpp +54 -0
  1307. tkvsc_oead-1.4.5/lib/pybind11/tests/test_vector_unique_ptr_member.py +16 -0
  1308. tkvsc_oead-1.4.5/lib/pybind11/tests/test_virtual_functions.cpp +592 -0
  1309. tkvsc_oead-1.4.5/lib/pybind11/tests/test_virtual_functions.py +463 -0
  1310. tkvsc_oead-1.4.5/lib/pybind11/tests/valgrind-numpy-scipy.supp +140 -0
  1311. tkvsc_oead-1.4.5/lib/pybind11/tests/valgrind-python.supp +117 -0
  1312. tkvsc_oead-1.4.5/lib/pybind11/tools/FindCatch.cmake +76 -0
  1313. tkvsc_oead-1.4.5/lib/pybind11/tools/FindEigen3.cmake +86 -0
  1314. tkvsc_oead-1.4.5/lib/pybind11/tools/FindPythonLibsNew.cmake +310 -0
  1315. tkvsc_oead-1.4.5/lib/pybind11/tools/JoinPaths.cmake +23 -0
  1316. tkvsc_oead-1.4.5/lib/pybind11/tools/check-style.sh +44 -0
  1317. tkvsc_oead-1.4.5/lib/pybind11/tools/cmake_uninstall.cmake.in +23 -0
  1318. tkvsc_oead-1.4.5/lib/pybind11/tools/codespell_ignore_lines_from_errors.py +40 -0
  1319. tkvsc_oead-1.4.5/lib/pybind11/tools/libsize.py +38 -0
  1320. tkvsc_oead-1.4.5/lib/pybind11/tools/make_changelog.py +92 -0
  1321. tkvsc_oead-1.4.5/lib/pybind11/tools/pybind11.pc.in +7 -0
  1322. tkvsc_oead-1.4.5/lib/pybind11/tools/pybind11Common.cmake +455 -0
  1323. tkvsc_oead-1.4.5/lib/pybind11/tools/pybind11Config.cmake.in +233 -0
  1324. tkvsc_oead-1.4.5/lib/pybind11/tools/pybind11GuessPythonExtSuffix.cmake +86 -0
  1325. tkvsc_oead-1.4.5/lib/pybind11/tools/pybind11NewTools.cmake +341 -0
  1326. tkvsc_oead-1.4.5/lib/pybind11/tools/pybind11Tools.cmake +239 -0
  1327. tkvsc_oead-1.4.5/lib/pybind11/tools/pyproject.toml +3 -0
  1328. tkvsc_oead-1.4.5/lib/pybind11/tools/setup_global.py.in +63 -0
  1329. tkvsc_oead-1.4.5/lib/pybind11/tools/setup_main.py.in +44 -0
  1330. tkvsc_oead-1.4.5/lib/pybind11/tools/test-pybind11GuessPythonExtSuffix.cmake +161 -0
  1331. tkvsc_oead-1.4.5/lib/rapidyaml/.ci/travis-install.sh +127 -0
  1332. tkvsc_oead-1.4.5/lib/rapidyaml/.ci/travis-setenv.sh +127 -0
  1333. tkvsc_oead-1.4.5/lib/rapidyaml/.ci/vagrant-provision.sh +41 -0
  1334. tkvsc_oead-1.4.5/lib/rapidyaml/.git +1 -0
  1335. tkvsc_oead-1.4.5/lib/rapidyaml/.gitignore +35 -0
  1336. tkvsc_oead-1.4.5/lib/rapidyaml/.gitmodules +3 -0
  1337. tkvsc_oead-1.4.5/lib/rapidyaml/.lgtm.yml +2 -0
  1338. tkvsc_oead-1.4.5/lib/rapidyaml/.travis.yml +111 -0
  1339. tkvsc_oead-1.4.5/lib/rapidyaml/CHANGELOG.md +12 -0
  1340. tkvsc_oead-1.4.5/lib/rapidyaml/CMakeLists.txt +105 -0
  1341. tkvsc_oead-1.4.5/lib/rapidyaml/CONTRIBUTING.md +21 -0
  1342. tkvsc_oead-1.4.5/lib/rapidyaml/LICENSE.txt +20 -0
  1343. tkvsc_oead-1.4.5/lib/rapidyaml/README.md +1259 -0
  1344. tkvsc_oead-1.4.5/lib/rapidyaml/ROADMAP.md +34 -0
  1345. tkvsc_oead-1.4.5/lib/rapidyaml/api/CMakeLists.txt +133 -0
  1346. tkvsc_oead-1.4.5/lib/rapidyaml/api/python/parse.py +414 -0
  1347. tkvsc_oead-1.4.5/lib/rapidyaml/api/python/parse_bm.py +128 -0
  1348. tkvsc_oead-1.4.5/lib/rapidyaml/api/python/requirements_dev.txt +3 -0
  1349. tkvsc_oead-1.4.5/lib/rapidyaml/api/python/setup.py +17 -0
  1350. tkvsc_oead-1.4.5/lib/rapidyaml/api/ryml.i +535 -0
  1351. tkvsc_oead-1.4.5/lib/rapidyaml/appveyor.yml +127 -0
  1352. tkvsc_oead-1.4.5/lib/rapidyaml/bm/CMakeLists.txt +78 -0
  1353. tkvsc_oead-1.4.5/lib/rapidyaml/bm/bm_parse.cpp +350 -0
  1354. tkvsc_oead-1.4.5/lib/rapidyaml/bm/cases/appveyor.yml +90 -0
  1355. tkvsc_oead-1.4.5/lib/rapidyaml/bm/cases/compile_commands.json +362 -0
  1356. tkvsc_oead-1.4.5/lib/rapidyaml/bm/cases/travis.yml +107 -0
  1357. tkvsc_oead-1.4.5/lib/rapidyaml/bm/results/parse.linux.i7_6800K.md +90 -0
  1358. tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/.ci/travis-install.sh +127 -0
  1359. tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/.ci/travis-setenv.sh +126 -0
  1360. tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/.ci/vagrant-provision.sh +41 -0
  1361. tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/.git +1 -0
  1362. tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/.gitignore +29 -0
  1363. tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/.gitmodules +6 -0
  1364. tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/.old/log.hpp +9 -0
  1365. tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/.old/util.hpp +4091 -0
  1366. tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/.travis.yml +99 -0
  1367. tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/CMakeLists.txt +77 -0
  1368. tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/LICENSE.txt +20 -0
  1369. tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/README.md +213 -0
  1370. tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/ROADMAP.md +23 -0
  1371. tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/appveyor.yml +127 -0
  1372. tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/bm/CMakeLists.txt +9 -0
  1373. tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/bm/charconv.cpp +879 -0
  1374. tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/cmake/.git +1 -0
  1375. tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/cmake/ConfigurationTypes.cmake +120 -0
  1376. tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/cmake/CreateSourceGroup.cmake +30 -0
  1377. tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/cmake/Doxyfile.full.in +2567 -0
  1378. tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/cmake/Doxyfile.in +2566 -0
  1379. tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/cmake/ExternalProjectUtils.cmake +215 -0
  1380. tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/cmake/FindD3D12.cmake +75 -0
  1381. tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/cmake/FindDX12.cmake +76 -0
  1382. tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/cmake/GetFlags.cmake +53 -0
  1383. tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/cmake/GetNames.cmake +51 -0
  1384. tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/cmake/PVS-Studio.cmake +275 -0
  1385. tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/cmake/PatchUtils.cmake +69 -0
  1386. tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/cmake/PrintVar.cmake +27 -0
  1387. tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/cmake/README.md +25 -0
  1388. tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/cmake/Toolchain-PS4.cmake +73 -0
  1389. tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/cmake/Toolchain-XBoxOne.cmake +93 -0
  1390. tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/cmake/bm-xp/README.md +4 -0
  1391. tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/cmake/bm-xp/bm_xp.js +334 -0
  1392. tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/cmake/bm-xp/download-deps.sh +26 -0
  1393. tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/cmake/bm-xp/index.html +63 -0
  1394. tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/cmake/c4CatSources.cmake +105 -0
  1395. tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/cmake/c4Doxygen.cmake +92 -0
  1396. tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/cmake/c4GetTargetPropertyRecursive.cmake +179 -0
  1397. tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/cmake/c4Project.cmake +2753 -0
  1398. tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/cmake/c4SanitizeTarget.cmake +282 -0
  1399. tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/cmake/c4StaticAnalysis.cmake +154 -0
  1400. tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/cmake/c4stlAddTarget.cmake +5 -0
  1401. tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/ext/debugbreak/.git +1 -0
  1402. tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/ext/debugbreak/.gitignore +10 -0
  1403. tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/ext/debugbreak/README.md +120 -0
  1404. tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/ext/debugbreak/debugbreak-gdb.py +128 -0
  1405. tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/ext/debugbreak/debugbreak.h +134 -0
  1406. tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/ext/debugbreak/test/break-c++.cc +9 -0
  1407. tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/ext/debugbreak/test/break.c +9 -0
  1408. tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/ext/debugbreak/test/break.gdb +2 -0
  1409. tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/ext/debugbreak/test/fib.c +21 -0
  1410. tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/ext/debugbreak/test/fib.gdb +2 -0
  1411. tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/ext/debugbreak/test/test-debugbreak.gdb +6 -0
  1412. tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/ext/debugbreak/test/trap.c +8 -0
  1413. tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/ext/debugbreak/test/trap.gdb +3 -0
  1414. tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/ext/sg14/README.md +1 -0
  1415. tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/ext/sg14/inplace_function.h +354 -0
  1416. tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/src/c4/allocator.hpp +399 -0
  1417. tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/src/c4/base64.cpp +207 -0
  1418. tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/src/c4/base64.hpp +109 -0
  1419. tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/src/c4/bitmask.hpp +270 -0
  1420. tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/src/c4/blob.hpp +51 -0
  1421. tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/src/c4/c4_pop.hpp +19 -0
  1422. tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/src/c4/c4_push.hpp +35 -0
  1423. tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/src/c4/c4core.natvis +149 -0
  1424. tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/src/c4/char_traits.cpp +13 -0
  1425. tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/src/c4/char_traits.hpp +97 -0
  1426. tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/src/c4/charconv.hpp +1193 -0
  1427. tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/src/c4/common.hpp +15 -0
  1428. tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/src/c4/compiler.hpp +95 -0
  1429. tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/src/c4/config.hpp +39 -0
  1430. tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/src/c4/cpu.hpp +93 -0
  1431. tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/src/c4/ctor_dtor.hpp +449 -0
  1432. tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/src/c4/enum.hpp +258 -0
  1433. tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/src/c4/error.cpp +173 -0
  1434. tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/src/c4/error.hpp +341 -0
  1435. tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/src/c4/export.hpp +18 -0
  1436. tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/src/c4/format.cpp +68 -0
  1437. tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/src/c4/format.hpp +691 -0
  1438. tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/src/c4/hash.hpp +95 -0
  1439. tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/src/c4/language.cpp +17 -0
  1440. tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/src/c4/language.hpp +246 -0
  1441. tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/src/c4/memory_resource.cpp +330 -0
  1442. tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/src/c4/memory_resource.hpp +564 -0
  1443. tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/src/c4/memory_util.cpp +50 -0
  1444. tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/src/c4/memory_util.hpp +339 -0
  1445. tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/src/c4/platform.hpp +39 -0
  1446. tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/src/c4/preprocessor.hpp +124 -0
  1447. tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/src/c4/restrict.hpp +51 -0
  1448. tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/src/c4/span.hpp +499 -0
  1449. tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/src/c4/std/std.hpp +10 -0
  1450. tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/src/c4/std/string.hpp +64 -0
  1451. tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/src/c4/std/tuple.hpp +179 -0
  1452. tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/src/c4/std/vector.hpp +70 -0
  1453. tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/src/c4/substr.hpp +1580 -0
  1454. tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/src/c4/substr_fwd.hpp +22 -0
  1455. tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/src/c4/szconv.hpp +64 -0
  1456. tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/src/c4/time.cpp +49 -0
  1457. tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/src/c4/time.hpp +80 -0
  1458. tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/src/c4/type_name.hpp +123 -0
  1459. tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/src/c4/types.hpp +479 -0
  1460. tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/src/c4/unrestrict.hpp +17 -0
  1461. tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/src/c4/windows.hpp +9 -0
  1462. tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/src/c4/windows_pop.hpp +37 -0
  1463. tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/src/c4/windows_push.hpp +92 -0
  1464. tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/test/CMakeLists.txt +56 -0
  1465. tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/test/allocator.cpp +239 -0
  1466. tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/test/base64.cpp +131 -0
  1467. tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/test/bitmask.cpp +296 -0
  1468. tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/test/blob.cpp +24 -0
  1469. tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/test/c4/libtest/archetypes.cpp +12 -0
  1470. tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/test/c4/libtest/archetypes.hpp +574 -0
  1471. tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/test/c4/libtest/supprwarn_pop.hpp +12 -0
  1472. tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/test/c4/libtest/supprwarn_push.hpp +47 -0
  1473. tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/test/c4/libtest/test.cpp +10 -0
  1474. tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/test/c4/test.hpp +366 -0
  1475. tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/test/char_traits.cpp +68 -0
  1476. tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/test/charconv.cpp +1038 -0
  1477. tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/test/ctor_dtor.cpp +335 -0
  1478. tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/test/enum.cpp +128 -0
  1479. tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/test/enum_common.hpp +143 -0
  1480. tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/test/error.cpp +51 -0
  1481. tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/test/error_exception.cpp +105 -0
  1482. tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/test/format.cpp +546 -0
  1483. tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/test/log.cpp +65 -0
  1484. tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/test/memory_resource.cpp +255 -0
  1485. tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/test/memory_util.cpp +244 -0
  1486. tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/test/preprocessor.cpp +56 -0
  1487. tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/test/span.cpp +767 -0
  1488. tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/test/std_string.cpp +28 -0
  1489. tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/test/std_vector.cpp +22 -0
  1490. tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/test/substr.cpp +3133 -0
  1491. tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/test/szconv.cpp +167 -0
  1492. tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/test/type_name.cpp +50 -0
  1493. tkvsc_oead-1.4.5/lib/rapidyaml/ext/c4core/test/types.cpp +82 -0
  1494. tkvsc_oead-1.4.5/lib/rapidyaml/img/first_comparison_yaml_cpp.png +0 -0
  1495. tkvsc_oead-1.4.5/lib/rapidyaml/src/c4/yml/common.cpp +139 -0
  1496. tkvsc_oead-1.4.5/lib/rapidyaml/src/c4/yml/common.hpp +292 -0
  1497. tkvsc_oead-1.4.5/lib/rapidyaml/src/c4/yml/detail/checks.hpp +195 -0
  1498. tkvsc_oead-1.4.5/lib/rapidyaml/src/c4/yml/detail/parser_dbg.hpp +54 -0
  1499. tkvsc_oead-1.4.5/lib/rapidyaml/src/c4/yml/detail/print.hpp +126 -0
  1500. tkvsc_oead-1.4.5/lib/rapidyaml/src/c4/yml/detail/stack.hpp +241 -0
  1501. tkvsc_oead-1.4.5/lib/rapidyaml/src/c4/yml/emit.def.hpp +425 -0
  1502. tkvsc_oead-1.4.5/lib/rapidyaml/src/c4/yml/emit.hpp +359 -0
  1503. tkvsc_oead-1.4.5/lib/rapidyaml/src/c4/yml/export.hpp +18 -0
  1504. tkvsc_oead-1.4.5/lib/rapidyaml/src/c4/yml/node.hpp +856 -0
  1505. tkvsc_oead-1.4.5/lib/rapidyaml/src/c4/yml/parse.cpp +3899 -0
  1506. tkvsc_oead-1.4.5/lib/rapidyaml/src/c4/yml/parse.hpp +378 -0
  1507. tkvsc_oead-1.4.5/lib/rapidyaml/src/c4/yml/preprocess.cpp +227 -0
  1508. tkvsc_oead-1.4.5/lib/rapidyaml/src/c4/yml/preprocess.hpp +146 -0
  1509. tkvsc_oead-1.4.5/lib/rapidyaml/src/c4/yml/std/map.hpp +45 -0
  1510. tkvsc_oead-1.4.5/lib/rapidyaml/src/c4/yml/std/std.hpp +8 -0
  1511. tkvsc_oead-1.4.5/lib/rapidyaml/src/c4/yml/std/string.hpp +9 -0
  1512. tkvsc_oead-1.4.5/lib/rapidyaml/src/c4/yml/std/vector.hpp +40 -0
  1513. tkvsc_oead-1.4.5/lib/rapidyaml/src/c4/yml/tree.cpp +1682 -0
  1514. tkvsc_oead-1.4.5/lib/rapidyaml/src/c4/yml/tree.hpp +1104 -0
  1515. tkvsc_oead-1.4.5/lib/rapidyaml/src/c4/yml/writer.hpp +205 -0
  1516. tkvsc_oead-1.4.5/lib/rapidyaml/src/c4/yml/yml.hpp +10 -0
  1517. tkvsc_oead-1.4.5/lib/rapidyaml/src/ryml.hpp +8 -0
  1518. tkvsc_oead-1.4.5/lib/rapidyaml/src/ryml.natvis +127 -0
  1519. tkvsc_oead-1.4.5/lib/rapidyaml/src/ryml_std.hpp +6 -0
  1520. tkvsc_oead-1.4.5/lib/rapidyaml/test/CMakeLists.txt +148 -0
  1521. tkvsc_oead-1.4.5/lib/rapidyaml/test/libyaml.hpp +362 -0
  1522. tkvsc_oead-1.4.5/lib/rapidyaml/test/parse_emit.cpp +87 -0
  1523. tkvsc_oead-1.4.5/lib/rapidyaml/test/test_basic.cpp +1611 -0
  1524. tkvsc_oead-1.4.5/lib/rapidyaml/test/test_basic_json.cpp +247 -0
  1525. tkvsc_oead-1.4.5/lib/rapidyaml/test/test_block_folded.cpp +265 -0
  1526. tkvsc_oead-1.4.5/lib/rapidyaml/test/test_block_literal.cpp +373 -0
  1527. tkvsc_oead-1.4.5/lib/rapidyaml/test/test_case.cpp +867 -0
  1528. tkvsc_oead-1.4.5/lib/rapidyaml/test/test_case.hpp +479 -0
  1529. tkvsc_oead-1.4.5/lib/rapidyaml/test/test_complex_key.cpp +259 -0
  1530. tkvsc_oead-1.4.5/lib/rapidyaml/test/test_double_quoted.cpp +163 -0
  1531. tkvsc_oead-1.4.5/lib/rapidyaml/test/test_empty_doc.cpp +48 -0
  1532. tkvsc_oead-1.4.5/lib/rapidyaml/test/test_empty_file.cpp +31 -0
  1533. tkvsc_oead-1.4.5/lib/rapidyaml/test/test_empty_map.cpp +54 -0
  1534. tkvsc_oead-1.4.5/lib/rapidyaml/test/test_empty_seq.cpp +51 -0
  1535. tkvsc_oead-1.4.5/lib/rapidyaml/test/test_generic_map.cpp +100 -0
  1536. tkvsc_oead-1.4.5/lib/rapidyaml/test/test_generic_seq.cpp +55 -0
  1537. tkvsc_oead-1.4.5/lib/rapidyaml/test/test_github_issues.cpp +531 -0
  1538. tkvsc_oead-1.4.5/lib/rapidyaml/test/test_group.cpp +468 -0
  1539. tkvsc_oead-1.4.5/lib/rapidyaml/test/test_group.hpp +126 -0
  1540. tkvsc_oead-1.4.5/lib/rapidyaml/test/test_indentation.cpp +340 -0
  1541. tkvsc_oead-1.4.5/lib/rapidyaml/test/test_map_of_seq.cpp +216 -0
  1542. tkvsc_oead-1.4.5/lib/rapidyaml/test/test_merge.cpp +172 -0
  1543. tkvsc_oead-1.4.5/lib/rapidyaml/test/test_nested_mapx2.cpp +82 -0
  1544. tkvsc_oead-1.4.5/lib/rapidyaml/test/test_nested_mapx3.cpp +113 -0
  1545. tkvsc_oead-1.4.5/lib/rapidyaml/test/test_nested_mapx4.cpp +198 -0
  1546. tkvsc_oead-1.4.5/lib/rapidyaml/test/test_nested_seqx2.cpp +147 -0
  1547. tkvsc_oead-1.4.5/lib/rapidyaml/test/test_nested_seqx3.cpp +198 -0
  1548. tkvsc_oead-1.4.5/lib/rapidyaml/test/test_nested_seqx4.cpp +132 -0
  1549. tkvsc_oead-1.4.5/lib/rapidyaml/test/test_null_val.cpp +117 -0
  1550. tkvsc_oead-1.4.5/lib/rapidyaml/test/test_number.cpp +56 -0
  1551. tkvsc_oead-1.4.5/lib/rapidyaml/test/test_plain_scalar.cpp +503 -0
  1552. tkvsc_oead-1.4.5/lib/rapidyaml/test/test_preprocess.cpp +135 -0
  1553. tkvsc_oead-1.4.5/lib/rapidyaml/test/test_scalar_names.cpp +91 -0
  1554. tkvsc_oead-1.4.5/lib/rapidyaml/test/test_seq_of_map.cpp +164 -0
  1555. tkvsc_oead-1.4.5/lib/rapidyaml/test/test_simple_anchor.cpp +628 -0
  1556. tkvsc_oead-1.4.5/lib/rapidyaml/test/test_simple_doc.cpp +457 -0
  1557. tkvsc_oead-1.4.5/lib/rapidyaml/test/test_simple_map.cpp +643 -0
  1558. tkvsc_oead-1.4.5/lib/rapidyaml/test/test_simple_seq.cpp +541 -0
  1559. tkvsc_oead-1.4.5/lib/rapidyaml/test/test_simple_set.cpp +142 -0
  1560. tkvsc_oead-1.4.5/lib/rapidyaml/test/test_single_quoted.cpp +149 -0
  1561. tkvsc_oead-1.4.5/lib/rapidyaml/test/test_stack.cpp +324 -0
  1562. tkvsc_oead-1.4.5/lib/rapidyaml/test/test_suite.cpp +755 -0
  1563. tkvsc_oead-1.4.5/lib/rapidyaml/test/test_tag_property.cpp +151 -0
  1564. tkvsc_oead-1.4.5/lib/zlib-ng/.git +1 -0
  1565. tkvsc_oead-1.4.5/lib/zlib-ng/.gitattributes +4 -0
  1566. tkvsc_oead-1.4.5/lib/zlib-ng/.github/workflows/cmake.yml +378 -0
  1567. tkvsc_oead-1.4.5/lib/zlib-ng/.github/workflows/configure.yml +160 -0
  1568. tkvsc_oead-1.4.5/lib/zlib-ng/.gitignore +79 -0
  1569. tkvsc_oead-1.4.5/lib/zlib-ng/CMakeLists.txt +1115 -0
  1570. tkvsc_oead-1.4.5/lib/zlib-ng/FAQ.zlib +374 -0
  1571. tkvsc_oead-1.4.5/lib/zlib-ng/LICENSE.md +19 -0
  1572. tkvsc_oead-1.4.5/lib/zlib-ng/Makefile.in +393 -0
  1573. tkvsc_oead-1.4.5/lib/zlib-ng/README.md +212 -0
  1574. tkvsc_oead-1.4.5/lib/zlib-ng/adler32.c +132 -0
  1575. tkvsc_oead-1.4.5/lib/zlib-ng/adler32_p.h +77 -0
  1576. tkvsc_oead-1.4.5/lib/zlib-ng/arch/.gitignore +2 -0
  1577. tkvsc_oead-1.4.5/lib/zlib-ng/arch/arm/Makefile.in +54 -0
  1578. tkvsc_oead-1.4.5/lib/zlib-ng/arch/arm/adler32_neon.c +134 -0
  1579. tkvsc_oead-1.4.5/lib/zlib-ng/arch/arm/adler32_neon.h +29 -0
  1580. tkvsc_oead-1.4.5/lib/zlib-ng/arch/arm/arm.h +13 -0
  1581. tkvsc_oead-1.4.5/lib/zlib-ng/arch/arm/armfeature.c +49 -0
  1582. tkvsc_oead-1.4.5/lib/zlib-ng/arch/arm/crc32_acle.c +115 -0
  1583. tkvsc_oead-1.4.5/lib/zlib-ng/arch/arm/ctzl.h +12 -0
  1584. tkvsc_oead-1.4.5/lib/zlib-ng/arch/arm/fill_window_arm.c +169 -0
  1585. tkvsc_oead-1.4.5/lib/zlib-ng/arch/arm/insert_string_acle.c +53 -0
  1586. tkvsc_oead-1.4.5/lib/zlib-ng/arch/generic/Makefile.in +21 -0
  1587. tkvsc_oead-1.4.5/lib/zlib-ng/arch/s390/Makefile.in +40 -0
  1588. tkvsc_oead-1.4.5/lib/zlib-ng/arch/s390/README.md +80 -0
  1589. tkvsc_oead-1.4.5/lib/zlib-ng/arch/s390/dfltcc_common.c +84 -0
  1590. tkvsc_oead-1.4.5/lib/zlib-ng/arch/s390/dfltcc_common.h +29 -0
  1591. tkvsc_oead-1.4.5/lib/zlib-ng/arch/s390/dfltcc_deflate.c +371 -0
  1592. tkvsc_oead-1.4.5/lib/zlib-ng/arch/s390/dfltcc_deflate.h +53 -0
  1593. tkvsc_oead-1.4.5/lib/zlib-ng/arch/s390/dfltcc_detail.h +199 -0
  1594. tkvsc_oead-1.4.5/lib/zlib-ng/arch/s390/dfltcc_inflate.c +137 -0
  1595. tkvsc_oead-1.4.5/lib/zlib-ng/arch/s390/dfltcc_inflate.h +44 -0
  1596. tkvsc_oead-1.4.5/lib/zlib-ng/arch/x86/Makefile.in +71 -0
  1597. tkvsc_oead-1.4.5/lib/zlib-ng/arch/x86/README.md +8 -0
  1598. tkvsc_oead-1.4.5/lib/zlib-ng/arch/x86/crc_folding.c +458 -0
  1599. tkvsc_oead-1.4.5/lib/zlib-ng/arch/x86/crc_folding.h +19 -0
  1600. tkvsc_oead-1.4.5/lib/zlib-ng/arch/x86/deflate_quick.c +2395 -0
  1601. tkvsc_oead-1.4.5/lib/zlib-ng/arch/x86/fill_window_sse.c +155 -0
  1602. tkvsc_oead-1.4.5/lib/zlib-ng/arch/x86/insert_string_sse.c +71 -0
  1603. tkvsc_oead-1.4.5/lib/zlib-ng/arch/x86/slide_avx.c +47 -0
  1604. tkvsc_oead-1.4.5/lib/zlib-ng/arch/x86/slide_sse.c +46 -0
  1605. tkvsc_oead-1.4.5/lib/zlib-ng/arch/x86/x86.c +78 -0
  1606. tkvsc_oead-1.4.5/lib/zlib-ng/arch/x86/x86.h +17 -0
  1607. tkvsc_oead-1.4.5/lib/zlib-ng/cmake/archdetect.c +95 -0
  1608. tkvsc_oead-1.4.5/lib/zlib-ng/cmake/archdetect.cmake +93 -0
  1609. tkvsc_oead-1.4.5/lib/zlib-ng/cmake/run-and-redirect.cmake +26 -0
  1610. tkvsc_oead-1.4.5/lib/zlib-ng/cmake/toolchain-aarch64.cmake +26 -0
  1611. tkvsc_oead-1.4.5/lib/zlib-ng/cmake/toolchain-arm.cmake +24 -0
  1612. tkvsc_oead-1.4.5/lib/zlib-ng/cmake/toolchain-powerpc.cmake +25 -0
  1613. tkvsc_oead-1.4.5/lib/zlib-ng/cmake/toolchain-powerpc64.cmake +25 -0
  1614. tkvsc_oead-1.4.5/lib/zlib-ng/cmake/toolchain-powerpc64le.cmake +25 -0
  1615. tkvsc_oead-1.4.5/lib/zlib-ng/cmake/toolchain-s390x.cmake +25 -0
  1616. tkvsc_oead-1.4.5/lib/zlib-ng/cmake/toolchain-sparc64.cmake +25 -0
  1617. tkvsc_oead-1.4.5/lib/zlib-ng/compress.c +82 -0
  1618. tkvsc_oead-1.4.5/lib/zlib-ng/crc32.c +281 -0
  1619. tkvsc_oead-1.4.5/lib/zlib-ng/crc32.h +735 -0
  1620. tkvsc_oead-1.4.5/lib/zlib-ng/crc32_p.h +19 -0
  1621. tkvsc_oead-1.4.5/lib/zlib-ng/deflate.c +1798 -0
  1622. tkvsc_oead-1.4.5/lib/zlib-ng/deflate.h +478 -0
  1623. tkvsc_oead-1.4.5/lib/zlib-ng/deflate_fast.c +120 -0
  1624. tkvsc_oead-1.4.5/lib/zlib-ng/deflate_medium.c +327 -0
  1625. tkvsc_oead-1.4.5/lib/zlib-ng/deflate_p.h +77 -0
  1626. tkvsc_oead-1.4.5/lib/zlib-ng/deflate_slow.c +164 -0
  1627. tkvsc_oead-1.4.5/lib/zlib-ng/doc/algorithm.txt +209 -0
  1628. tkvsc_oead-1.4.5/lib/zlib-ng/doc/rfc1950.txt +619 -0
  1629. tkvsc_oead-1.4.5/lib/zlib-ng/doc/rfc1951.txt +955 -0
  1630. tkvsc_oead-1.4.5/lib/zlib-ng/doc/rfc1952.txt +675 -0
  1631. tkvsc_oead-1.4.5/lib/zlib-ng/doc/txtvsbin.txt +107 -0
  1632. tkvsc_oead-1.4.5/lib/zlib-ng/fallback_builtins.h +24 -0
  1633. tkvsc_oead-1.4.5/lib/zlib-ng/functable.c +159 -0
  1634. tkvsc_oead-1.4.5/lib/zlib-ng/functable.h +22 -0
  1635. tkvsc_oead-1.4.5/lib/zlib-ng/gzclose.c +24 -0
  1636. tkvsc_oead-1.4.5/lib/zlib-ng/gzguts.h +167 -0
  1637. tkvsc_oead-1.4.5/lib/zlib-ng/gzlib.c +520 -0
  1638. tkvsc_oead-1.4.5/lib/zlib-ng/gzread.c +601 -0
  1639. tkvsc_oead-1.4.5/lib/zlib-ng/gzwrite.c +525 -0
  1640. tkvsc_oead-1.4.5/lib/zlib-ng/infback.c +508 -0
  1641. tkvsc_oead-1.4.5/lib/zlib-ng/inffast.c +379 -0
  1642. tkvsc_oead-1.4.5/lib/zlib-ng/inffast.h +18 -0
  1643. tkvsc_oead-1.4.5/lib/zlib-ng/inffixed.h +94 -0
  1644. tkvsc_oead-1.4.5/lib/zlib-ng/inflate.c +1369 -0
  1645. tkvsc_oead-1.4.5/lib/zlib-ng/inflate.h +134 -0
  1646. tkvsc_oead-1.4.5/lib/zlib-ng/inflate_p.h +94 -0
  1647. tkvsc_oead-1.4.5/lib/zlib-ng/inftrees.c +297 -0
  1648. tkvsc_oead-1.4.5/lib/zlib-ng/inftrees.h +66 -0
  1649. tkvsc_oead-1.4.5/lib/zlib-ng/match_p.h +508 -0
  1650. tkvsc_oead-1.4.5/lib/zlib-ng/memcopy.h +675 -0
  1651. tkvsc_oead-1.4.5/lib/zlib-ng/test/.gitignore +5 -0
  1652. tkvsc_oead-1.4.5/lib/zlib-ng/test/CVE-2002-0059/test.gz +0 -0
  1653. tkvsc_oead-1.4.5/lib/zlib-ng/test/CVE-2003-0107.c +20 -0
  1654. tkvsc_oead-1.4.5/lib/zlib-ng/test/CVE-2004-0797/test.gz +0 -0
  1655. tkvsc_oead-1.4.5/lib/zlib-ng/test/CVE-2005-1849/test.gz +0 -0
  1656. tkvsc_oead-1.4.5/lib/zlib-ng/test/CVE-2005-2096/test.gz +0 -0
  1657. tkvsc_oead-1.4.5/lib/zlib-ng/test/GH-361/test.txt +4 -0
  1658. tkvsc_oead-1.4.5/lib/zlib-ng/test/GH-364/test.bin +0 -0
  1659. tkvsc_oead-1.4.5/lib/zlib-ng/test/Makefile.in +119 -0
  1660. tkvsc_oead-1.4.5/lib/zlib-ng/test/README.md +33 -0
  1661. tkvsc_oead-1.4.5/lib/zlib-ng/test/data/fireworks.jpg +0 -0
  1662. tkvsc_oead-1.4.5/lib/zlib-ng/test/data/lcet10.txt +7519 -0
  1663. tkvsc_oead-1.4.5/lib/zlib-ng/test/data/paper-100k.pdf +600 -2
  1664. tkvsc_oead-1.4.5/lib/zlib-ng/test/example.c +934 -0
  1665. tkvsc_oead-1.4.5/lib/zlib-ng/test/fuzz/checksum_fuzzer.c +84 -0
  1666. tkvsc_oead-1.4.5/lib/zlib-ng/test/fuzz/compress_fuzzer.c +87 -0
  1667. tkvsc_oead-1.4.5/lib/zlib-ng/test/fuzz/example_dict_fuzzer.c +169 -0
  1668. tkvsc_oead-1.4.5/lib/zlib-ng/test/fuzz/example_flush_fuzzer.c +124 -0
  1669. tkvsc_oead-1.4.5/lib/zlib-ng/test/fuzz/example_large_fuzzer.c +141 -0
  1670. tkvsc_oead-1.4.5/lib/zlib-ng/test/fuzz/example_small_fuzzer.c +123 -0
  1671. tkvsc_oead-1.4.5/lib/zlib-ng/test/fuzz/minigzip_fuzzer.c +320 -0
  1672. tkvsc_oead-1.4.5/lib/zlib-ng/test/fuzz/standalone_fuzz_target_runner.c +36 -0
  1673. tkvsc_oead-1.4.5/lib/zlib-ng/test/infcover.c +665 -0
  1674. tkvsc_oead-1.4.5/lib/zlib-ng/test/minigzip.c +356 -0
  1675. tkvsc_oead-1.4.5/lib/zlib-ng/test/switchlevels.c +108 -0
  1676. tkvsc_oead-1.4.5/lib/zlib-ng/test/testCVEinputs.sh +30 -0
  1677. tkvsc_oead-1.4.5/lib/zlib-ng/tools/makecrct.c +156 -0
  1678. tkvsc_oead-1.4.5/lib/zlib-ng/tools/makefixed.c +90 -0
  1679. tkvsc_oead-1.4.5/lib/zlib-ng/tools/maketrees.c +147 -0
  1680. tkvsc_oead-1.4.5/lib/zlib-ng/trees.c +916 -0
  1681. tkvsc_oead-1.4.5/lib/zlib-ng/trees.h +132 -0
  1682. tkvsc_oead-1.4.5/lib/zlib-ng/trees_p.h +40 -0
  1683. tkvsc_oead-1.4.5/lib/zlib-ng/uncompr.c +87 -0
  1684. tkvsc_oead-1.4.5/lib/zlib-ng/win32/DLL_FAQ.txt +397 -0
  1685. tkvsc_oead-1.4.5/lib/zlib-ng/win32/Makefile.a64 +168 -0
  1686. tkvsc_oead-1.4.5/lib/zlib-ng/win32/Makefile.arm +182 -0
  1687. tkvsc_oead-1.4.5/lib/zlib-ng/win32/Makefile.msc +175 -0
  1688. tkvsc_oead-1.4.5/lib/zlib-ng/win32/README-WIN32.txt +103 -0
  1689. tkvsc_oead-1.4.5/lib/zlib-ng/win32/zlib-ng.def +63 -0
  1690. tkvsc_oead-1.4.5/lib/zlib-ng/win32/zlib-ng1.rc +40 -0
  1691. tkvsc_oead-1.4.5/lib/zlib-ng/win32/zlib.def +61 -0
  1692. tkvsc_oead-1.4.5/lib/zlib-ng/win32/zlib1.rc +40 -0
  1693. tkvsc_oead-1.4.5/lib/zlib-ng/win32/zlibcompat.def +94 -0
  1694. tkvsc_oead-1.4.5/lib/zlib-ng/zbuild.h +25 -0
  1695. tkvsc_oead-1.4.5/lib/zlib-ng/zconf-ng.h.in +174 -0
  1696. tkvsc_oead-1.4.5/lib/zlib-ng/zconf.h.in +178 -0
  1697. tkvsc_oead-1.4.5/lib/zlib-ng/zendian.h +60 -0
  1698. tkvsc_oead-1.4.5/lib/zlib-ng/zlib-ng.h +1957 -0
  1699. tkvsc_oead-1.4.5/lib/zlib-ng/zlib-ng.map +109 -0
  1700. tkvsc_oead-1.4.5/lib/zlib-ng/zlib.3 +149 -0
  1701. tkvsc_oead-1.4.5/lib/zlib-ng/zlib.h +1848 -0
  1702. tkvsc_oead-1.4.5/lib/zlib-ng/zlib.map +96 -0
  1703. tkvsc_oead-1.4.5/lib/zlib-ng/zlib.pc.cmakein +13 -0
  1704. tkvsc_oead-1.4.5/lib/zlib-ng/zlib.pc.in +13 -0
  1705. tkvsc_oead-1.4.5/lib/zlib-ng/zutil.c +142 -0
  1706. tkvsc_oead-1.4.5/lib/zlib-ng/zutil.h +255 -0
  1707. tkvsc_oead-1.4.5/py/CMakeLists.txt +47 -0
  1708. tkvsc_oead-1.4.5/py/_version.py +21 -0
  1709. tkvsc_oead-1.4.5/py/main.cpp +31 -0
  1710. tkvsc_oead-1.4.5/py/main.h +37 -0
  1711. tkvsc_oead-1.4.5/py/py_aamp.cpp +146 -0
  1712. tkvsc_oead-1.4.5/py/py_byml.cpp +140 -0
  1713. tkvsc_oead-1.4.5/py/py_common_types.cpp +160 -0
  1714. tkvsc_oead-1.4.5/py/py_gsheet.cpp +134 -0
  1715. tkvsc_oead-1.4.5/py/py_sarc.cpp +73 -0
  1716. tkvsc_oead-1.4.5/py/py_yaz0.cpp +65 -0
  1717. tkvsc_oead-1.4.5/py/pybind11_common.h +296 -0
  1718. tkvsc_oead-1.4.5/py/pybind11_variant_caster.h +180 -0
  1719. tkvsc_oead-1.4.5/readme.rst +77 -0
  1720. tkvsc_oead-1.4.5/setup.cfg +14 -0
  1721. tkvsc_oead-1.4.5/setup.py +114 -0
  1722. tkvsc_oead-1.4.5/src/aamp.cpp +515 -0
  1723. tkvsc_oead-1.4.5/src/aamp_text.cpp +461 -0
  1724. tkvsc_oead-1.4.5/src/byml.cpp +736 -0
  1725. tkvsc_oead-1.4.5/src/byml_text.cpp +307 -0
  1726. tkvsc_oead-1.4.5/src/gsheet.cpp +621 -0
  1727. tkvsc_oead-1.4.5/src/include/oead/aamp.h +231 -0
  1728. tkvsc_oead-1.4.5/src/include/oead/byml.h +221 -0
  1729. tkvsc_oead-1.4.5/src/include/oead/errors.h +41 -0
  1730. tkvsc_oead-1.4.5/src/include/oead/gsheet.h +349 -0
  1731. tkvsc_oead-1.4.5/src/include/oead/sarc.h +156 -0
  1732. tkvsc_oead-1.4.5/src/include/oead/types.h +227 -0
  1733. tkvsc_oead-1.4.5/src/include/oead/util/align.h +21 -0
  1734. tkvsc_oead-1.4.5/src/include/oead/util/binary_reader.h +197 -0
  1735. tkvsc_oead-1.4.5/src/include/oead/util/bit_utils.h +323 -0
  1736. tkvsc_oead-1.4.5/src/include/oead/util/hash.h +45 -0
  1737. tkvsc_oead-1.4.5/src/include/oead/util/iterator_utils.h +64 -0
  1738. tkvsc_oead-1.4.5/src/include/oead/util/magic_utils.h +34 -0
  1739. tkvsc_oead-1.4.5/src/include/oead/util/scope_guard.h +37 -0
  1740. tkvsc_oead-1.4.5/src/include/oead/util/string_utils.h +44 -0
  1741. tkvsc_oead-1.4.5/src/include/oead/util/swap.h +220 -0
  1742. tkvsc_oead-1.4.5/src/include/oead/util/type_utils.h +67 -0
  1743. tkvsc_oead-1.4.5/src/include/oead/util/variant_utils.h +178 -0
  1744. tkvsc_oead-1.4.5/src/include/oead/yaz0.h +62 -0
  1745. tkvsc_oead-1.4.5/src/sarc.cpp +434 -0
  1746. tkvsc_oead-1.4.5/src/yaml.cpp +210 -0
  1747. tkvsc_oead-1.4.5/src/yaml.h +236 -0
  1748. tkvsc_oead-1.4.5/src/yaz0.cpp +185 -0
  1749. tkvsc_oead-1.4.5/tkvsc_oead.egg-info/PKG-INFO +102 -0
  1750. tkvsc_oead-1.4.5/tkvsc_oead.egg-info/SOURCES.txt +1753 -0
  1751. tkvsc_oead-1.4.5/tkvsc_oead.egg-info/dependency_links.txt +1 -0
  1752. tkvsc_oead-1.4.5/tkvsc_oead.egg-info/not-zip-safe +1 -0
  1753. tkvsc_oead-1.4.5/tkvsc_oead.egg-info/top_level.txt +1 -0
  1754. 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()