oproco 0.3.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.
- oproco-0.3.5/.clang-format +44 -0
- oproco-0.3.5/.clang-tidy +76 -0
- oproco-0.3.5/.devcontainer/Dockerfile +38 -0
- oproco-0.3.5/.devcontainer/devcontainer.json +41 -0
- oproco-0.3.5/.devcontainer/postCreate.sh +32 -0
- oproco-0.3.5/.editorconfig +51 -0
- oproco-0.3.5/.gitattributes +30 -0
- oproco-0.3.5/.github/CODEOWNERS +2 -0
- oproco-0.3.5/.github/ISSUE_TEMPLATE/bug_report.yml +63 -0
- oproco-0.3.5/.github/ISSUE_TEMPLATE/config.yml +5 -0
- oproco-0.3.5/.github/ISSUE_TEMPLATE/feature_request.yml +28 -0
- oproco-0.3.5/.github/PULL_REQUEST_TEMPLATE.md +26 -0
- oproco-0.3.5/.github/dependabot.yml +24 -0
- oproco-0.3.5/.github/workflows/ci.yml +176 -0
- oproco-0.3.5/.github/workflows/docs.yml +101 -0
- oproco-0.3.5/.github/workflows/release.yml +468 -0
- oproco-0.3.5/.gitignore +91 -0
- oproco-0.3.5/.gitmodules +3 -0
- oproco-0.3.5/.pre-commit-config.yaml +46 -0
- oproco-0.3.5/CITATION.cff +65 -0
- oproco-0.3.5/CMakeLists.txt +165 -0
- oproco-0.3.5/CODE_OF_CONDUCT.md +38 -0
- oproco-0.3.5/CONTRIBUTING.md +124 -0
- oproco-0.3.5/LICENSE +47 -0
- oproco-0.3.5/PKG-INFO +98 -0
- oproco-0.3.5/README.md +47 -0
- oproco-0.3.5/SECURITY.md +37 -0
- oproco-0.3.5/cmake/Findmujoco.cmake +122 -0
- oproco-0.3.5/cmake/orcConfig.cmake.in +14 -0
- oproco-0.3.5/cmake-format.yaml +24 -0
- oproco-0.3.5/doc/CMakeLists.txt +47 -0
- oproco-0.3.5/doc/Doxyfile.in +19 -0
- oproco-0.3.5/doc/Makefile +20 -0
- oproco-0.3.5/doc/_static/favicon.ico +0 -0
- oproco-0.3.5/doc/_static/logo.png +0 -0
- oproco-0.3.5/doc/_static/mujoco_sim.png +0 -0
- oproco-0.3.5/doc/advanced/cmake.rst +122 -0
- oproco-0.3.5/doc/api/orc.rst +26 -0
- oproco-0.3.5/doc/api/orcpy.rst +10 -0
- oproco-0.3.5/doc/architecture.rst +133 -0
- oproco-0.3.5/doc/basics/com.rst +74 -0
- oproco-0.3.5/doc/basics/controller.rst +184 -0
- oproco-0.3.5/doc/basics/interpolator.rst +64 -0
- oproco-0.3.5/doc/basics/robots.rst +102 -0
- oproco-0.3.5/doc/basics/trajectory.rst +170 -0
- oproco-0.3.5/doc/changelog.rst +80 -0
- oproco-0.3.5/doc/conf.py +64 -0
- oproco-0.3.5/doc/conventions.rst +55 -0
- oproco-0.3.5/doc/faq.rst +30 -0
- oproco-0.3.5/doc/getting_started.rst +50 -0
- oproco-0.3.5/doc/index.rst +104 -0
- oproco-0.3.5/doc/install.rst +116 -0
- oproco-0.3.5/doc/introduction.rst +45 -0
- oproco-0.3.5/doc/make.bat +35 -0
- oproco-0.3.5/examples/cpp/CMakeLists.txt +29 -0
- oproco-0.3.5/examples/cpp/interpolator_example.cpp +75 -0
- oproco-0.3.5/examples/python/README.md +37 -0
- oproco-0.3.5/examples/python/dense_trajectory_streaming_new.py +1342 -0
- oproco-0.3.5/examples/python/hybrid_force_motion/experiment_whiteboard/sending_circle_square.py +127 -0
- oproco-0.3.5/examples/python/hybrid_force_motion/experiment_whiteboard/sending_simple.py +111 -0
- oproco-0.3.5/examples/python/hybrid_force_motion/experiment_whiteboard/simulate.py +269 -0
- oproco-0.3.5/examples/python/hybrid_force_motion/sponge/sending_ex.py +78 -0
- oproco-0.3.5/examples/python/hybrid_force_motion/sponge/simulate_iiwa.py +216 -0
- oproco-0.3.5/examples/python/interpolator_example.py +58 -0
- oproco-0.3.5/examples/python/orc_paper_experiments/README.md +218 -0
- oproco-0.3.5/examples/python/orc_paper_experiments/_headless_sim.py +114 -0
- oproco-0.3.5/examples/python/orc_paper_experiments/calibrate_kinova_sysid.py +580 -0
- oproco-0.3.5/examples/python/orc_paper_experiments/paper_figure/.gitignore +6 -0
- oproco-0.3.5/examples/python/orc_paper_experiments/paper_figure/fig_kinova_lem.tex +106 -0
- oproco-0.3.5/examples/python/orc_paper_experiments/paper_figure/make_lemniscate_figdata.py +143 -0
- oproco-0.3.5/examples/python/orc_paper_experiments/sending_leminscate.py +317 -0
- oproco-0.3.5/examples/python/orc_paper_experiments/sending_simple.py +84 -0
- oproco-0.3.5/examples/python/orc_paper_experiments/sending_square_octogon.py +127 -0
- oproco-0.3.5/examples/python/sending_iiwa_ex.py +73 -0
- oproco-0.3.5/examples/python/sending_kinova_ex.py +21 -0
- oproco-0.3.5/examples/python/sending_linear_axis_ex.py +13 -0
- oproco-0.3.5/examples/python/sending_param_ex.py +42 -0
- oproco-0.3.5/examples/python/sending_robot9dof_ex.py +22 -0
- oproco-0.3.5/examples/python/simulate_iiwa.py +126 -0
- oproco-0.3.5/examples/python/simulate_kinova.py +168 -0
- oproco-0.3.5/examples/python/simulate_linear_axis.py +96 -0
- oproco-0.3.5/examples/python/simulate_robot9dof.py +201 -0
- oproco-0.3.5/include/orc/Orc.h +11 -0
- oproco-0.3.5/include/orc/OrcTypes.h +34 -0
- oproco-0.3.5/include/orc/RobotStatus.h +11 -0
- oproco-0.3.5/include/orc/RobotTraits.h +21 -0
- oproco-0.3.5/include/orc/Splines +36 -0
- oproco-0.3.5/include/orc/com/.gitkeep +0 -0
- oproco-0.3.5/include/orc/com/RobotState.h +180 -0
- oproco-0.3.5/include/orc/com/TcServerUtil.h +49 -0
- oproco-0.3.5/include/orc/com/TrajectoryServer.h +120 -0
- oproco-0.3.5/include/orc/com/com_settings.h +16 -0
- oproco-0.3.5/include/orc/com/flatbuffers/FlatBufferDeserializer.h +566 -0
- oproco-0.3.5/include/orc/com/flatbuffers/FlatBufferEigen.h +37 -0
- oproco-0.3.5/include/orc/com/flatbuffers/FlatBufferRobotState.h +194 -0
- oproco-0.3.5/include/orc/com/flatbuffers/FlatBufferSerializer.h +390 -0
- oproco-0.3.5/include/orc/com/flatbuffers/FlatBufferSplitting.h +171 -0
- oproco-0.3.5/include/orc/com/flatbuffers/FlatBufferTwinCAT.h +413 -0
- oproco-0.3.5/include/orc/com/flatbuffers/FlatBuffers.h +41 -0
- oproco-0.3.5/include/orc/com/flatbuffers/orc_messages_generated.h +4257 -0
- oproco-0.3.5/include/orc/control/Controller.h +13 -0
- oproco-0.3.5/include/orc/control/ControllerBases.h +79 -0
- oproco-0.3.5/include/orc/control/ControllerParameter.h +47 -0
- oproco-0.3.5/include/orc/control/ControllerType.h +15 -0
- oproco-0.3.5/include/orc/control/controller/CoulombFrictionCompController.h +64 -0
- oproco-0.3.5/include/orc/control/controller/FrictionCompController.h +96 -0
- oproco-0.3.5/include/orc/control/controller/GravityCompController.h +69 -0
- oproco-0.3.5/include/orc/control/controller/HybridForceMotionController.h +284 -0
- oproco-0.3.5/include/orc/control/controller/SingularPerturbationController.h +133 -0
- oproco-0.3.5/include/orc/control/controller/cartesian/CartesianCTController.h +121 -0
- oproco-0.3.5/include/orc/control/controller/joint/JointCTController.h +86 -0
- oproco-0.3.5/include/orc/control/controller/joint/JointPDPController.h +69 -0
- oproco-0.3.5/include/orc/control/controller/joint/VelocityController.h +38 -0
- oproco-0.3.5/include/orc/interpolator/Interpolator.h +7 -0
- oproco-0.3.5/include/orc/interpolator/InterpolatorBase.h +107 -0
- oproco-0.3.5/include/orc/interpolator/ManifoldInterpolatorBase.h +74 -0
- oproco-0.3.5/include/orc/interpolator/cartesian/CartesianPoseInterpolator.h +412 -0
- oproco-0.3.5/include/orc/interpolator/jointspace/SplineJointInterpolator.h +215 -0
- oproco-0.3.5/include/orc/robots/DummyRobot.h +30 -0
- oproco-0.3.5/include/orc/robots/Iiwa.h +275 -0
- oproco-0.3.5/include/orc/robots/Kinova.h +68 -0
- oproco-0.3.5/include/orc/robots/LinearAxis.h +77 -0
- oproco-0.3.5/include/orc/robots/Robot.h +856 -0
- oproco-0.3.5/include/orc/robots/RobotData.h +103 -0
- oproco-0.3.5/include/orc/sig/filter.h +128 -0
- oproco-0.3.5/include/orc/trajectory/CartesianVelocityTrajectory.h +98 -0
- oproco-0.3.5/include/orc/trajectory/DenseJointspaceTrajectory.h +257 -0
- oproco-0.3.5/include/orc/trajectory/HybridForceMotionTrajectory.h +120 -0
- oproco-0.3.5/include/orc/trajectory/JointspaceTrajectory.h +117 -0
- oproco-0.3.5/include/orc/trajectory/JointspaceVelocityTrajectory.h +96 -0
- oproco-0.3.5/include/orc/trajectory/TaskspaceTrajectory.h +118 -0
- oproco-0.3.5/include/orc/trajectory/Trajectories.h +26 -0
- oproco-0.3.5/include/orc/trajectory/TrajectoryBase.h +34 -0
- oproco-0.3.5/include/orc/trajectory/TrajectoryPointStorage.h +61 -0
- oproco-0.3.5/include/orc/trajectory/TrajectoryQueue.h +117 -0
- oproco-0.3.5/include/orc/trajectory/TrajectoryType.h +27 -0
- oproco-0.3.5/include/orc/trajectory/singleevent/CartesianCtrParamTrajectory.h +46 -0
- oproco-0.3.5/include/orc/trajectory/singleevent/JointCtrParamTrajectory.h +46 -0
- oproco-0.3.5/include/orc/trajectory/singleevent/NullspaceTrajectory.h +44 -0
- oproco-0.3.5/include/orc/util/.gitkeep +0 -0
- oproco-0.3.5/include/orc/util/Angle.h +16 -0
- oproco-0.3.5/include/orc/util/ExecutionTimer.h +110 -0
- oproco-0.3.5/include/orc/util/Logger.h +130 -0
- oproco-0.3.5/include/orc/util/Splines/Spline.h +507 -0
- oproco-0.3.5/include/orc/util/Splines/SplineFitting.h +479 -0
- oproco-0.3.5/include/orc/util/Splines/SplineFittingCustom.h +472 -0
- oproco-0.3.5/include/orc/util/Splines/SplineFwd.h +135 -0
- oproco-0.3.5/include/orc/util/Time.h +675 -0
- oproco-0.3.5/include/orc/util/eigen_tc_settings.h +42 -0
- oproco-0.3.5/include/orc/util/import_eigen.h +10 -0
- oproco-0.3.5/include/orc/util/import_flatbuffers.h +5 -0
- oproco-0.3.5/include/orc/util/import_mujoco.h +7 -0
- oproco-0.3.5/include/orc/util/quatutil.h +62 -0
- oproco-0.3.5/models/dummy_model.mjb +0 -0
- oproco-0.3.5/models/dummy_model.xml +21 -0
- oproco-0.3.5/models/generation_scripts/generate_iiwa_hanging_adapter_pen.py +49 -0
- oproco-0.3.5/models/generation_scripts/generate_iiwa_hanging_with_sponge.py +79 -0
- oproco-0.3.5/models/generation_scripts/generate_iiwa_meshed.py +47 -0
- oproco-0.3.5/models/generation_scripts/generate_kinova.py +42 -0
- oproco-0.3.5/models/generation_scripts/generate_pascal_bernoulli.py +27 -0
- oproco-0.3.5/models/generation_scripts/generate_pascal_with_pen.py +28 -0
- oproco-0.3.5/models/iiwa_hanging.mjb +0 -0
- oproco-0.3.5/models/iiwa_hanging.xml +73 -0
- oproco-0.3.5/models/iiwa_hanging_meshed.mjb +0 -0
- oproco-0.3.5/models/iiwa_standing.mjb +0 -0
- oproco-0.3.5/models/iiwa_standing.xml +101 -0
- oproco-0.3.5/models/iiwa_standing_meshed.mjb +0 -0
- oproco-0.3.5/models/kinova3.mjb +0 -0
- oproco-0.3.5/models/kinova3_box.mjb +0 -0
- oproco-0.3.5/models/linear_axis.mjb +0 -0
- oproco-0.3.5/models/linear_axis_meshless.mjb +0 -0
- oproco-0.3.5/models/linear_axis_meshless.xml +97 -0
- oproco-0.3.5/models/presets/.gitkeep +0 -0
- oproco-0.3.5/proto/orc_messages.fbs +264 -0
- oproco-0.3.5/pyproject.toml +110 -0
- oproco-0.3.5/python/.cibuildwheels.toml +75 -0
- oproco-0.3.5/python/CMakeLists.txt +99 -0
- oproco-0.3.5/python/__init__.py +12 -0
- oproco-0.3.5/python/api/Iiwa.py +150 -0
- oproco-0.3.5/python/api/Kinova.py +128 -0
- oproco-0.3.5/python/api/LinearAxis.py +101 -0
- oproco-0.3.5/python/api/Robot.py +471 -0
- oproco-0.3.5/python/api/Robot9DOF.py +107 -0
- oproco-0.3.5/python/api/__init__.py +47 -0
- oproco-0.3.5/python/api/_trajectory_sender.py +95 -0
- oproco-0.3.5/python/api/com/KinovaConnection.py +382 -0
- oproco-0.3.5/python/api/com/__init__.py +3 -0
- oproco-0.3.5/python/api/util_functions.py +186 -0
- oproco-0.3.5/python/core/__init__.py +2 -0
- oproco-0.3.5/python/core/py.typed +0 -0
- oproco-0.3.5/python/core/src/ControllerParameter_bindings.h +384 -0
- oproco-0.3.5/python/core/src/Iiwa_bindings.cpp +150 -0
- oproco-0.3.5/python/core/src/Kinova_bindings.cpp +84 -0
- oproco-0.3.5/python/core/src/LinearAxis_bindings.cpp +61 -0
- oproco-0.3.5/python/core/src/Logger_bindings.h +27 -0
- oproco-0.3.5/python/core/src/RobotData_bindings.h +50 -0
- oproco-0.3.5/python/core/src/RobotState_bindings.h +84 -0
- oproco-0.3.5/python/core/src/Robot_bindings.h +151 -0
- oproco-0.3.5/python/core/src/bindings.cpp +140 -0
- oproco-0.3.5/python/core/src/com/FlatBufferSerializer_bindings.h +191 -0
- oproco-0.3.5/python/core/src/interpolator/Interpolator_bindings.h +62 -0
- oproco-0.3.5/python/core/src/trajectory/HybridForceMotionTrajectory_bindings.h +34 -0
- oproco-0.3.5/src/Logger.cpp +147 -0
- oproco-0.3.5/src/dummy.cpp +0 -0
- oproco-0.3.5/tests/CMakeLists.txt +30 -0
- oproco-0.3.5/tests/Robot_test.cpp +49 -0
- oproco-0.3.5/tests/angle_test.cpp +169 -0
- oproco-0.3.5/tests/cartesian_interp_edge_test.cpp +193 -0
- oproco-0.3.5/tests/controller_edge_test.cpp +108 -0
- oproco-0.3.5/tests/controller_test.cpp +1059 -0
- oproco-0.3.5/tests/data/README.md +56 -0
- oproco-0.3.5/tests/dense_jointspace_trajectory_test.cpp +171 -0
- oproco-0.3.5/tests/exec_timer_test.cpp +26 -0
- oproco-0.3.5/tests/filter_edge_test.cpp +37 -0
- oproco-0.3.5/tests/filter_test.cpp +182 -0
- oproco-0.3.5/tests/flatbuffer_ctrparam_stop_test.cpp +405 -0
- oproco-0.3.5/tests/flatbuffer_velocity_hybrid_test.cpp +263 -0
- oproco-0.3.5/tests/hybrid_force_motion_test.cpp +55 -0
- oproco-0.3.5/tests/hybrid_trajectory_test.cpp +188 -0
- oproco-0.3.5/tests/iiwa_test.cpp +119 -0
- oproco-0.3.5/tests/interpolator_comprehensive_test.cpp +2481 -0
- oproco-0.3.5/tests/interpolator_test.cpp +543 -0
- oproco-0.3.5/tests/main_test.cpp +6 -0
- oproco-0.3.5/tests/model_loading_tests.cpp +50 -0
- oproco-0.3.5/tests/plot_interp.py +124 -0
- oproco-0.3.5/tests/plot_traj_discontinuity.py +121 -0
- oproco-0.3.5/tests/python/test_bindings_attr_names.py +62 -0
- oproco-0.3.5/tests/python/test_bindings_dynamic.py +60 -0
- oproco-0.3.5/tests/python/test_bindings_static.py +113 -0
- oproco-0.3.5/tests/python/test_example_paths.py +148 -0
- oproco-0.3.5/tests/python/test_robot_ctor_parity.py +47 -0
- oproco-0.3.5/tests/quatutil_test.cpp +130 -0
- oproco-0.3.5/tests/robot_state_test.cpp +142 -0
- oproco-0.3.5/tests/robot_traits_test.cpp +82 -0
- oproco-0.3.5/tests/robot_update_test.cpp +372 -0
- oproco-0.3.5/tests/robot_validation_test.cpp +32 -0
- oproco-0.3.5/tests/serialization_roundtrip_test.cpp +284 -0
- oproco-0.3.5/tests/serialization_splitting_test.cpp +297 -0
- oproco-0.3.5/tests/singleevent_trajectory_test.cpp +156 -0
- oproco-0.3.5/tests/spline_fitting_test.cpp +69 -0
- oproco-0.3.5/tests/taskspace_trajectory_test.cpp +430 -0
- oproco-0.3.5/tests/test_constants.h +2 -0
- oproco-0.3.5/tests/test_helpers.h +103 -0
- oproco-0.3.5/tests/time_arith_test.cpp +30 -0
- oproco-0.3.5/tests/time_comprehensive_test.cpp +379 -0
- oproco-0.3.5/tests/time_test.cpp +257 -0
- oproco-0.3.5/tests/traj_discontinuity_test.cpp +303 -0
- oproco-0.3.5/tests/traj_handoff_test.cpp +68 -0
- oproco-0.3.5/tests/trajectory_comprehensive_test.cpp +217 -0
- oproco-0.3.5/tests/trajectory_test.cpp +221 -0
- oproco-0.3.5/tests/trajqueue_test.cpp +71 -0
- oproco-0.3.5/third_party/flatbuffers/.bazelci/presubmit.yml +60 -0
- oproco-0.3.5/third_party/flatbuffers/.bazelignore +5 -0
- oproco-0.3.5/third_party/flatbuffers/.bazelrc +18 -0
- oproco-0.3.5/third_party/flatbuffers/.clang-format +5 -0
- oproco-0.3.5/third_party/flatbuffers/.clang-tidy +347 -0
- oproco-0.3.5/third_party/flatbuffers/.editorconfig +8 -0
- oproco-0.3.5/third_party/flatbuffers/.gitattributes +2 -0
- oproco-0.3.5/third_party/flatbuffers/.github/CODEOWNERS +5 -0
- oproco-0.3.5/third_party/flatbuffers/.github/ISSUE_TEMPLATE/404-doc.md +11 -0
- oproco-0.3.5/third_party/flatbuffers/.github/ISSUE_TEMPLATE.md +12 -0
- oproco-0.3.5/third_party/flatbuffers/.github/PULL_REQUEST_TEMPLATE.md +19 -0
- oproco-0.3.5/third_party/flatbuffers/.github/labeler.yml +137 -0
- oproco-0.3.5/third_party/flatbuffers/.github/workflows/docs.yml +36 -0
- oproco-0.3.5/third_party/flatbuffers/.github/workflows/label.yml +24 -0
- oproco-0.3.5/third_party/flatbuffers/.github/workflows/main.yml +34 -0
- oproco-0.3.5/third_party/flatbuffers/.github/workflows/release.yml +152 -0
- oproco-0.3.5/third_party/flatbuffers/.github/workflows/stale.yml +37 -0
- oproco-0.3.5/third_party/flatbuffers/.gitignore +162 -0
- oproco-0.3.5/third_party/flatbuffers/.npmrc +1 -0
- oproco-0.3.5/third_party/flatbuffers/BUILD.bazel +127 -0
- oproco-0.3.5/third_party/flatbuffers/CHANGELOG.md +201 -0
- oproco-0.3.5/third_party/flatbuffers/CMake/BuildFlatBuffers.cmake +448 -0
- oproco-0.3.5/third_party/flatbuffers/CMake/DESCRIPTION.txt +4 -0
- oproco-0.3.5/third_party/flatbuffers/CMake/FindFlatBuffers.cmake +61 -0
- oproco-0.3.5/third_party/flatbuffers/CMake/PackageDebian.cmake +25 -0
- oproco-0.3.5/third_party/flatbuffers/CMake/PackageRedhat.cmake +44 -0
- oproco-0.3.5/third_party/flatbuffers/CMake/Version.cmake +39 -0
- oproco-0.3.5/third_party/flatbuffers/CMake/flatbuffers-config-version.cmake.in +11 -0
- oproco-0.3.5/third_party/flatbuffers/CMake/flatbuffers-config.cmake +4 -0
- oproco-0.3.5/third_party/flatbuffers/CMake/flatbuffers.pc.in +9 -0
- oproco-0.3.5/third_party/flatbuffers/CMakeLists.txt +732 -0
- oproco-0.3.5/third_party/flatbuffers/CONTRIBUTING.md +65 -0
- oproco-0.3.5/third_party/flatbuffers/FlatBuffers.podspec +24 -0
- oproco-0.3.5/third_party/flatbuffers/Formatters.md +22 -0
- oproco-0.3.5/third_party/flatbuffers/LICENSE +202 -0
- oproco-0.3.5/third_party/flatbuffers/MODULE.bazel +78 -0
- oproco-0.3.5/third_party/flatbuffers/Package.swift +80 -0
- oproco-0.3.5/third_party/flatbuffers/README.md +116 -0
- oproco-0.3.5/third_party/flatbuffers/SECURITY.md +11 -0
- oproco-0.3.5/third_party/flatbuffers/android/AndroidManifest.xml +31 -0
- oproco-0.3.5/third_party/flatbuffers/android/app/.gitignore +1 -0
- oproco-0.3.5/third_party/flatbuffers/android/app/src/main/AndroidManifest.xml +21 -0
- oproco-0.3.5/third_party/flatbuffers/android/app/src/main/cpp/CMakeLists.txt +53 -0
- oproco-0.3.5/third_party/flatbuffers/android/app/src/main/cpp/animals.cpp +41 -0
- oproco-0.3.5/third_party/flatbuffers/android/app/src/main/cpp/flatbuffers/CMakeLists.txt +56 -0
- oproco-0.3.5/third_party/flatbuffers/android/app/src/main/cpp/generated/animal_generated.h +119 -0
- oproco-0.3.5/third_party/flatbuffers/android/app/src/main/fbs/animal.fbs +23 -0
- oproco-0.3.5/third_party/flatbuffers/android/app/src/main/java/com/flatbuffers/app/MainActivity.kt +52 -0
- oproco-0.3.5/third_party/flatbuffers/android/app/src/main/java/generated/com/fbs/app/Animal.kt +102 -0
- oproco-0.3.5/third_party/flatbuffers/android/app/src/main/res/drawable/ic_launcher_background.xml +170 -0
- oproco-0.3.5/third_party/flatbuffers/android/app/src/main/res/drawable-v24/ic_launcher_foreground.xml +30 -0
- oproco-0.3.5/third_party/flatbuffers/android/app/src/main/res/layout/activity_main.xml +23 -0
- oproco-0.3.5/third_party/flatbuffers/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml +5 -0
- oproco-0.3.5/third_party/flatbuffers/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml +5 -0
- oproco-0.3.5/third_party/flatbuffers/android/app/src/main/res/mipmap-hdpi/ic_launcher.png +0 -0
- oproco-0.3.5/third_party/flatbuffers/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png +0 -0
- oproco-0.3.5/third_party/flatbuffers/android/app/src/main/res/mipmap-mdpi/ic_launcher.png +0 -0
- oproco-0.3.5/third_party/flatbuffers/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png +0 -0
- oproco-0.3.5/third_party/flatbuffers/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png +0 -0
- oproco-0.3.5/third_party/flatbuffers/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png +0 -0
- oproco-0.3.5/third_party/flatbuffers/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png +0 -0
- oproco-0.3.5/third_party/flatbuffers/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png +0 -0
- oproco-0.3.5/third_party/flatbuffers/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png +0 -0
- oproco-0.3.5/third_party/flatbuffers/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png +0 -0
- oproco-0.3.5/third_party/flatbuffers/android/app/src/main/res/values/colors.xml +6 -0
- oproco-0.3.5/third_party/flatbuffers/android/app/src/main/res/values/strings.xml +3 -0
- oproco-0.3.5/third_party/flatbuffers/android/app/src/main/res/values/styles.xml +10 -0
- oproco-0.3.5/third_party/flatbuffers/android/gradle/wrapper/gradle-wrapper.jar +0 -0
- oproco-0.3.5/third_party/flatbuffers/android/gradle/wrapper/gradle-wrapper.properties +5 -0
- oproco-0.3.5/third_party/flatbuffers/android/gradle.properties +23 -0
- oproco-0.3.5/third_party/flatbuffers/android/gradlew +172 -0
- oproco-0.3.5/third_party/flatbuffers/android/gradlew.bat +84 -0
- oproco-0.3.5/third_party/flatbuffers/android/settings.gradle +2 -0
- oproco-0.3.5/third_party/flatbuffers/bazel/BUILD.bazel +0 -0
- oproco-0.3.5/third_party/flatbuffers/benchmarks/CMakeLists.txt +88 -0
- oproco-0.3.5/third_party/flatbuffers/benchmarks/cpp/bench.h +19 -0
- oproco-0.3.5/third_party/flatbuffers/benchmarks/cpp/benchmark_main.cpp +98 -0
- oproco-0.3.5/third_party/flatbuffers/benchmarks/cpp/flatbuffers/bench.fbs +52 -0
- oproco-0.3.5/third_party/flatbuffers/benchmarks/cpp/flatbuffers/bench_generated.h +317 -0
- oproco-0.3.5/third_party/flatbuffers/benchmarks/cpp/flatbuffers/fb_bench.cpp +80 -0
- oproco-0.3.5/third_party/flatbuffers/benchmarks/cpp/flatbuffers/fb_bench.h +23 -0
- oproco-0.3.5/third_party/flatbuffers/benchmarks/cpp/raw/raw_bench.cpp +109 -0
- oproco-0.3.5/third_party/flatbuffers/benchmarks/cpp/raw/raw_bench.h +10 -0
- oproco-0.3.5/third_party/flatbuffers/benchmarks/swift/Benchmarks/FlatbuffersBenchmarks/FlatbuffersBenchmarks.swift +250 -0
- oproco-0.3.5/third_party/flatbuffers/benchmarks/swift/Package.swift +42 -0
- oproco-0.3.5/third_party/flatbuffers/benchmarks/swift/README.md +9 -0
- oproco-0.3.5/third_party/flatbuffers/composer.json +18 -0
- oproco-0.3.5/third_party/flatbuffers/dart/CHANGELOG.md +52 -0
- oproco-0.3.5/third_party/flatbuffers/dart/LICENSE +201 -0
- oproco-0.3.5/third_party/flatbuffers/dart/README.md +15 -0
- oproco-0.3.5/third_party/flatbuffers/dart/analysis_options.yaml +1 -0
- oproco-0.3.5/third_party/flatbuffers/dart/example/example.dart +159 -0
- oproco-0.3.5/third_party/flatbuffers/dart/example/monster_my_game.sample_generated.dart +441 -0
- oproco-0.3.5/third_party/flatbuffers/dart/lib/flat_buffers.dart +1517 -0
- oproco-0.3.5/third_party/flatbuffers/dart/lib/flex_buffers.dart +2 -0
- oproco-0.3.5/third_party/flatbuffers/dart/lib/src/builder.dart +707 -0
- oproco-0.3.5/third_party/flatbuffers/dart/lib/src/reference.dart +518 -0
- oproco-0.3.5/third_party/flatbuffers/dart/lib/src/types.dart +197 -0
- oproco-0.3.5/third_party/flatbuffers/dart/publish.sh +36 -0
- oproco-0.3.5/third_party/flatbuffers/dart/pubspec.yaml +14 -0
- oproco-0.3.5/third_party/flatbuffers/dart/test/bool_structs.fbs +10 -0
- oproco-0.3.5/third_party/flatbuffers/dart/test/bool_structs_generated.dart +195 -0
- oproco-0.3.5/third_party/flatbuffers/dart/test/enums.fbs +10 -0
- oproco-0.3.5/third_party/flatbuffers/dart/test/enums_generated.dart +153 -0
- oproco-0.3.5/third_party/flatbuffers/dart/test/flat_buffers_test.dart +1024 -0
- oproco-0.3.5/third_party/flatbuffers/dart/test/flex_builder_test.dart +647 -0
- oproco-0.3.5/third_party/flatbuffers/dart/test/flex_reader_test.dart +1032 -0
- oproco-0.3.5/third_party/flatbuffers/dart/test/flex_types_test.dart +278 -0
- oproco-0.3.5/third_party/flatbuffers/dart/test/include_test1_generated.dart +108 -0
- oproco-0.3.5/third_party/flatbuffers/dart/test/include_test2_my_game.other_name_space_generated.dart +221 -0
- oproco-0.3.5/third_party/flatbuffers/dart/test/keyword_test_keyword_test_generated.dart +370 -0
- oproco-0.3.5/third_party/flatbuffers/dart/test/monster_test.fbs +180 -0
- oproco-0.3.5/third_party/flatbuffers/dart/test/monster_test_my_game.example2_generated.dart +77 -0
- oproco-0.3.5/third_party/flatbuffers/dart/test/monster_test_my_game.example_generated.dart +2659 -0
- oproco-0.3.5/third_party/flatbuffers/dart/test/monster_test_my_game_generated.dart +77 -0
- oproco-0.3.5/third_party/flatbuffers/dart/test/monsterdata_test.mon +0 -0
- oproco-0.3.5/third_party/flatbuffers/docs/README.md +24 -0
- oproco-0.3.5/third_party/flatbuffers/docs/mkdocs.yml +159 -0
- oproco-0.3.5/third_party/flatbuffers/docs/overrides/404.html +10 -0
- oproco-0.3.5/third_party/flatbuffers/docs/overrides/main.html +1 -0
- oproco-0.3.5/third_party/flatbuffers/docs/source/CNAME +1 -0
- oproco-0.3.5/third_party/flatbuffers/docs/source/annotation.md +149 -0
- oproco-0.3.5/third_party/flatbuffers/docs/source/assets/flatbuffers_logo.svg +318 -0
- oproco-0.3.5/third_party/flatbuffers/docs/source/benchmarks.md +63 -0
- oproco-0.3.5/third_party/flatbuffers/docs/source/building.md +188 -0
- oproco-0.3.5/third_party/flatbuffers/docs/source/contributing.md +80 -0
- oproco-0.3.5/third_party/flatbuffers/docs/source/evolution.md +276 -0
- oproco-0.3.5/third_party/flatbuffers/docs/source/flatc.md +309 -0
- oproco-0.3.5/third_party/flatbuffers/docs/source/flexbuffers.md +204 -0
- oproco-0.3.5/third_party/flatbuffers/docs/source/grammar.md +73 -0
- oproco-0.3.5/third_party/flatbuffers/docs/source/index.md +59 -0
- oproco-0.3.5/third_party/flatbuffers/docs/source/intermediate_representation.md +35 -0
- oproco-0.3.5/third_party/flatbuffers/docs/source/internals.md +466 -0
- oproco-0.3.5/third_party/flatbuffers/docs/source/languages/c.md +224 -0
- oproco-0.3.5/third_party/flatbuffers/docs/source/languages/c_sharp.md +265 -0
- oproco-0.3.5/third_party/flatbuffers/docs/source/languages/cpp.md +708 -0
- oproco-0.3.5/third_party/flatbuffers/docs/source/languages/dart.md +131 -0
- oproco-0.3.5/third_party/flatbuffers/docs/source/languages/go.md +99 -0
- oproco-0.3.5/third_party/flatbuffers/docs/source/languages/java.md +114 -0
- oproco-0.3.5/third_party/flatbuffers/docs/source/languages/javascript.md +93 -0
- oproco-0.3.5/third_party/flatbuffers/docs/source/languages/kotlin.md +84 -0
- oproco-0.3.5/third_party/flatbuffers/docs/source/languages/lobster.md +85 -0
- oproco-0.3.5/third_party/flatbuffers/docs/source/languages/lua.md +81 -0
- oproco-0.3.5/third_party/flatbuffers/docs/source/languages/php.md +89 -0
- oproco-0.3.5/third_party/flatbuffers/docs/source/languages/python.md +100 -0
- oproco-0.3.5/third_party/flatbuffers/docs/source/languages/rust.md +214 -0
- oproco-0.3.5/third_party/flatbuffers/docs/source/languages/swift.md +97 -0
- oproco-0.3.5/third_party/flatbuffers/docs/source/languages/typescript.md +96 -0
- oproco-0.3.5/third_party/flatbuffers/docs/source/quick_start.md +90 -0
- oproco-0.3.5/third_party/flatbuffers/docs/source/schema.md +645 -0
- oproco-0.3.5/third_party/flatbuffers/docs/source/support.md +57 -0
- oproco-0.3.5/third_party/flatbuffers/docs/source/tutorial.md +2996 -0
- oproco-0.3.5/third_party/flatbuffers/docs/source/white_paper.md +128 -0
- oproco-0.3.5/third_party/flatbuffers/eslint.config.mjs +10 -0
- oproco-0.3.5/third_party/flatbuffers/examples/go-echo/README.md +27 -0
- oproco-0.3.5/third_party/flatbuffers/examples/go-echo/client/client.go +51 -0
- oproco-0.3.5/third_party/flatbuffers/examples/go-echo/hero/Warrior.go +100 -0
- oproco-0.3.5/third_party/flatbuffers/examples/go-echo/hero.fbs +6 -0
- oproco-0.3.5/third_party/flatbuffers/examples/go-echo/net/Request.go +86 -0
- oproco-0.3.5/third_party/flatbuffers/examples/go-echo/net/Response.go +86 -0
- oproco-0.3.5/third_party/flatbuffers/examples/go-echo/net.fbs +11 -0
- oproco-0.3.5/third_party/flatbuffers/examples/go-echo/server/server.go +29 -0
- oproco-0.3.5/third_party/flatbuffers/extensions.bzl +19 -0
- oproco-0.3.5/third_party/flatbuffers/go/BUILD.bazel +23 -0
- oproco-0.3.5/third_party/flatbuffers/go/builder.go +860 -0
- oproco-0.3.5/third_party/flatbuffers/go/doc.go +3 -0
- oproco-0.3.5/third_party/flatbuffers/go/encode.go +238 -0
- oproco-0.3.5/third_party/flatbuffers/go/grpc.go +62 -0
- oproco-0.3.5/third_party/flatbuffers/go/lib.go +50 -0
- oproco-0.3.5/third_party/flatbuffers/go/sizes.go +55 -0
- oproco-0.3.5/third_party/flatbuffers/go/struct.go +8 -0
- oproco-0.3.5/third_party/flatbuffers/go/table.go +520 -0
- oproco-0.3.5/third_party/flatbuffers/goldens/README.md +26 -0
- oproco-0.3.5/third_party/flatbuffers/goldens/cpp/basic_generated.h +167 -0
- oproco-0.3.5/third_party/flatbuffers/goldens/cpp/generate.py +10 -0
- oproco-0.3.5/third_party/flatbuffers/goldens/csharp/flatbuffers/goldens/Galaxy.cs +50 -0
- oproco-0.3.5/third_party/flatbuffers/goldens/csharp/flatbuffers/goldens/Universe.cs +64 -0
- oproco-0.3.5/third_party/flatbuffers/goldens/csharp/generate.py +10 -0
- oproco-0.3.5/third_party/flatbuffers/goldens/dart/basic_flatbuffers.goldens_generated.dart +163 -0
- oproco-0.3.5/third_party/flatbuffers/goldens/dart/generate.py +10 -0
- oproco-0.3.5/third_party/flatbuffers/goldens/generate_goldens.py +32 -0
- oproco-0.3.5/third_party/flatbuffers/goldens/go/flatbuffers/goldens/Galaxy.go +64 -0
- oproco-0.3.5/third_party/flatbuffers/goldens/go/flatbuffers/goldens/Universe.go +90 -0
- oproco-0.3.5/third_party/flatbuffers/goldens/go/generate.py +10 -0
- oproco-0.3.5/third_party/flatbuffers/goldens/golden_utils.py +30 -0
- oproco-0.3.5/third_party/flatbuffers/goldens/java/flatbuffers/goldens/Galaxy.java +52 -0
- oproco-0.3.5/third_party/flatbuffers/goldens/java/flatbuffers/goldens/Universe.java +64 -0
- oproco-0.3.5/third_party/flatbuffers/goldens/java/generate.py +10 -0
- oproco-0.3.5/third_party/flatbuffers/goldens/kotlin/flatbuffers/goldens/Galaxy.kt +55 -0
- oproco-0.3.5/third_party/flatbuffers/goldens/kotlin/flatbuffers/goldens/Universe.kt +80 -0
- oproco-0.3.5/third_party/flatbuffers/goldens/kotlin/generate.py +10 -0
- oproco-0.3.5/third_party/flatbuffers/goldens/lobster/basic_generated.lobster +57 -0
- oproco-0.3.5/third_party/flatbuffers/goldens/lobster/generate.py +10 -0
- oproco-0.3.5/third_party/flatbuffers/goldens/lua/Galaxy.lua +48 -0
- oproco-0.3.5/third_party/flatbuffers/goldens/lua/Universe.lua +88 -0
- oproco-0.3.5/third_party/flatbuffers/goldens/lua/generate.py +10 -0
- oproco-0.3.5/third_party/flatbuffers/goldens/nim/Galaxy.nim +26 -0
- oproco-0.3.5/third_party/flatbuffers/goldens/nim/Universe.nim +46 -0
- oproco-0.3.5/third_party/flatbuffers/goldens/nim/generate.py +10 -0
- oproco-0.3.5/third_party/flatbuffers/goldens/php/flatbuffers/goldens/Galaxy.php +84 -0
- oproco-0.3.5/third_party/flatbuffers/goldens/php/flatbuffers/goldens/Universe.php +143 -0
- oproco-0.3.5/third_party/flatbuffers/goldens/php/generate.py +10 -0
- oproco-0.3.5/third_party/flatbuffers/goldens/py/__init__.py +0 -0
- oproco-0.3.5/third_party/flatbuffers/goldens/py/flatbuffers/__init__.py +0 -0
- oproco-0.3.5/third_party/flatbuffers/goldens/py/flatbuffers/goldens/Galaxy.py +50 -0
- oproco-0.3.5/third_party/flatbuffers/goldens/py/flatbuffers/goldens/Universe.py +93 -0
- oproco-0.3.5/third_party/flatbuffers/goldens/py/flatbuffers/goldens/__init__.py +0 -0
- oproco-0.3.5/third_party/flatbuffers/goldens/py/generate.py +10 -0
- oproco-0.3.5/third_party/flatbuffers/goldens/rust/basic_generated.rs +297 -0
- oproco-0.3.5/third_party/flatbuffers/goldens/rust/generate.py +10 -0
- oproco-0.3.5/third_party/flatbuffers/goldens/schema/basic.fbs +15 -0
- oproco-0.3.5/third_party/flatbuffers/goldens/swift/__init__.py +0 -0
- oproco-0.3.5/third_party/flatbuffers/goldens/swift/basic_generated.swift +86 -0
- oproco-0.3.5/third_party/flatbuffers/goldens/swift/generate.py +10 -0
- oproco-0.3.5/third_party/flatbuffers/goldens/ts/basic.ts +6 -0
- oproco-0.3.5/third_party/flatbuffers/goldens/ts/flatbuffers/goldens/galaxy.ts +48 -0
- oproco-0.3.5/third_party/flatbuffers/goldens/ts/flatbuffers/goldens/universe.ts +86 -0
- oproco-0.3.5/third_party/flatbuffers/goldens/ts/flatbuffers/goldens.ts +6 -0
- oproco-0.3.5/third_party/flatbuffers/goldens/ts/generate.py +10 -0
- oproco-0.3.5/third_party/flatbuffers/grpc/BUILD.bazel +0 -0
- oproco-0.3.5/third_party/flatbuffers/grpc/README.md +101 -0
- oproco-0.3.5/third_party/flatbuffers/grpc/boringssl.patch +41 -0
- oproco-0.3.5/third_party/flatbuffers/grpc/examples/README.md +35 -0
- oproco-0.3.5/third_party/flatbuffers/grpc/examples/go/format.sh +36 -0
- oproco-0.3.5/third_party/flatbuffers/grpc/examples/go/greeter/.gitignore +2 -0
- oproco-0.3.5/third_party/flatbuffers/grpc/examples/go/greeter/README.md +25 -0
- oproco-0.3.5/third_party/flatbuffers/grpc/examples/go/greeter/models/Greeter_grpc.go +158 -0
- oproco-0.3.5/third_party/flatbuffers/grpc/examples/go/greeter/models/HelloReply.go +60 -0
- oproco-0.3.5/third_party/flatbuffers/grpc/examples/go/greeter/models/HelloRequest.go +60 -0
- oproco-0.3.5/third_party/flatbuffers/grpc/examples/greeter.fbs +14 -0
- oproco-0.3.5/third_party/flatbuffers/grpc/examples/python/greeter/README.md +12 -0
- oproco-0.3.5/third_party/flatbuffers/grpc/examples/python/greeter/client.py +46 -0
- oproco-0.3.5/third_party/flatbuffers/grpc/examples/python/greeter/greeter_grpc.fb.py +52 -0
- oproco-0.3.5/third_party/flatbuffers/grpc/examples/python/greeter/models/HelloReply.py +50 -0
- oproco-0.3.5/third_party/flatbuffers/grpc/examples/python/greeter/models/HelloRequest.py +50 -0
- oproco-0.3.5/third_party/flatbuffers/grpc/examples/python/greeter/models/__init__.py +0 -0
- oproco-0.3.5/third_party/flatbuffers/grpc/examples/python/greeter/models/greeter_grpc_fb.py +54 -0
- oproco-0.3.5/third_party/flatbuffers/grpc/examples/python/greeter/server.py +58 -0
- oproco-0.3.5/third_party/flatbuffers/grpc/examples/swift/Greeter/Package.swift +58 -0
- oproco-0.3.5/third_party/flatbuffers/grpc/examples/swift/Greeter/README.md +7 -0
- oproco-0.3.5/third_party/flatbuffers/grpc/examples/swift/Greeter/Sources/Model/greeter.grpc.swift +147 -0
- oproco-0.3.5/third_party/flatbuffers/grpc/examples/swift/Greeter/Sources/Model/greeter_generated.swift +104 -0
- oproco-0.3.5/third_party/flatbuffers/grpc/examples/swift/Greeter/Sources/client/main.swift +108 -0
- oproco-0.3.5/third_party/flatbuffers/grpc/examples/swift/Greeter/Sources/server/main.swift +97 -0
- oproco-0.3.5/third_party/flatbuffers/grpc/examples/ts/greeter/README.md +13 -0
- oproco-0.3.5/third_party/flatbuffers/grpc/examples/ts/greeter/package.json +14 -0
- oproco-0.3.5/third_party/flatbuffers/grpc/examples/ts/greeter/src/client.ts +39 -0
- oproco-0.3.5/third_party/flatbuffers/grpc/examples/ts/greeter/src/greeter.ts +5 -0
- oproco-0.3.5/third_party/flatbuffers/grpc/examples/ts/greeter/src/greeter_generated.ts +4 -0
- oproco-0.3.5/third_party/flatbuffers/grpc/examples/ts/greeter/src/greeter_grpc.d.ts +56 -0
- oproco-0.3.5/third_party/flatbuffers/grpc/examples/ts/greeter/src/greeter_grpc.js +56 -0
- oproco-0.3.5/third_party/flatbuffers/grpc/examples/ts/greeter/src/models/hello-reply.ts +60 -0
- oproco-0.3.5/third_party/flatbuffers/grpc/examples/ts/greeter/src/models/hello-request.ts +60 -0
- oproco-0.3.5/third_party/flatbuffers/grpc/examples/ts/greeter/src/models.ts +6 -0
- oproco-0.3.5/third_party/flatbuffers/grpc/examples/ts/greeter/src/server.ts +63 -0
- oproco-0.3.5/third_party/flatbuffers/grpc/examples/ts/greeter/tsconfig.json +17 -0
- oproco-0.3.5/third_party/flatbuffers/grpc/flatbuffers-java-grpc/pom.xml +42 -0
- oproco-0.3.5/third_party/flatbuffers/grpc/flatbuffers-java-grpc/src/main/java/com/google/flatbuffers/grpc/FlatbuffersUtils.java +117 -0
- oproco-0.3.5/third_party/flatbuffers/grpc/pom.xml +219 -0
- oproco-0.3.5/third_party/flatbuffers/grpc/samples/greeter/client.cpp +85 -0
- oproco-0.3.5/third_party/flatbuffers/grpc/samples/greeter/greeter.fbs +17 -0
- oproco-0.3.5/third_party/flatbuffers/grpc/samples/greeter/server.cpp +81 -0
- oproco-0.3.5/third_party/flatbuffers/grpc/src/compiler/BUILD.bazel +133 -0
- oproco-0.3.5/third_party/flatbuffers/grpc/src/compiler/cpp_generator.cc +2042 -0
- oproco-0.3.5/third_party/flatbuffers/grpc/src/compiler/cpp_generator.h +110 -0
- oproco-0.3.5/third_party/flatbuffers/grpc/src/compiler/go_generator.cc +516 -0
- oproco-0.3.5/third_party/flatbuffers/grpc/src/compiler/go_generator.h +33 -0
- oproco-0.3.5/third_party/flatbuffers/grpc/src/compiler/java_generator.cc +1139 -0
- oproco-0.3.5/third_party/flatbuffers/grpc/src/compiler/java_generator.h +86 -0
- oproco-0.3.5/third_party/flatbuffers/grpc/src/compiler/python_generator.cc +412 -0
- oproco-0.3.5/third_party/flatbuffers/grpc/src/compiler/python_generator.h +39 -0
- oproco-0.3.5/third_party/flatbuffers/grpc/src/compiler/schema_interface.h +119 -0
- oproco-0.3.5/third_party/flatbuffers/grpc/src/compiler/swift_generator.cc +443 -0
- oproco-0.3.5/third_party/flatbuffers/grpc/src/compiler/swift_generator.h +37 -0
- oproco-0.3.5/third_party/flatbuffers/grpc/src/compiler/ts_generator.cc +529 -0
- oproco-0.3.5/third_party/flatbuffers/grpc/src/compiler/ts_generator.h +26 -0
- oproco-0.3.5/third_party/flatbuffers/grpc/tests/BUILD +43 -0
- oproco-0.3.5/third_party/flatbuffers/grpc/tests/GameFactory.java +42 -0
- oproco-0.3.5/third_party/flatbuffers/grpc/tests/JavaGrpcTest.java +252 -0
- oproco-0.3.5/third_party/flatbuffers/grpc/tests/go_test.go +102 -0
- oproco-0.3.5/third_party/flatbuffers/grpc/tests/grpctest.cpp +195 -0
- oproco-0.3.5/third_party/flatbuffers/grpc/tests/grpctest.py +176 -0
- oproco-0.3.5/third_party/flatbuffers/grpc/tests/grpctest_callback_client_compile.cpp +60 -0
- oproco-0.3.5/third_party/flatbuffers/grpc/tests/grpctest_callback_compile.cpp +22 -0
- oproco-0.3.5/third_party/flatbuffers/grpc/tests/java-grpc-test.sh +4 -0
- oproco-0.3.5/third_party/flatbuffers/grpc/tests/message_builder_test.cpp +377 -0
- oproco-0.3.5/third_party/flatbuffers/grpc/tests/pom.xml +73 -0
- oproco-0.3.5/third_party/flatbuffers/include/codegen/BUILD.bazel +39 -0
- oproco-0.3.5/third_party/flatbuffers/include/codegen/idl_namer.h +181 -0
- oproco-0.3.5/third_party/flatbuffers/include/codegen/namer.h +286 -0
- oproco-0.3.5/third_party/flatbuffers/include/codegen/python.cc +79 -0
- oproco-0.3.5/third_party/flatbuffers/include/codegen/python.h +100 -0
- oproco-0.3.5/third_party/flatbuffers/include/flatbuffers/allocator.h +68 -0
- oproco-0.3.5/third_party/flatbuffers/include/flatbuffers/array.h +258 -0
- oproco-0.3.5/third_party/flatbuffers/include/flatbuffers/base.h +503 -0
- oproco-0.3.5/third_party/flatbuffers/include/flatbuffers/buffer.h +225 -0
- oproco-0.3.5/third_party/flatbuffers/include/flatbuffers/buffer_ref.h +54 -0
- oproco-0.3.5/third_party/flatbuffers/include/flatbuffers/code_generator.h +99 -0
- oproco-0.3.5/third_party/flatbuffers/include/flatbuffers/code_generators.h +238 -0
- oproco-0.3.5/third_party/flatbuffers/include/flatbuffers/default_allocator.h +64 -0
- oproco-0.3.5/third_party/flatbuffers/include/flatbuffers/detached_buffer.h +121 -0
- oproco-0.3.5/third_party/flatbuffers/include/flatbuffers/file_manager.h +70 -0
- oproco-0.3.5/third_party/flatbuffers/include/flatbuffers/flatbuffer_builder.h +1518 -0
- oproco-0.3.5/third_party/flatbuffers/include/flatbuffers/flatbuffers.h +284 -0
- oproco-0.3.5/third_party/flatbuffers/include/flatbuffers/flatc.h +131 -0
- oproco-0.3.5/third_party/flatbuffers/include/flatbuffers/flex_flat_util.h +37 -0
- oproco-0.3.5/third_party/flatbuffers/include/flatbuffers/flexbuffers.h +2072 -0
- oproco-0.3.5/third_party/flatbuffers/include/flatbuffers/grpc.h +303 -0
- oproco-0.3.5/third_party/flatbuffers/include/flatbuffers/hash.h +135 -0
- oproco-0.3.5/third_party/flatbuffers/include/flatbuffers/idl.h +1329 -0
- oproco-0.3.5/third_party/flatbuffers/include/flatbuffers/minireflect.h +441 -0
- oproco-0.3.5/third_party/flatbuffers/include/flatbuffers/pch/flatc_pch.h +39 -0
- oproco-0.3.5/third_party/flatbuffers/include/flatbuffers/pch/pch.h +38 -0
- oproco-0.3.5/third_party/flatbuffers/include/flatbuffers/reflection.h +528 -0
- oproco-0.3.5/third_party/flatbuffers/include/flatbuffers/reflection_generated.h +1541 -0
- oproco-0.3.5/third_party/flatbuffers/include/flatbuffers/registry.h +130 -0
- oproco-0.3.5/third_party/flatbuffers/include/flatbuffers/stl_emulation.h +516 -0
- oproco-0.3.5/third_party/flatbuffers/include/flatbuffers/string.h +69 -0
- oproco-0.3.5/third_party/flatbuffers/include/flatbuffers/struct.h +55 -0
- oproco-0.3.5/third_party/flatbuffers/include/flatbuffers/table.h +263 -0
- oproco-0.3.5/third_party/flatbuffers/include/flatbuffers/util.h +781 -0
- oproco-0.3.5/third_party/flatbuffers/include/flatbuffers/vector.h +455 -0
- oproco-0.3.5/third_party/flatbuffers/include/flatbuffers/vector_downward.h +298 -0
- oproco-0.3.5/third_party/flatbuffers/include/flatbuffers/verifier.h +370 -0
- oproco-0.3.5/third_party/flatbuffers/java/pom.xml +197 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/main/java/com/google/flatbuffers/ArrayReadWriteBuf.java +250 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/main/java/com/google/flatbuffers/BaseVector.java +97 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/main/java/com/google/flatbuffers/BooleanVector.java +47 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/main/java/com/google/flatbuffers/ByteBufferReadWriteBuf.java +169 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/main/java/com/google/flatbuffers/ByteBufferUtil.java +54 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/main/java/com/google/flatbuffers/ByteVector.java +58 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/main/java/com/google/flatbuffers/Constants.java +57 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/main/java/com/google/flatbuffers/DoubleVector.java +47 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/main/java/com/google/flatbuffers/FlatBufferBuilder.java +1168 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/main/java/com/google/flatbuffers/FlexBuffers.java +1303 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/main/java/com/google/flatbuffers/FlexBuffersBuilder.java +838 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/main/java/com/google/flatbuffers/FloatVector.java +47 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/main/java/com/google/flatbuffers/IntVector.java +58 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/main/java/com/google/flatbuffers/LongVector.java +47 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/main/java/com/google/flatbuffers/ReadBuf.java +87 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/main/java/com/google/flatbuffers/ReadWriteBuf.java +149 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/main/java/com/google/flatbuffers/ShortVector.java +58 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/main/java/com/google/flatbuffers/StringVector.java +50 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/main/java/com/google/flatbuffers/Struct.java +60 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/main/java/com/google/flatbuffers/Table.java +329 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/main/java/com/google/flatbuffers/UnionVector.java +49 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/main/java/com/google/flatbuffers/Utf8.java +242 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/main/java/com/google/flatbuffers/Utf8Old.java +105 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/main/java/com/google/flatbuffers/Utf8Safe.java +411 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/main/java/com/google/flatbuffers/reflection/AdvancedFeatures.java +16 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/main/java/com/google/flatbuffers/reflection/BaseType.java +33 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/main/java/com/google/flatbuffers/reflection/Enum.java +134 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/main/java/com/google/flatbuffers/reflection/EnumVal.java +115 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/main/java/com/google/flatbuffers/reflection/Field.java +154 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/main/java/com/google/flatbuffers/reflection/KeyValue.java +87 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/main/java/com/google/flatbuffers/reflection/Object.java +136 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/main/java/com/google/flatbuffers/reflection/RPCCall.java +114 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/main/java/com/google/flatbuffers/reflection/Schema.java +126 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/main/java/com/google/flatbuffers/reflection/SchemaFile.java +101 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/main/java/com/google/flatbuffers/reflection/Service.java +123 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/main/java/com/google/flatbuffers/reflection/Type.java +78 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/DictionaryLookup/LongFloatEntry.java +86 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/DictionaryLookup/LongFloatEntry.kt +92 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/DictionaryLookup/LongFloatMap.java +62 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/DictionaryLookup/LongFloatMap.kt +89 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/JavaTest.java +1565 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/Ability.cs +62 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/Ability.go +66 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/Ability.java +63 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/Ability.kt +43 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/Ability.lua +43 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/Ability.nim +26 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/Ability.php +52 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/Ability.py +69 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/AbilityT.java +39 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/Any.cs +113 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/Any.go +78 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/Any.java +17 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/Any.kt +15 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/Any.lua +20 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/Any.nim +15 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/Any.php +27 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/Any.py +24 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/AnyAmbiguousAliases.cs +113 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/AnyAmbiguousAliases.go +76 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/AnyAmbiguousAliases.java +17 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/AnyAmbiguousAliases.kt +15 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/AnyAmbiguousAliases.lua +20 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/AnyAmbiguousAliases.nim +15 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/AnyAmbiguousAliases.php +27 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/AnyAmbiguousAliases.py +24 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/AnyAmbiguousAliasesUnion.java +37 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/AnyUnion.java +37 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/AnyUniqueAliases.cs +113 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/AnyUniqueAliases.go +78 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/AnyUniqueAliases.java +17 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/AnyUniqueAliases.kt +15 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/AnyUniqueAliases.lua +20 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/AnyUniqueAliases.nim +15 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/AnyUniqueAliases.php +27 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/AnyUniqueAliases.py +24 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/AnyUniqueAliasesUnion.java +37 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/ArrayStruct.cs +140 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/ArrayStruct.java +119 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/ArrayStruct.py +182 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/ArrayStruct.pyi +57 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/ArrayStructT.java +63 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/ArrayTable.cs +86 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/ArrayTable.java +64 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/ArrayTable.py +108 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/ArrayTable.pyi +39 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/ArrayTableT.java +41 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/Color.cs +22 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/Color.go +36 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/Color.java +26 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/Color.kt +24 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/Color.lua +23 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/Color.nim +18 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/Color.php +29 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/Color.py +12 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/LongEnum.cs +18 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/LongEnum.go +32 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/LongEnum.java +12 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/LongEnum.kt +12 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/LongEnum.lua +19 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/LongEnum.nim +14 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/LongEnum.php +25 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/LongEnum.py +8 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/Monster.cs +1174 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/Monster.go +1851 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/Monster.java +790 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/Monster.kt +1254 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/Monster.lua +1112 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/Monster.nim +734 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/Monster.php +2001 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/Monster.py +2178 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/MonsterStorageGrpc.java +464 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/MonsterStorage_grpc.go +302 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/MonsterT.java +383 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/NestedStruct.cs +109 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/NestedStruct.java +85 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/NestedStruct.py +165 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/NestedStruct.pyi +51 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/NestedStructT.java +51 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/NestedUnion/Any.py +20 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/NestedUnion/Any.pyi +19 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/NestedUnion/Color.py +12 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/NestedUnion/Color.pyi +15 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/NestedUnion/NestedUnionTest.py +161 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/NestedUnion/NestedUnionTest.pyi +52 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/NestedUnion/Test.py +71 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/NestedUnion/Test.pyi +35 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/NestedUnion/TestSimpleTableWithEnum.py +91 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/NestedUnion/TestSimpleTableWithEnum.pyi +37 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/NestedUnion/Vec3.py +189 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/NestedUnion/Vec3.pyi +58 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/NestedUnion/__init__.py +0 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/Race.cs +18 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/Race.go +35 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/Race.java +17 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/Race.kt +15 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/Race.lua +20 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/Race.nim +15 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/Race.php +27 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/Race.py +9 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/Referrable.cs +105 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/Referrable.go +127 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/Referrable.java +98 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/Referrable.kt +94 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/Referrable.lua +48 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/Referrable.nim +26 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/Referrable.php +99 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/Referrable.py +94 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/ReferrableT.java +33 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/Stat.cs +132 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/Stat.go +163 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/Stat.java +116 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/Stat.kt +123 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/Stat.lua +71 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/Stat.nim +42 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/Stat.php +136 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/Stat.py +131 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/StatT.java +45 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/StructOfStructs.cs +83 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/StructOfStructs.go +84 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/StructOfStructs.java +82 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/StructOfStructs.kt +53 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/StructOfStructs.lua +58 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/StructOfStructs.nim +34 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/StructOfStructs.php +74 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/StructOfStructs.py +100 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/StructOfStructsOfStructs.cs +74 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/StructOfStructsOfStructs.go +67 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/StructOfStructsOfStructs.java +77 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/StructOfStructsOfStructs.kt +50 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/StructOfStructsOfStructs.lua +49 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/StructOfStructsOfStructs.nim +30 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/StructOfStructsOfStructs.php +55 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/StructOfStructsOfStructs.py +82 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/StructOfStructsOfStructsT.java +33 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/StructOfStructsT.java +45 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/Test.cs +63 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/Test.go +67 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/Test.java +64 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/Test.kt +44 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/Test.lua +44 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/Test.nim +27 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/Test.php +53 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/Test.py +70 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/TestEnum.cs +17 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/TestEnum.java +16 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/TestEnum.kt +15 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/TestEnum.py +8 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/TestEnum.pyi +15 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/TestSimpleTableWithEnum.cs +75 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/TestSimpleTableWithEnum.go +90 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/TestSimpleTableWithEnum.java +68 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/TestSimpleTableWithEnum.kt +64 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/TestSimpleTableWithEnum.lua +48 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/TestSimpleTableWithEnum.nim +27 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/TestSimpleTableWithEnum.php +99 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/TestSimpleTableWithEnum.py +94 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/TestSimpleTableWithEnumT.java +33 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/TestT.java +39 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/TypeAliases.cs +232 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/TypeAliases.go +348 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/TypeAliases.java +181 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/TypeAliases.kt +274 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/TypeAliases.lua +210 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/TypeAliases.nim +144 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/TypeAliases.php +387 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/TypeAliases.py +387 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/TypeAliasesT.java +99 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/Vec3.cs +102 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/Vec3.go +113 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/Vec3.java +95 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/Vec3.kt +61 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/Vec3.lua +70 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/Vec3.nim +52 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/Vec3.php +96 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/Vec3.py +108 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/Vec3T.java +63 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/__init__.py +0 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example/monster_test_grpc_fb.py +287 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example2/Monster.cs +59 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example2/Monster.go +72 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example2/Monster.java +55 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example2/Monster.kt +44 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example2/Monster.lua +36 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example2/Monster.nim +17 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example2/Monster.php +79 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example2/Monster.py +78 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example2/MonsterT.java +27 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/Example2/__init__.py +0 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/InParentNamespace.cs +59 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/InParentNamespace.go +72 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/InParentNamespace.java +55 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/InParentNamespace.kt +44 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/InParentNamespace.lua +36 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/InParentNamespace.nim +17 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/InParentNamespace.php +79 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/InParentNamespace.py +78 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/InParentNamespaceT.java +27 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/MonsterExtra.cs +229 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/MonsterExtra.java +167 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/MonsterExtra.kt +245 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/MonsterExtra.py +368 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/MonsterExtra.pyi +89 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/MonsterExtraT.java +95 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/OtherNameSpace/FromInclude.lua +17 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/OtherNameSpace/FromInclude.nim +12 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/OtherNameSpace/TableB.lua +51 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/OtherNameSpace/TableB.nim +25 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/OtherNameSpace/TableBT.java +23 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/OtherNameSpace/Unused.lua +38 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/OtherNameSpace/Unused.nim +21 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/OtherNameSpace/UnusedT.java +23 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/MyGame/__init__.py +0 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/NamespaceA/NamespaceB/EnumInNestedNS.cs +17 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/NamespaceA/NamespaceB/EnumInNestedNS.go +32 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/NamespaceA/NamespaceB/EnumInNestedNS.java +20 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/NamespaceA/NamespaceB/EnumInNestedNS.kt +16 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/NamespaceA/NamespaceB/EnumInNestedNS.lua +11 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/NamespaceA/NamespaceB/EnumInNestedNS.php +25 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/NamespaceA/NamespaceB/EnumInNestedNS.py +9 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/NamespaceA/NamespaceB/StructInNestedNS.cs +62 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/NamespaceA/NamespaceB/StructInNestedNS.go +66 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/NamespaceA/NamespaceB/StructInNestedNS.java +75 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/NamespaceA/NamespaceB/StructInNestedNS.kt +40 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/NamespaceA/NamespaceB/StructInNestedNS.lua +31 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/NamespaceA/NamespaceB/StructInNestedNS.php +52 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/NamespaceA/NamespaceB/StructInNestedNS.py +72 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/NamespaceA/NamespaceB/StructInNestedNST.java +33 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/NamespaceA/NamespaceB/TableInNestedNS.cs +75 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/NamespaceA/NamespaceB/TableInNestedNS.go +82 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/NamespaceA/NamespaceB/TableInNestedNS.java +97 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/NamespaceA/NamespaceB/TableInNestedNS.kt +66 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/NamespaceA/NamespaceB/TableInNestedNS.lua +38 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/NamespaceA/NamespaceB/TableInNestedNS.php +84 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/NamespaceA/NamespaceB/TableInNestedNS.py +93 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/NamespaceA/NamespaceB/TableInNestedNST.java +23 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/NamespaceA/NamespaceB/UnionInNestedNS.cs +97 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/NamespaceA/NamespaceB/UnionInNestedNS.go +36 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/NamespaceA/NamespaceB/UnionInNestedNS.java +19 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/NamespaceA/NamespaceB/UnionInNestedNS.kt +15 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/NamespaceA/NamespaceB/UnionInNestedNS.lua +10 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/NamespaceA/NamespaceB/UnionInNestedNS.php +23 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/NamespaceA/NamespaceB/UnionInNestedNS.py +18 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/NamespaceA/NamespaceB/UnionInNestedNSUnion.java +44 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/NamespaceA/NamespaceB/__init__.py +0 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/NamespaceA/SecondTableInA.cs +75 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/NamespaceA/SecondTableInA.go +86 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/NamespaceA/SecondTableInA.java +93 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/NamespaceA/SecondTableInA.kt +62 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/NamespaceA/SecondTableInA.lua +40 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/NamespaceA/SecondTableInA.php +82 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/NamespaceA/SecondTableInA.py +106 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/NamespaceA/SecondTableInAT.java +23 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/NamespaceA/TableInC.cs +38 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/NamespaceA/TableInC.go +51 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/NamespaceA/TableInC.php +100 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/NamespaceA/TableInC.py +57 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/NamespaceA/TableInFirstNS.cs +133 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/NamespaceA/TableInFirstNS.go +162 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/NamespaceA/TableInFirstNS.java +175 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/NamespaceA/TableInFirstNS.kt +117 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/NamespaceA/TableInFirstNS.lua +75 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/NamespaceA/TableInFirstNS.php +155 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/NamespaceA/TableInFirstNS.py +201 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/NamespaceA/TableInFirstNST.java +53 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/NamespaceA/__init__.py +0 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/NamespaceC/TableInC.cs +86 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/NamespaceC/TableInC.go +106 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/NamespaceC/TableInC.java +112 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/NamespaceC/TableInC.kt +82 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/NamespaceC/TableInC.lua +50 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/NamespaceC/TableInC.php +100 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/NamespaceC/TableInC.py +133 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/NamespaceC/TableInCT.java +33 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/NamespaceC/__init__.py +0 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/optional_scalars/OptionalByte.cs +16 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/optional_scalars/OptionalByte.go +32 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/optional_scalars/OptionalByte.java +16 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/optional_scalars/OptionalByte.kt +12 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/optional_scalars/OptionalByte.nim +14 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/optional_scalars/OptionalByte.py +8 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/optional_scalars/ScalarStuff.cs +400 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/optional_scalars/ScalarStuff.go +760 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/optional_scalars/ScalarStuff.java +207 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/optional_scalars/ScalarStuff.kt +303 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/optional_scalars/ScalarStuff.nim +331 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/optional_scalars/ScalarStuff.py +693 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/optional_scalars/__init__.py +0 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/optional_scalars/mod.rs +9 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/optional_scalars/optional_scalars/optional_byte_generated.rs +92 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/optional_scalars/optional_scalars/scalar_stuff_generated.rs +1023 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/union_vector/Attacker.cs +70 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/union_vector/Attacker.java +66 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/union_vector/Attacker.kt +62 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/union_vector/Attacker.php +92 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/union_vector/AttackerT.java +31 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/union_vector/BookReader.cs +49 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/union_vector/BookReader.java +55 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/union_vector/BookReader.kt +38 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/union_vector/BookReader.php +41 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/union_vector/BookReaderT.java +31 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/union_vector/Character.cs +132 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/union_vector/Character.java +18 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/union_vector/Character.kt +16 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/union_vector/Character.php +31 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/union_vector/CharacterUnion.java +41 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/union_vector/FallingTub.cs +49 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/union_vector/FallingTub.java +55 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/union_vector/FallingTub.kt +38 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/union_vector/FallingTub.php +41 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/union_vector/FallingTubT.java +31 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/union_vector/Gadget.cs +100 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/union_vector/Gadget.java +14 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/union_vector/Gadget.kt +12 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/union_vector/Gadget.php +23 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/union_vector/GadgetUnion.java +33 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/union_vector/HandFan.cs +70 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/union_vector/HandFan.java +66 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/union_vector/HandFan.kt +62 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/union_vector/HandFan.php +92 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/union_vector/HandFanT.java +31 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/union_vector/Movie.cs +226 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/union_vector/Movie.java +137 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/union_vector/Movie.kt +126 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/union_vector/Movie.php +220 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/union_vector/MovieT.java +45 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/union_vector/Rapunzel.cs +49 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/union_vector/Rapunzel.java +55 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/union_vector/Rapunzel.kt +38 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/union_vector/Rapunzel.php +41 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/union_vector/RapunzelT.java +31 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/union_vector/union_vector.fbs +44 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/union_vector/union_vector.json +26 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/java/union_vector/union_vector_generated.h +1332 -0
- oproco-0.3.5/third_party/flatbuffers/java/src/test/resources/monsterdata_test.mon +0 -0
- oproco-0.3.5/third_party/flatbuffers/js/README.md +1 -0
- oproco-0.3.5/third_party/flatbuffers/kotlin/benchmark/monster_test_java.fbs +37 -0
- oproco-0.3.5/third_party/flatbuffers/kotlin/benchmark/monster_test_kotlin.fbs +37 -0
- oproco-0.3.5/third_party/flatbuffers/kotlin/benchmark/src/jvmMain/kotlin/com/google/flatbuffers/kotlin/benchmark/FlatbufferBenchmark.kt +135 -0
- oproco-0.3.5/third_party/flatbuffers/kotlin/benchmark/src/jvmMain/kotlin/com/google/flatbuffers/kotlin/benchmark/FlexBuffersBenchmark.kt +210 -0
- oproco-0.3.5/third_party/flatbuffers/kotlin/benchmark/src/jvmMain/kotlin/com/google/flatbuffers/kotlin/benchmark/JsonBenchmark.kt +134 -0
- oproco-0.3.5/third_party/flatbuffers/kotlin/benchmark/src/jvmMain/kotlin/com/google/flatbuffers/kotlin/benchmark/UTF8Benchmark.kt +238 -0
- oproco-0.3.5/third_party/flatbuffers/kotlin/convention-plugins/src/main/kotlin/convention.publication.gradle.kts +92 -0
- oproco-0.3.5/third_party/flatbuffers/kotlin/flatbuffers-kotlin/src/commonMain/kotlin/com/google/flatbuffers/kotlin/Buffers.kt +670 -0
- oproco-0.3.5/third_party/flatbuffers/kotlin/flatbuffers-kotlin/src/commonMain/kotlin/com/google/flatbuffers/kotlin/ByteArray.kt +145 -0
- oproco-0.3.5/third_party/flatbuffers/kotlin/flatbuffers-kotlin/src/commonMain/kotlin/com/google/flatbuffers/kotlin/FlatBufferBuilder.kt +1115 -0
- oproco-0.3.5/third_party/flatbuffers/kotlin/flatbuffers-kotlin/src/commonMain/kotlin/com/google/flatbuffers/kotlin/Flatbuffers.kt +368 -0
- oproco-0.3.5/third_party/flatbuffers/kotlin/flatbuffers-kotlin/src/commonMain/kotlin/com/google/flatbuffers/kotlin/FlexBuffers.kt +986 -0
- oproco-0.3.5/third_party/flatbuffers/kotlin/flatbuffers-kotlin/src/commonMain/kotlin/com/google/flatbuffers/kotlin/FlexBuffersBuilder.kt +839 -0
- oproco-0.3.5/third_party/flatbuffers/kotlin/flatbuffers-kotlin/src/commonMain/kotlin/com/google/flatbuffers/kotlin/FlexBuffersInternals.kt +301 -0
- oproco-0.3.5/third_party/flatbuffers/kotlin/flatbuffers-kotlin/src/commonMain/kotlin/com/google/flatbuffers/kotlin/Utf8.kt +409 -0
- oproco-0.3.5/third_party/flatbuffers/kotlin/flatbuffers-kotlin/src/commonMain/kotlin/com/google/flatbuffers/kotlin/json.kt +1106 -0
- oproco-0.3.5/third_party/flatbuffers/kotlin/flatbuffers-kotlin/src/commonTest/kotlin/com/google/flatbuffers/kotlin/Asserts.kt +54 -0
- oproco-0.3.5/third_party/flatbuffers/kotlin/flatbuffers-kotlin/src/commonTest/kotlin/com/google/flatbuffers/kotlin/BuffersTest.kt +78 -0
- oproco-0.3.5/third_party/flatbuffers/kotlin/flatbuffers-kotlin/src/commonTest/kotlin/com/google/flatbuffers/kotlin/ByteArrayTest.kt +152 -0
- oproco-0.3.5/third_party/flatbuffers/kotlin/flatbuffers-kotlin/src/commonTest/kotlin/com/google/flatbuffers/kotlin/FlatBufferBuilderTest.kt +572 -0
- oproco-0.3.5/third_party/flatbuffers/kotlin/flatbuffers-kotlin/src/commonTest/kotlin/com/google/flatbuffers/kotlin/FlexBuffersTest.kt +303 -0
- oproco-0.3.5/third_party/flatbuffers/kotlin/flatbuffers-kotlin/src/commonTest/kotlin/com/google/flatbuffers/kotlin/JSONTest.kt +435 -0
- oproco-0.3.5/third_party/flatbuffers/kotlin/flatbuffers-kotlin/src/jsMain/kotlin/com/google/flatbuffers/kotlin/ByteArray.kt +66 -0
- oproco-0.3.5/third_party/flatbuffers/kotlin/flatbuffers-kotlin/src/jvmMain/kotlin/com/google/flatbuffers/kotlin/ByteArray.kt +68 -0
- oproco-0.3.5/third_party/flatbuffers/kotlin/flatbuffers-kotlin/src/jvmTest/kotlin/com/google/flatbuffers/kotlin/Utf8Test.kt +38 -0
- oproco-0.3.5/third_party/flatbuffers/kotlin/flatbuffers-kotlin/src/jvmTest/resources/utf8_sample.txt +201 -0
- oproco-0.3.5/third_party/flatbuffers/kotlin/flatbuffers-kotlin/src/nativeMain/kotlin/com/google/flatbuffers/kotlin/ByteArray.kt +67 -0
- oproco-0.3.5/third_party/flatbuffers/kotlin/gradle/libs.versions.toml +27 -0
- oproco-0.3.5/third_party/flatbuffers/kotlin/gradle/wrapper/gradle-wrapper.jar +0 -0
- oproco-0.3.5/third_party/flatbuffers/kotlin/gradle/wrapper/gradle-wrapper.properties +5 -0
- oproco-0.3.5/third_party/flatbuffers/kotlin/gradle.properties +20 -0
- oproco-0.3.5/third_party/flatbuffers/kotlin/gradlew +234 -0
- oproco-0.3.5/third_party/flatbuffers/kotlin/gradlew.bat +89 -0
- oproco-0.3.5/third_party/flatbuffers/kotlin/settings.gradle.kts +7 -0
- oproco-0.3.5/third_party/flatbuffers/kotlin/spotless/spotless.kt +15 -0
- oproco-0.3.5/third_party/flatbuffers/library.json +26 -0
- oproco-0.3.5/third_party/flatbuffers/lobster/flatbuffers.lobster +312 -0
- oproco-0.3.5/third_party/flatbuffers/lua/flatbuffers/binaryarray.lua +128 -0
- oproco-0.3.5/third_party/flatbuffers/lua/flatbuffers/builder.lua +422 -0
- oproco-0.3.5/third_party/flatbuffers/lua/flatbuffers/compat.lua +15 -0
- oproco-0.3.5/third_party/flatbuffers/lua/flatbuffers/compat_5_1.lua +21 -0
- oproco-0.3.5/third_party/flatbuffers/lua/flatbuffers/compat_5_3.lua +14 -0
- oproco-0.3.5/third_party/flatbuffers/lua/flatbuffers/compat_luajit.lua +213 -0
- oproco-0.3.5/third_party/flatbuffers/lua/flatbuffers/numTypes.lua +219 -0
- oproco-0.3.5/third_party/flatbuffers/lua/flatbuffers/view.lua +124 -0
- oproco-0.3.5/third_party/flatbuffers/lua/flatbuffers.lua +8 -0
- oproco-0.3.5/third_party/flatbuffers/mjs/README.md +1 -0
- oproco-0.3.5/third_party/flatbuffers/net/FlatBuffers/ByteBuffer.cs +1093 -0
- oproco-0.3.5/third_party/flatbuffers/net/FlatBuffers/ByteBufferUtil.cs +39 -0
- oproco-0.3.5/third_party/flatbuffers/net/FlatBuffers/FlatBufferBuilder.cs +1038 -0
- oproco-0.3.5/third_party/flatbuffers/net/FlatBuffers/FlatBufferConstants.cs +37 -0
- oproco-0.3.5/third_party/flatbuffers/net/FlatBuffers/FlatBufferVerify.cs +822 -0
- oproco-0.3.5/third_party/flatbuffers/net/FlatBuffers/Google.FlatBuffers.csproj +41 -0
- oproco-0.3.5/third_party/flatbuffers/net/FlatBuffers/IFlatbufferObject.cs +28 -0
- oproco-0.3.5/third_party/flatbuffers/net/FlatBuffers/Offset.cs +48 -0
- oproco-0.3.5/third_party/flatbuffers/net/FlatBuffers/Struct.cs +34 -0
- oproco-0.3.5/third_party/flatbuffers/net/FlatBuffers/Table.cs +225 -0
- oproco-0.3.5/third_party/flatbuffers/net/FlatBuffers/flatbuffers.png +0 -0
- oproco-0.3.5/third_party/flatbuffers/net/FlatBuffers/flatbuffers.snk +0 -0
- oproco-0.3.5/third_party/flatbuffers/nim/flatbuffers/flatbuffers.nim +7 -0
- oproco-0.3.5/third_party/flatbuffers/nim/flatbuffers/src/builder.nim +262 -0
- oproco-0.3.5/third_party/flatbuffers/nim/flatbuffers/src/endian.nim +12 -0
- oproco-0.3.5/third_party/flatbuffers/nim/flatbuffers/src/struct.nim +24 -0
- oproco-0.3.5/third_party/flatbuffers/nim/flatbuffers/src/table.nim +149 -0
- oproco-0.3.5/third_party/flatbuffers/nim/flatbuffers.nimble +7 -0
- oproco-0.3.5/third_party/flatbuffers/package.json +53 -0
- oproco-0.3.5/third_party/flatbuffers/php/ByteBuffer.php +498 -0
- oproco-0.3.5/third_party/flatbuffers/php/Constants.php +25 -0
- oproco-0.3.5/third_party/flatbuffers/php/FlatbufferBuilder.php +977 -0
- oproco-0.3.5/third_party/flatbuffers/php/Struct.php +41 -0
- oproco-0.3.5/third_party/flatbuffers/php/Table.php +145 -0
- oproco-0.3.5/third_party/flatbuffers/pnpm-lock.yaml +1324 -0
- oproco-0.3.5/third_party/flatbuffers/python/.gitignore +5 -0
- oproco-0.3.5/third_party/flatbuffers/python/__init__.py +0 -0
- oproco-0.3.5/third_party/flatbuffers/python/flatbuffers/__init__.py +19 -0
- oproco-0.3.5/third_party/flatbuffers/python/flatbuffers/_version.py +17 -0
- oproco-0.3.5/third_party/flatbuffers/python/flatbuffers/builder.py +870 -0
- oproco-0.3.5/third_party/flatbuffers/python/flatbuffers/compat.py +91 -0
- oproco-0.3.5/third_party/flatbuffers/python/flatbuffers/encode.py +45 -0
- oproco-0.3.5/third_party/flatbuffers/python/flatbuffers/flexbuffers.py +1592 -0
- oproco-0.3.5/third_party/flatbuffers/python/flatbuffers/number_types.py +182 -0
- oproco-0.3.5/third_party/flatbuffers/python/flatbuffers/packer.py +41 -0
- oproco-0.3.5/third_party/flatbuffers/python/flatbuffers/reflection/AdvancedFeatures.py +10 -0
- oproco-0.3.5/third_party/flatbuffers/python/flatbuffers/reflection/BaseType.py +25 -0
- oproco-0.3.5/third_party/flatbuffers/python/flatbuffers/reflection/Enum.py +222 -0
- oproco-0.3.5/third_party/flatbuffers/python/flatbuffers/reflection/EnumVal.py +165 -0
- oproco-0.3.5/third_party/flatbuffers/python/flatbuffers/reflection/Field.py +284 -0
- oproco-0.3.5/third_party/flatbuffers/python/flatbuffers/reflection/KeyValue.py +67 -0
- oproco-0.3.5/third_party/flatbuffers/python/flatbuffers/reflection/Object.py +231 -0
- oproco-0.3.5/third_party/flatbuffers/python/flatbuffers/reflection/RPCCall.py +169 -0
- oproco-0.3.5/third_party/flatbuffers/python/flatbuffers/reflection/Schema.py +271 -0
- oproco-0.3.5/third_party/flatbuffers/python/flatbuffers/reflection/SchemaFile.py +97 -0
- oproco-0.3.5/third_party/flatbuffers/python/flatbuffers/reflection/Service.py +192 -0
- oproco-0.3.5/third_party/flatbuffers/python/flatbuffers/reflection/Type.py +121 -0
- oproco-0.3.5/third_party/flatbuffers/python/flatbuffers/reflection/__init__.py +0 -0
- oproco-0.3.5/third_party/flatbuffers/python/flatbuffers/table.py +148 -0
- oproco-0.3.5/third_party/flatbuffers/python/flatbuffers/util.py +47 -0
- oproco-0.3.5/third_party/flatbuffers/python/py.typed +0 -0
- oproco-0.3.5/third_party/flatbuffers/python/setup.cfg +6 -0
- oproco-0.3.5/third_party/flatbuffers/python/setup.py +46 -0
- oproco-0.3.5/third_party/flatbuffers/reflection/BUILD.bazel +20 -0
- oproco-0.3.5/third_party/flatbuffers/reflection/reflection.fbs +156 -0
- oproco-0.3.5/third_party/flatbuffers/reflection/ts/BUILD.bazel +8 -0
- oproco-0.3.5/third_party/flatbuffers/rust/flatbuffers/Cargo.toml +24 -0
- oproco-0.3.5/third_party/flatbuffers/rust/flatbuffers/README.md +15 -0
- oproco-0.3.5/third_party/flatbuffers/rust/flatbuffers/src/array.rs +163 -0
- oproco-0.3.5/third_party/flatbuffers/rust/flatbuffers/src/builder.rs +943 -0
- oproco-0.3.5/third_party/flatbuffers/rust/flatbuffers/src/endian_scalar.rs +184 -0
- oproco-0.3.5/third_party/flatbuffers/rust/flatbuffers/src/follow.rs +63 -0
- oproco-0.3.5/third_party/flatbuffers/rust/flatbuffers/src/get_root.rs +111 -0
- oproco-0.3.5/third_party/flatbuffers/rust/flatbuffers/src/lib.rs +67 -0
- oproco-0.3.5/third_party/flatbuffers/rust/flatbuffers/src/primitives.rs +323 -0
- oproco-0.3.5/third_party/flatbuffers/rust/flatbuffers/src/push.rs +100 -0
- oproco-0.3.5/third_party/flatbuffers/rust/flatbuffers/src/table.rs +99 -0
- oproco-0.3.5/third_party/flatbuffers/rust/flatbuffers/src/vector.rs +337 -0
- oproco-0.3.5/third_party/flatbuffers/rust/flatbuffers/src/verifier.rs +629 -0
- oproco-0.3.5/third_party/flatbuffers/rust/flatbuffers/src/vtable.rs +115 -0
- oproco-0.3.5/third_party/flatbuffers/rust/flatbuffers/src/vtable_writer.rs +92 -0
- oproco-0.3.5/third_party/flatbuffers/rust/flexbuffers/.gitignore +3 -0
- oproco-0.3.5/third_party/flatbuffers/rust/flexbuffers/Cargo.toml +28 -0
- oproco-0.3.5/third_party/flatbuffers/rust/flexbuffers/README.md +22 -0
- oproco-0.3.5/third_party/flatbuffers/rust/flexbuffers/src/bitwidth.rs +113 -0
- oproco-0.3.5/third_party/flatbuffers/rust/flexbuffers/src/buffer.rs +80 -0
- oproco-0.3.5/third_party/flatbuffers/rust/flexbuffers/src/builder/map.rs +111 -0
- oproco-0.3.5/third_party/flatbuffers/rust/flexbuffers/src/builder/mod.rs +376 -0
- oproco-0.3.5/third_party/flatbuffers/rust/flexbuffers/src/builder/push.rs +168 -0
- oproco-0.3.5/third_party/flatbuffers/rust/flexbuffers/src/builder/ser.rs +534 -0
- oproco-0.3.5/third_party/flatbuffers/rust/flexbuffers/src/builder/value.rs +258 -0
- oproco-0.3.5/third_party/flatbuffers/rust/flexbuffers/src/builder/vector.rs +59 -0
- oproco-0.3.5/third_party/flatbuffers/rust/flexbuffers/src/flexbuffer_type.rs +240 -0
- oproco-0.3.5/third_party/flatbuffers/rust/flexbuffers/src/lib.rs +116 -0
- oproco-0.3.5/third_party/flatbuffers/rust/flexbuffers/src/reader/de.rs +266 -0
- oproco-0.3.5/third_party/flatbuffers/rust/flexbuffers/src/reader/iter.rs +63 -0
- oproco-0.3.5/third_party/flatbuffers/rust/flexbuffers/src/reader/map.rs +183 -0
- oproco-0.3.5/third_party/flatbuffers/rust/flexbuffers/src/reader/mod.rs +629 -0
- oproco-0.3.5/third_party/flatbuffers/rust/flexbuffers/src/reader/serialize.rs +76 -0
- oproco-0.3.5/third_party/flatbuffers/rust/flexbuffers/src/reader/vector.rs +86 -0
- oproco-0.3.5/third_party/flatbuffers/rust/reflection/.gitignore +2 -0
- oproco-0.3.5/third_party/flatbuffers/rust/reflection/Cargo.toml +10 -0
- oproco-0.3.5/third_party/flatbuffers/rust/reflection/src/lib.rs +1066 -0
- oproco-0.3.5/third_party/flatbuffers/rust/reflection/src/reflection_generated.rs +2892 -0
- oproco-0.3.5/third_party/flatbuffers/rust/reflection/src/reflection_verifier.rs +407 -0
- oproco-0.3.5/third_party/flatbuffers/rust/reflection/src/safe_buffer.rs +301 -0
- oproco-0.3.5/third_party/flatbuffers/rust/reflection/src/struct.rs +61 -0
- oproco-0.3.5/third_party/flatbuffers/samples/SampleBinary.cs +134 -0
- oproco-0.3.5/third_party/flatbuffers/samples/SampleBinary.java +110 -0
- oproco-0.3.5/third_party/flatbuffers/samples/SampleBinary.kt +108 -0
- oproco-0.3.5/third_party/flatbuffers/samples/SampleBinary.php +115 -0
- oproco-0.3.5/third_party/flatbuffers/samples/csharp_sample.sh +50 -0
- oproco-0.3.5/third_party/flatbuffers/samples/dart_sample.sh +49 -0
- oproco-0.3.5/third_party/flatbuffers/samples/go_sample.sh +58 -0
- oproco-0.3.5/third_party/flatbuffers/samples/java_sample.sh +51 -0
- oproco-0.3.5/third_party/flatbuffers/samples/javascript_sample.sh +48 -0
- oproco-0.3.5/third_party/flatbuffers/samples/kotlin_sample.sh +60 -0
- oproco-0.3.5/third_party/flatbuffers/samples/lua/MyGame/Sample/Color.lua +11 -0
- oproco-0.3.5/third_party/flatbuffers/samples/lua/MyGame/Sample/Equipment.lua +10 -0
- oproco-0.3.5/third_party/flatbuffers/samples/lua/MyGame/Sample/Monster.lua +122 -0
- oproco-0.3.5/third_party/flatbuffers/samples/lua/MyGame/Sample/Vec3.lua +35 -0
- oproco-0.3.5/third_party/flatbuffers/samples/lua/MyGame/Sample/Weapon.lua +42 -0
- oproco-0.3.5/third_party/flatbuffers/samples/monster.bfbs +0 -0
- oproco-0.3.5/third_party/flatbuffers/samples/monster.fbs +33 -0
- oproco-0.3.5/third_party/flatbuffers/samples/monster_generated.h +943 -0
- oproco-0.3.5/third_party/flatbuffers/samples/monster_generated.lobster +143 -0
- oproco-0.3.5/third_party/flatbuffers/samples/monster_generated.swift +501 -0
- oproco-0.3.5/third_party/flatbuffers/samples/monsterdata.json +24 -0
- oproco-0.3.5/third_party/flatbuffers/samples/php_sample.sh +48 -0
- oproco-0.3.5/third_party/flatbuffers/samples/python_sample.sh +48 -0
- oproco-0.3.5/third_party/flatbuffers/samples/rust_generated/mod.rs +18 -0
- oproco-0.3.5/third_party/flatbuffers/samples/rust_generated/my_game/sample/color_generated.rs +92 -0
- oproco-0.3.5/third_party/flatbuffers/samples/rust_generated/my_game/sample/equipment_generated.rs +137 -0
- oproco-0.3.5/third_party/flatbuffers/samples/rust_generated/my_game/sample/monster_generated.rs +465 -0
- oproco-0.3.5/third_party/flatbuffers/samples/rust_generated/my_game/sample/vec_3_generated.rs +190 -0
- oproco-0.3.5/third_party/flatbuffers/samples/rust_generated/my_game/sample/weapon_generated.rs +160 -0
- oproco-0.3.5/third_party/flatbuffers/samples/sample_bfbs.cpp +78 -0
- oproco-0.3.5/third_party/flatbuffers/samples/sample_binary.cpp +104 -0
- oproco-0.3.5/third_party/flatbuffers/samples/sample_binary.go +165 -0
- oproco-0.3.5/third_party/flatbuffers/samples/sample_binary.lobster +100 -0
- oproco-0.3.5/third_party/flatbuffers/samples/sample_binary.lua +107 -0
- oproco-0.3.5/third_party/flatbuffers/samples/sample_binary.py +142 -0
- oproco-0.3.5/third_party/flatbuffers/samples/sample_binary.rs +155 -0
- oproco-0.3.5/third_party/flatbuffers/samples/sample_binary.swift +83 -0
- oproco-0.3.5/third_party/flatbuffers/samples/sample_flexbuffers.rs +163 -0
- oproco-0.3.5/third_party/flatbuffers/samples/sample_flexbuffers_serde.rs +75 -0
- oproco-0.3.5/third_party/flatbuffers/samples/sample_text.cpp +58 -0
- oproco-0.3.5/third_party/flatbuffers/samples/sample_text.lobster +43 -0
- oproco-0.3.5/third_party/flatbuffers/scripts/check-grpc-generated-code.py +47 -0
- oproco-0.3.5/third_party/flatbuffers/scripts/check_generate_code.py +67 -0
- oproco-0.3.5/third_party/flatbuffers/scripts/clang-format-all.sh +6 -0
- oproco-0.3.5/third_party/flatbuffers/scripts/clang-format-git.sh +6 -0
- oproco-0.3.5/third_party/flatbuffers/scripts/clang-tidy-git.sh +1 -0
- oproco-0.3.5/third_party/flatbuffers/scripts/generate_code.py +644 -0
- oproco-0.3.5/third_party/flatbuffers/scripts/generate_grpc_examples.py +72 -0
- oproco-0.3.5/third_party/flatbuffers/scripts/release.sh +132 -0
- oproco-0.3.5/third_party/flatbuffers/scripts/util.py +73 -0
- oproco-0.3.5/third_party/flatbuffers/snap/snapcraft.yaml +49 -0
- oproco-0.3.5/third_party/flatbuffers/src/BUILD.bazel +161 -0
- oproco-0.3.5/third_party/flatbuffers/src/annotated_binary_text_gen.cpp +517 -0
- oproco-0.3.5/third_party/flatbuffers/src/annotated_binary_text_gen.h +75 -0
- oproco-0.3.5/third_party/flatbuffers/src/bfbs_gen.h +212 -0
- oproco-0.3.5/third_party/flatbuffers/src/bfbs_gen_lua.cpp +761 -0
- oproco-0.3.5/third_party/flatbuffers/src/bfbs_gen_lua.h +33 -0
- oproco-0.3.5/third_party/flatbuffers/src/bfbs_gen_nim.cpp +741 -0
- oproco-0.3.5/third_party/flatbuffers/src/bfbs_gen_nim.h +33 -0
- oproco-0.3.5/third_party/flatbuffers/src/bfbs_namer.h +51 -0
- oproco-0.3.5/third_party/flatbuffers/src/binary_annotator.cpp +1559 -0
- oproco-0.3.5/third_party/flatbuffers/src/binary_annotator.h +468 -0
- oproco-0.3.5/third_party/flatbuffers/src/code_generators.cpp +345 -0
- oproco-0.3.5/third_party/flatbuffers/src/file_manager.cpp +33 -0
- oproco-0.3.5/third_party/flatbuffers/src/file_name_manager.cpp +44 -0
- oproco-0.3.5/third_party/flatbuffers/src/flatc.cpp +1121 -0
- oproco-0.3.5/third_party/flatbuffers/src/flatc_main.cpp +205 -0
- oproco-0.3.5/third_party/flatbuffers/src/flathash.cpp +116 -0
- oproco-0.3.5/third_party/flatbuffers/src/idl_gen_binary.cpp +129 -0
- oproco-0.3.5/third_party/flatbuffers/src/idl_gen_binary.h +32 -0
- oproco-0.3.5/third_party/flatbuffers/src/idl_gen_cpp.cpp +4603 -0
- oproco-0.3.5/third_party/flatbuffers/src/idl_gen_cpp.h +29 -0
- oproco-0.3.5/third_party/flatbuffers/src/idl_gen_csharp.cpp +2730 -0
- oproco-0.3.5/third_party/flatbuffers/src/idl_gen_csharp.h +29 -0
- oproco-0.3.5/third_party/flatbuffers/src/idl_gen_dart.cpp +1237 -0
- oproco-0.3.5/third_party/flatbuffers/src/idl_gen_dart.h +29 -0
- oproco-0.3.5/third_party/flatbuffers/src/idl_gen_fbs.cpp +485 -0
- oproco-0.3.5/third_party/flatbuffers/src/idl_gen_fbs.h +28 -0
- oproco-0.3.5/third_party/flatbuffers/src/idl_gen_go.cpp +1736 -0
- oproco-0.3.5/third_party/flatbuffers/src/idl_gen_go.h +29 -0
- oproco-0.3.5/third_party/flatbuffers/src/idl_gen_grpc.cpp +560 -0
- oproco-0.3.5/third_party/flatbuffers/src/idl_gen_java.cpp +2308 -0
- oproco-0.3.5/third_party/flatbuffers/src/idl_gen_java.h +29 -0
- oproco-0.3.5/third_party/flatbuffers/src/idl_gen_json_schema.cpp +407 -0
- oproco-0.3.5/third_party/flatbuffers/src/idl_gen_json_schema.h +32 -0
- oproco-0.3.5/third_party/flatbuffers/src/idl_gen_kotlin.cpp +1724 -0
- oproco-0.3.5/third_party/flatbuffers/src/idl_gen_kotlin.h +31 -0
- oproco-0.3.5/third_party/flatbuffers/src/idl_gen_kotlin_kmp.cpp +1706 -0
- oproco-0.3.5/third_party/flatbuffers/src/idl_gen_lobster.cpp +483 -0
- oproco-0.3.5/third_party/flatbuffers/src/idl_gen_lobster.h +29 -0
- oproco-0.3.5/third_party/flatbuffers/src/idl_gen_php.cpp +1027 -0
- oproco-0.3.5/third_party/flatbuffers/src/idl_gen_php.h +29 -0
- oproco-0.3.5/third_party/flatbuffers/src/idl_gen_python.cpp +3049 -0
- oproco-0.3.5/third_party/flatbuffers/src/idl_gen_python.h +29 -0
- oproco-0.3.5/third_party/flatbuffers/src/idl_gen_rust.cpp +3157 -0
- oproco-0.3.5/third_party/flatbuffers/src/idl_gen_rust.h +29 -0
- oproco-0.3.5/third_party/flatbuffers/src/idl_gen_swift.cpp +2084 -0
- oproco-0.3.5/third_party/flatbuffers/src/idl_gen_swift.h +29 -0
- oproco-0.3.5/third_party/flatbuffers/src/idl_gen_text.cpp +532 -0
- oproco-0.3.5/third_party/flatbuffers/src/idl_gen_text.h +29 -0
- oproco-0.3.5/third_party/flatbuffers/src/idl_gen_ts.cpp +2353 -0
- oproco-0.3.5/third_party/flatbuffers/src/idl_gen_ts.h +32 -0
- oproco-0.3.5/third_party/flatbuffers/src/idl_namer.h +6 -0
- oproco-0.3.5/third_party/flatbuffers/src/idl_parser.cpp +4610 -0
- oproco-0.3.5/third_party/flatbuffers/src/namer.h +6 -0
- oproco-0.3.5/third_party/flatbuffers/src/reflection.cpp +800 -0
- oproco-0.3.5/third_party/flatbuffers/src/util.cpp +492 -0
- oproco-0.3.5/third_party/flatbuffers/swift/BUILD.bazel +22 -0
- oproco-0.3.5/third_party/flatbuffers/swift/LICENSE +202 -0
- oproco-0.3.5/third_party/flatbuffers/swift/README.md +11 -0
- oproco-0.3.5/third_party/flatbuffers/swift/Sources/Common/Int+extension.swift +48 -0
- oproco-0.3.5/third_party/flatbuffers/swift/Sources/Common/Scalar.swift +107 -0
- oproco-0.3.5/third_party/flatbuffers/swift/Sources/Common/padding.swift +29 -0
- oproco-0.3.5/third_party/flatbuffers/swift/Sources/FlatBuffers/ByteBuffer.swift +474 -0
- oproco-0.3.5/third_party/flatbuffers/swift/Sources/FlatBuffers/Constants.swift +63 -0
- oproco-0.3.5/third_party/flatbuffers/swift/Sources/FlatBuffers/Documentation.docc/Documentation.md +22 -0
- oproco-0.3.5/third_party/flatbuffers/swift/Sources/FlatBuffers/Documentation.docc/Resources/code/fbs/monster_step_1.fbs +1 -0
- oproco-0.3.5/third_party/flatbuffers/swift/Sources/FlatBuffers/Documentation.docc/Resources/code/fbs/monster_step_2.fbs +1 -0
- oproco-0.3.5/third_party/flatbuffers/swift/Sources/FlatBuffers/Documentation.docc/Resources/code/fbs/monster_step_3.fbs +6 -0
- oproco-0.3.5/third_party/flatbuffers/swift/Sources/FlatBuffers/Documentation.docc/Resources/code/fbs/monster_step_4.fbs +12 -0
- oproco-0.3.5/third_party/flatbuffers/swift/Sources/FlatBuffers/Documentation.docc/Resources/code/fbs/monster_step_5.fbs +18 -0
- oproco-0.3.5/third_party/flatbuffers/swift/Sources/FlatBuffers/Documentation.docc/Resources/code/fbs/monster_step_6.fbs +25 -0
- oproco-0.3.5/third_party/flatbuffers/swift/Sources/FlatBuffers/Documentation.docc/Resources/code/fbs/monster_step_7.fbs +27 -0
- oproco-0.3.5/third_party/flatbuffers/swift/Sources/FlatBuffers/Documentation.docc/Resources/code/swift/swift_code_1.swift +1 -0
- oproco-0.3.5/third_party/flatbuffers/swift/Sources/FlatBuffers/Documentation.docc/Resources/code/swift/swift_code_10.swift +71 -0
- oproco-0.3.5/third_party/flatbuffers/swift/Sources/FlatBuffers/Documentation.docc/Resources/code/swift/swift_code_11.swift +11 -0
- oproco-0.3.5/third_party/flatbuffers/swift/Sources/FlatBuffers/Documentation.docc/Resources/code/swift/swift_code_12.swift +19 -0
- oproco-0.3.5/third_party/flatbuffers/swift/Sources/FlatBuffers/Documentation.docc/Resources/code/swift/swift_code_13.swift +26 -0
- oproco-0.3.5/third_party/flatbuffers/swift/Sources/FlatBuffers/Documentation.docc/Resources/code/swift/swift_code_2.swift +2 -0
- oproco-0.3.5/third_party/flatbuffers/swift/Sources/FlatBuffers/Documentation.docc/Resources/code/swift/swift_code_3.swift +7 -0
- oproco-0.3.5/third_party/flatbuffers/swift/Sources/FlatBuffers/Documentation.docc/Resources/code/swift/swift_code_4.swift +10 -0
- oproco-0.3.5/third_party/flatbuffers/swift/Sources/FlatBuffers/Documentation.docc/Resources/code/swift/swift_code_5.swift +22 -0
- oproco-0.3.5/third_party/flatbuffers/swift/Sources/FlatBuffers/Documentation.docc/Resources/code/swift/swift_code_6.swift +26 -0
- oproco-0.3.5/third_party/flatbuffers/swift/Sources/FlatBuffers/Documentation.docc/Resources/code/swift/swift_code_7.swift +29 -0
- oproco-0.3.5/third_party/flatbuffers/swift/Sources/FlatBuffers/Documentation.docc/Resources/code/swift/swift_code_8.swift +40 -0
- oproco-0.3.5/third_party/flatbuffers/swift/Sources/FlatBuffers/Documentation.docc/Resources/code/swift/swift_code_9.swift +62 -0
- oproco-0.3.5/third_party/flatbuffers/swift/Sources/FlatBuffers/Documentation.docc/Resources/images/tutorial_cover_image_1.png +0 -0
- oproco-0.3.5/third_party/flatbuffers/swift/Sources/FlatBuffers/Documentation.docc/Tutorials/Tutorial_Table_of_Contents.tutorial +14 -0
- oproco-0.3.5/third_party/flatbuffers/swift/Sources/FlatBuffers/Documentation.docc/Tutorials/create_your_first_buffer.tutorial +72 -0
- oproco-0.3.5/third_party/flatbuffers/swift/Sources/FlatBuffers/Documentation.docc/Tutorials/creating_flatbuffer_schema.tutorial +47 -0
- oproco-0.3.5/third_party/flatbuffers/swift/Sources/FlatBuffers/Documentation.docc/Tutorials/reading_bytebuffer.tutorial +27 -0
- oproco-0.3.5/third_party/flatbuffers/swift/Sources/FlatBuffers/Enum.swift +64 -0
- oproco-0.3.5/third_party/flatbuffers/swift/Sources/FlatBuffers/FlatBufferBuilder.swift +956 -0
- oproco-0.3.5/third_party/flatbuffers/swift/Sources/FlatBuffers/FlatBufferObject.swift +73 -0
- oproco-0.3.5/third_party/flatbuffers/swift/Sources/FlatBuffers/FlatBuffersUtils.swift +37 -0
- oproco-0.3.5/third_party/flatbuffers/swift/Sources/FlatBuffers/FlatbuffersErrors.swift +75 -0
- oproco-0.3.5/third_party/flatbuffers/swift/Sources/FlatBuffers/Message.swift +75 -0
- oproco-0.3.5/third_party/flatbuffers/swift/Sources/FlatBuffers/Mutable.swift +88 -0
- oproco-0.3.5/third_party/flatbuffers/swift/Sources/FlatBuffers/NativeObject.swift +53 -0
- oproco-0.3.5/third_party/flatbuffers/swift/Sources/FlatBuffers/Offset.swift +28 -0
- oproco-0.3.5/third_party/flatbuffers/swift/Sources/FlatBuffers/Root.swift +116 -0
- oproco-0.3.5/third_party/flatbuffers/swift/Sources/FlatBuffers/String+extension.swift +111 -0
- oproco-0.3.5/third_party/flatbuffers/swift/Sources/FlatBuffers/Struct.swift +63 -0
- oproco-0.3.5/third_party/flatbuffers/swift/Sources/FlatBuffers/Table.swift +352 -0
- oproco-0.3.5/third_party/flatbuffers/swift/Sources/FlatBuffers/TableVerifier.swift +205 -0
- oproco-0.3.5/third_party/flatbuffers/swift/Sources/FlatBuffers/Vectors/FlatbufferVector.swift +77 -0
- oproco-0.3.5/third_party/flatbuffers/swift/Sources/FlatBuffers/Vectors/FlatbuffersVectorInitializable.swift +69 -0
- oproco-0.3.5/third_party/flatbuffers/swift/Sources/FlatBuffers/Vectors/UnionFlatbufferVector.swift +62 -0
- oproco-0.3.5/third_party/flatbuffers/swift/Sources/FlatBuffers/VeriferOptions.swift +52 -0
- oproco-0.3.5/third_party/flatbuffers/swift/Sources/FlatBuffers/Verifiable.swift +219 -0
- oproco-0.3.5/third_party/flatbuffers/swift/Sources/FlatBuffers/Verifier.swift +244 -0
- oproco-0.3.5/third_party/flatbuffers/swift/Sources/FlatBuffers/_InternalByteBuffer.swift +353 -0
- oproco-0.3.5/third_party/flatbuffers/swift/Sources/FlexBuffers/ByteBuffer.swift +490 -0
- oproco-0.3.5/third_party/flatbuffers/swift/Sources/FlexBuffers/FlexBufferType.swift +75 -0
- oproco-0.3.5/third_party/flatbuffers/swift/Sources/FlexBuffers/Reader/FixedTypedVector.swift +53 -0
- oproco-0.3.5/third_party/flatbuffers/swift/Sources/FlexBuffers/Reader/FlexBufferVector.swift +54 -0
- oproco-0.3.5/third_party/flatbuffers/swift/Sources/FlexBuffers/Reader/Map.swift +62 -0
- oproco-0.3.5/third_party/flatbuffers/swift/Sources/FlexBuffers/Reader/Reference.swift +301 -0
- oproco-0.3.5/third_party/flatbuffers/swift/Sources/FlexBuffers/Reader/Sized.swift +43 -0
- oproco-0.3.5/third_party/flatbuffers/swift/Sources/FlexBuffers/Reader/TypedVector.swift +98 -0
- oproco-0.3.5/third_party/flatbuffers/swift/Sources/FlexBuffers/Reader/Vector.swift +42 -0
- oproco-0.3.5/third_party/flatbuffers/swift/Sources/FlexBuffers/Utils/BitWidth.swift +51 -0
- oproco-0.3.5/third_party/flatbuffers/swift/Sources/FlexBuffers/Utils/Constants.swift +58 -0
- oproco-0.3.5/third_party/flatbuffers/swift/Sources/FlexBuffers/Utils/Value.swift +143 -0
- oproco-0.3.5/third_party/flatbuffers/swift/Sources/FlexBuffers/Utils/functions.swift +180 -0
- oproco-0.3.5/third_party/flatbuffers/swift/Sources/FlexBuffers/Writer/FlexBuffersWriter.swift +899 -0
- oproco-0.3.5/third_party/flatbuffers/swift/Sources/FlexBuffers/_InternalByteBuffer.swift +223 -0
- oproco-0.3.5/third_party/flatbuffers/swift.swiftformat +28 -0
- oproco-0.3.5/third_party/flatbuffers/tests/.gitignore +2 -0
- oproco-0.3.5/third_party/flatbuffers/tests/64bit/evolution/v1.fbs +8 -0
- oproco-0.3.5/third_party/flatbuffers/tests/64bit/evolution/v2.fbs +9 -0
- oproco-0.3.5/third_party/flatbuffers/tests/64bit/offset64_test.cpp +464 -0
- oproco-0.3.5/third_party/flatbuffers/tests/64bit/offset64_test.h +20 -0
- oproco-0.3.5/third_party/flatbuffers/tests/64bit/test_64bit.afb +90 -0
- oproco-0.3.5/third_party/flatbuffers/tests/64bit/test_64bit.bfbs +0 -0
- oproco-0.3.5/third_party/flatbuffers/tests/64bit/test_64bit.bin +0 -0
- oproco-0.3.5/third_party/flatbuffers/tests/64bit/test_64bit.fbs +57 -0
- oproco-0.3.5/third_party/flatbuffers/tests/64bit/test_64bit.json +26 -0
- oproco-0.3.5/third_party/flatbuffers/tests/Abc.nim +13 -0
- oproco-0.3.5/third_party/flatbuffers/tests/BUILD.bazel +290 -0
- oproco-0.3.5/third_party/flatbuffers/tests/DartTest.sh +41 -0
- oproco-0.3.5/third_party/flatbuffers/tests/DictionaryLookup/LongFloatEntry.java +86 -0
- oproco-0.3.5/third_party/flatbuffers/tests/DictionaryLookup/LongFloatEntry.kt +92 -0
- oproco-0.3.5/third_party/flatbuffers/tests/DictionaryLookup/LongFloatMap.java +62 -0
- oproco-0.3.5/third_party/flatbuffers/tests/DictionaryLookup/LongFloatMap.kt +89 -0
- oproco-0.3.5/third_party/flatbuffers/tests/FlatBuffers.Benchmarks/FlatBufferBuilderBenchmark.cs +101 -0
- oproco-0.3.5/third_party/flatbuffers/tests/FlatBuffers.Benchmarks/FlatBuffers.Benchmarks.csproj +21 -0
- oproco-0.3.5/third_party/flatbuffers/tests/FlatBuffers.Benchmarks/Program.cs +30 -0
- oproco-0.3.5/third_party/flatbuffers/tests/FlatBuffers.Test/.gitignore +4 -0
- oproco-0.3.5/third_party/flatbuffers/tests/FlatBuffers.Test/Assert.cs +156 -0
- oproco-0.3.5/third_party/flatbuffers/tests/FlatBuffers.Test/ByteBufferTests.cs +741 -0
- oproco-0.3.5/third_party/flatbuffers/tests/FlatBuffers.Test/FlatBufferBuilderTests.cs +766 -0
- oproco-0.3.5/third_party/flatbuffers/tests/FlatBuffers.Test/FlatBuffers.Test.csproj +203 -0
- oproco-0.3.5/third_party/flatbuffers/tests/FlatBuffers.Test/FlatBuffersExampleTests.cs +1240 -0
- oproco-0.3.5/third_party/flatbuffers/tests/FlatBuffers.Test/FlatBuffersFixedLengthArrayTests.cs +249 -0
- oproco-0.3.5/third_party/flatbuffers/tests/FlatBuffers.Test/FlatBuffersFuzzTests.cs +1052 -0
- oproco-0.3.5/third_party/flatbuffers/tests/FlatBuffers.Test/FlatBuffersTestClassAttribute.cs +28 -0
- oproco-0.3.5/third_party/flatbuffers/tests/FlatBuffers.Test/FlatBuffersTestMethodAttribute.cs +25 -0
- oproco-0.3.5/third_party/flatbuffers/tests/FlatBuffers.Test/FuzzTestData.cs +38 -0
- oproco-0.3.5/third_party/flatbuffers/tests/FlatBuffers.Test/Lcg.cs +42 -0
- oproco-0.3.5/third_party/flatbuffers/tests/FlatBuffers.Test/NetTest.bat +20 -0
- oproco-0.3.5/third_party/flatbuffers/tests/FlatBuffers.Test/NetTest.sh +36 -0
- oproco-0.3.5/third_party/flatbuffers/tests/FlatBuffers.Test/Program.cs +68 -0
- oproco-0.3.5/third_party/flatbuffers/tests/FlatBuffers.Test/Properties/AssemblyInfo.cs +52 -0
- oproco-0.3.5/third_party/flatbuffers/tests/FlatBuffers.Test/README.md +38 -0
- oproco-0.3.5/third_party/flatbuffers/tests/FlatBuffers.Test/TestTable.cs +152 -0
- oproco-0.3.5/third_party/flatbuffers/tests/FlatBuffers.Test/clean.sh +10 -0
- oproco-0.3.5/third_party/flatbuffers/tests/FlatBuffers.Test/monsterdata_cstest.mon +0 -0
- oproco-0.3.5/third_party/flatbuffers/tests/FlatBuffers.Test/monsterdata_cstest_sp.mon +0 -0
- oproco-0.3.5/third_party/flatbuffers/tests/FlatBuffers.Test/packages.config +4 -0
- oproco-0.3.5/third_party/flatbuffers/tests/GoTest.sh +78 -0
- oproco-0.3.5/third_party/flatbuffers/tests/KeywordTest/ABC.cs +17 -0
- oproco-0.3.5/third_party/flatbuffers/tests/KeywordTest/KeywordsInTable.cs +108 -0
- oproco-0.3.5/third_party/flatbuffers/tests/KeywordTest/KeywordsInUnion.cs +105 -0
- oproco-0.3.5/third_party/flatbuffers/tests/KeywordTest/Table2.cs +105 -0
- oproco-0.3.5/third_party/flatbuffers/tests/KeywordTest/public.cs +15 -0
- oproco-0.3.5/third_party/flatbuffers/tests/KotlinTest.kt +652 -0
- oproco-0.3.5/third_party/flatbuffers/tests/KotlinTest.sh +46 -0
- oproco-0.3.5/third_party/flatbuffers/tests/LobsterTest.bat +3 -0
- oproco-0.3.5/third_party/flatbuffers/tests/LuaTest.bat +7 -0
- oproco-0.3.5/third_party/flatbuffers/tests/LuaTest.sh +29 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MoreDefaults.nim +103 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MutatingBool.fbs +8 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/Ability.cs +62 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/Ability.go +66 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/Ability.java +63 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/Ability.kt +43 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/Ability.lua +43 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/Ability.nim +26 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/Ability.php +52 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/Ability.py +69 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/AbilityT.java +39 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/Any.cs +113 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/Any.go +78 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/Any.java +17 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/Any.kt +15 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/Any.lua +20 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/Any.nim +15 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/Any.php +27 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/Any.py +24 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/AnyAmbiguousAliases.cs +113 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/AnyAmbiguousAliases.go +76 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/AnyAmbiguousAliases.java +17 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/AnyAmbiguousAliases.kt +15 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/AnyAmbiguousAliases.lua +20 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/AnyAmbiguousAliases.nim +15 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/AnyAmbiguousAliases.php +27 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/AnyAmbiguousAliases.py +24 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/AnyAmbiguousAliasesUnion.java +37 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/AnyUnion.java +37 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/AnyUniqueAliases.cs +113 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/AnyUniqueAliases.go +78 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/AnyUniqueAliases.java +17 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/AnyUniqueAliases.kt +15 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/AnyUniqueAliases.lua +20 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/AnyUniqueAliases.nim +15 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/AnyUniqueAliases.php +27 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/AnyUniqueAliases.py +24 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/AnyUniqueAliasesUnion.java +37 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/ArrayStruct.cs +140 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/ArrayStruct.java +119 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/ArrayStruct.py +182 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/ArrayStruct.pyi +57 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/ArrayStructT.java +63 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/ArrayTable.cs +86 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/ArrayTable.java +64 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/ArrayTable.py +108 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/ArrayTable.pyi +39 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/ArrayTableT.java +41 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/Color.cs +22 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/Color.go +36 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/Color.java +26 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/Color.kt +24 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/Color.lua +23 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/Color.nim +18 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/Color.php +29 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/Color.py +12 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/LongEnum.cs +18 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/LongEnum.go +32 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/LongEnum.java +12 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/LongEnum.kt +12 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/LongEnum.lua +19 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/LongEnum.nim +14 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/LongEnum.php +25 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/LongEnum.py +8 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/Monster.cs +1174 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/Monster.go +1851 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/Monster.java +790 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/Monster.kt +1254 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/Monster.lua +1112 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/Monster.nim +734 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/Monster.php +2001 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/Monster.py +2178 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/MonsterStorageGrpc.java +464 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/MonsterStorage_grpc.go +302 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/MonsterT.java +383 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/NestedStruct.cs +109 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/NestedStruct.java +85 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/NestedStruct.py +165 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/NestedStruct.pyi +51 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/NestedStructT.java +51 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/NestedUnion/Any.py +20 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/NestedUnion/Any.pyi +19 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/NestedUnion/Color.py +12 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/NestedUnion/Color.pyi +15 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/NestedUnion/NestedUnionTest.py +161 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/NestedUnion/NestedUnionTest.pyi +52 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/NestedUnion/Test.py +71 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/NestedUnion/Test.pyi +35 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/NestedUnion/TestSimpleTableWithEnum.py +91 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/NestedUnion/TestSimpleTableWithEnum.pyi +37 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/NestedUnion/Vec3.py +189 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/NestedUnion/Vec3.pyi +58 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/NestedUnion/__init__.py +0 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/Race.cs +18 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/Race.go +35 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/Race.java +17 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/Race.kt +15 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/Race.lua +20 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/Race.nim +15 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/Race.php +27 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/Race.py +9 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/Referrable.cs +105 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/Referrable.go +127 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/Referrable.java +98 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/Referrable.kt +94 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/Referrable.lua +48 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/Referrable.nim +26 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/Referrable.php +99 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/Referrable.py +94 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/ReferrableT.java +33 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/Stat.cs +132 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/Stat.go +163 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/Stat.java +116 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/Stat.kt +123 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/Stat.lua +71 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/Stat.nim +42 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/Stat.php +136 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/Stat.py +131 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/StatT.java +45 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/StructOfStructs.cs +83 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/StructOfStructs.go +84 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/StructOfStructs.java +82 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/StructOfStructs.kt +53 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/StructOfStructs.lua +58 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/StructOfStructs.nim +34 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/StructOfStructs.php +74 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/StructOfStructs.py +100 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/StructOfStructsOfStructs.cs +74 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/StructOfStructsOfStructs.go +67 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/StructOfStructsOfStructs.java +77 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/StructOfStructsOfStructs.kt +50 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/StructOfStructsOfStructs.lua +49 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/StructOfStructsOfStructs.nim +30 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/StructOfStructsOfStructs.php +55 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/StructOfStructsOfStructs.py +82 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/StructOfStructsOfStructsT.java +33 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/StructOfStructsT.java +45 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/Test.cs +63 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/Test.go +67 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/Test.java +64 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/Test.kt +44 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/Test.lua +44 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/Test.nim +27 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/Test.php +53 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/Test.py +70 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/TestEnum.cs +17 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/TestEnum.java +16 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/TestEnum.kt +15 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/TestEnum.py +8 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/TestEnum.pyi +15 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/TestSimpleTableWithEnum.cs +75 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/TestSimpleTableWithEnum.go +90 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/TestSimpleTableWithEnum.java +68 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/TestSimpleTableWithEnum.kt +64 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/TestSimpleTableWithEnum.lua +48 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/TestSimpleTableWithEnum.nim +27 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/TestSimpleTableWithEnum.php +99 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/TestSimpleTableWithEnum.py +94 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/TestSimpleTableWithEnumT.java +33 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/TestT.java +39 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/TypeAliases.cs +232 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/TypeAliases.go +348 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/TypeAliases.java +181 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/TypeAliases.kt +274 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/TypeAliases.lua +210 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/TypeAliases.nim +144 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/TypeAliases.php +387 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/TypeAliases.py +387 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/TypeAliasesT.java +99 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/Vec3.cs +102 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/Vec3.go +113 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/Vec3.java +95 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/Vec3.kt +61 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/Vec3.lua +70 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/Vec3.nim +52 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/Vec3.php +96 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/Vec3.py +108 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/Vec3T.java +63 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/__init__.py +0 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example/monster_test_grpc_fb.py +287 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example2/Monster.cs +59 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example2/Monster.go +72 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example2/Monster.java +55 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example2/Monster.kt +44 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example2/Monster.lua +36 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example2/Monster.nim +17 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example2/Monster.php +79 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example2/Monster.py +78 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example2/MonsterT.java +27 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/Example2/__init__.py +0 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/InParentNamespace.cs +59 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/InParentNamespace.go +72 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/InParentNamespace.java +55 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/InParentNamespace.kt +44 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/InParentNamespace.lua +36 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/InParentNamespace.nim +17 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/InParentNamespace.php +79 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/InParentNamespace.py +78 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/InParentNamespaceT.java +27 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/MonsterExtra.cs +229 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/MonsterExtra.java +167 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/MonsterExtra.kt +245 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/MonsterExtra.py +368 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/MonsterExtra.pyi +89 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/MonsterExtraT.java +95 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/OtherNameSpace/FromInclude.lua +17 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/OtherNameSpace/FromInclude.nim +12 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/OtherNameSpace/TableB.lua +51 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/OtherNameSpace/TableB.nim +25 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/OtherNameSpace/TableBT.java +23 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/OtherNameSpace/Unused.lua +38 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/OtherNameSpace/Unused.nim +21 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/OtherNameSpace/UnusedT.java +23 -0
- oproco-0.3.5/third_party/flatbuffers/tests/MyGame/__init__.py +0 -0
- oproco-0.3.5/third_party/flatbuffers/tests/Pizza.go +82 -0
- oproco-0.3.5/third_party/flatbuffers/tests/Property.nim +20 -0
- oproco-0.3.5/third_party/flatbuffers/tests/PythonTest.sh +93 -0
- oproco-0.3.5/third_party/flatbuffers/tests/RustTest.bat +33 -0
- oproco-0.3.5/third_party/flatbuffers/tests/RustTest.sh +76 -0
- oproco-0.3.5/third_party/flatbuffers/tests/TableA.lua +51 -0
- oproco-0.3.5/third_party/flatbuffers/tests/TableA.nim +25 -0
- oproco-0.3.5/third_party/flatbuffers/tests/TableAT.java +21 -0
- oproco-0.3.5/third_party/flatbuffers/tests/TestAll.sh +59 -0
- oproco-0.3.5/third_party/flatbuffers/tests/TestMutatingBool.nim +24 -0
- oproco-0.3.5/third_party/flatbuffers/tests/alignment_test.cpp +80 -0
- oproco-0.3.5/third_party/flatbuffers/tests/alignment_test.fbs +44 -0
- oproco-0.3.5/third_party/flatbuffers/tests/alignment_test.h +12 -0
- oproco-0.3.5/third_party/flatbuffers/tests/alignment_test.json +16 -0
- oproco-0.3.5/third_party/flatbuffers/tests/alignment_test_after_fix.afb +31 -0
- oproco-0.3.5/third_party/flatbuffers/tests/alignment_test_after_fix.bin +0 -0
- oproco-0.3.5/third_party/flatbuffers/tests/alignment_test_before_fix.afb +31 -0
- oproco-0.3.5/third_party/flatbuffers/tests/alignment_test_before_fix.bin +0 -0
- oproco-0.3.5/third_party/flatbuffers/tests/annotated_binary/README.md +101 -0
- oproco-0.3.5/third_party/flatbuffers/tests/annotated_binary/annotated_binary.afb +297 -0
- oproco-0.3.5/third_party/flatbuffers/tests/annotated_binary/annotated_binary.bfbs +0 -0
- oproco-0.3.5/third_party/flatbuffers/tests/annotated_binary/annotated_binary.bin +0 -0
- oproco-0.3.5/third_party/flatbuffers/tests/annotated_binary/annotated_binary.fbs +92 -0
- oproco-0.3.5/third_party/flatbuffers/tests/annotated_binary/annotated_binary.json +124 -0
- oproco-0.3.5/third_party/flatbuffers/tests/annotated_binary/annotated_binary_old.afb +293 -0
- oproco-0.3.5/third_party/flatbuffers/tests/annotated_binary/annotated_binary_old.fbs +94 -0
- oproco-0.3.5/third_party/flatbuffers/tests/annotated_binary/generate_annotations.py +76 -0
- oproco-0.3.5/third_party/flatbuffers/tests/annotated_binary/tests/README.md +125 -0
- oproco-0.3.5/third_party/flatbuffers/tests/annotated_binary/tests/invalid_root_offset.afb +93 -0
- oproco-0.3.5/third_party/flatbuffers/tests/annotated_binary/tests/invalid_root_offset.bin +0 -0
- oproco-0.3.5/third_party/flatbuffers/tests/annotated_binary/tests/invalid_root_table_too_short.afb +21 -0
- oproco-0.3.5/third_party/flatbuffers/tests/annotated_binary/tests/invalid_root_table_too_short.bin +0 -0
- oproco-0.3.5/third_party/flatbuffers/tests/annotated_binary/tests/invalid_root_table_vtable_offset.afb +98 -0
- oproco-0.3.5/third_party/flatbuffers/tests/annotated_binary/tests/invalid_root_table_vtable_offset.bin +0 -0
- oproco-0.3.5/third_party/flatbuffers/tests/annotated_binary/tests/invalid_string_length.afb +295 -0
- oproco-0.3.5/third_party/flatbuffers/tests/annotated_binary/tests/invalid_string_length.bin +0 -0
- oproco-0.3.5/third_party/flatbuffers/tests/annotated_binary/tests/invalid_string_length_cut_short.afb +80 -0
- oproco-0.3.5/third_party/flatbuffers/tests/annotated_binary/tests/invalid_string_length_cut_short.bin +0 -0
- oproco-0.3.5/third_party/flatbuffers/tests/annotated_binary/tests/invalid_struct_array_field_cut_short.afb +72 -0
- oproco-0.3.5/third_party/flatbuffers/tests/annotated_binary/tests/invalid_struct_array_field_cut_short.bin +0 -0
- oproco-0.3.5/third_party/flatbuffers/tests/annotated_binary/tests/invalid_struct_field_cut_short.afb +69 -0
- oproco-0.3.5/third_party/flatbuffers/tests/annotated_binary/tests/invalid_struct_field_cut_short.bin +0 -0
- oproco-0.3.5/third_party/flatbuffers/tests/annotated_binary/tests/invalid_table_field_offset.afb +77 -0
- oproco-0.3.5/third_party/flatbuffers/tests/annotated_binary/tests/invalid_table_field_offset.bin +0 -0
- oproco-0.3.5/third_party/flatbuffers/tests/annotated_binary/tests/invalid_table_field_size.afb +68 -0
- oproco-0.3.5/third_party/flatbuffers/tests/annotated_binary/tests/invalid_table_field_size.bin +0 -0
- oproco-0.3.5/third_party/flatbuffers/tests/annotated_binary/tests/invalid_union_type_value.afb +293 -0
- oproco-0.3.5/third_party/flatbuffers/tests/annotated_binary/tests/invalid_union_type_value.bin +0 -0
- oproco-0.3.5/third_party/flatbuffers/tests/annotated_binary/tests/invalid_vector_length_cut_short.afb +140 -0
- oproco-0.3.5/third_party/flatbuffers/tests/annotated_binary/tests/invalid_vector_length_cut_short.bin +0 -0
- oproco-0.3.5/third_party/flatbuffers/tests/annotated_binary/tests/invalid_vector_scalars_cut_short.afb +190 -0
- oproco-0.3.5/third_party/flatbuffers/tests/annotated_binary/tests/invalid_vector_scalars_cut_short.bin +0 -0
- oproco-0.3.5/third_party/flatbuffers/tests/annotated_binary/tests/invalid_vector_strings_cut_short.afb +155 -0
- oproco-0.3.5/third_party/flatbuffers/tests/annotated_binary/tests/invalid_vector_strings_cut_short.bin +0 -0
- oproco-0.3.5/third_party/flatbuffers/tests/annotated_binary/tests/invalid_vector_structs_cut_short.afb +146 -0
- oproco-0.3.5/third_party/flatbuffers/tests/annotated_binary/tests/invalid_vector_structs_cut_short.bin +0 -0
- oproco-0.3.5/third_party/flatbuffers/tests/annotated_binary/tests/invalid_vector_tables_cut_short.afb +210 -0
- oproco-0.3.5/third_party/flatbuffers/tests/annotated_binary/tests/invalid_vector_tables_cut_short.bin +0 -0
- oproco-0.3.5/third_party/flatbuffers/tests/annotated_binary/tests/invalid_vector_union_type_value.afb +293 -0
- oproco-0.3.5/third_party/flatbuffers/tests/annotated_binary/tests/invalid_vector_union_type_value.bin +0 -0
- oproco-0.3.5/third_party/flatbuffers/tests/annotated_binary/tests/invalid_vector_unions_cut_short.afb +210 -0
- oproco-0.3.5/third_party/flatbuffers/tests/annotated_binary/tests/invalid_vector_unions_cut_short.bin +0 -0
- oproco-0.3.5/third_party/flatbuffers/tests/annotated_binary/tests/invalid_vtable_field_offset.afb +286 -0
- oproco-0.3.5/third_party/flatbuffers/tests/annotated_binary/tests/invalid_vtable_field_offset.bin +0 -0
- oproco-0.3.5/third_party/flatbuffers/tests/annotated_binary/tests/invalid_vtable_ref_table_size.afb +360 -0
- oproco-0.3.5/third_party/flatbuffers/tests/annotated_binary/tests/invalid_vtable_ref_table_size.bin +0 -0
- oproco-0.3.5/third_party/flatbuffers/tests/annotated_binary/tests/invalid_vtable_ref_table_size_short.afb +297 -0
- oproco-0.3.5/third_party/flatbuffers/tests/annotated_binary/tests/invalid_vtable_ref_table_size_short.bin +0 -0
- oproco-0.3.5/third_party/flatbuffers/tests/annotated_binary/tests/invalid_vtable_size.afb +99 -0
- oproco-0.3.5/third_party/flatbuffers/tests/annotated_binary/tests/invalid_vtable_size.bin +0 -0
- oproco-0.3.5/third_party/flatbuffers/tests/annotated_binary/tests/invalid_vtable_size_short.afb +99 -0
- oproco-0.3.5/third_party/flatbuffers/tests/annotated_binary/tests/invalid_vtable_size_short.bin +0 -0
- oproco-0.3.5/third_party/flatbuffers/tests/arrays_test/mod.rs +16 -0
- oproco-0.3.5/third_party/flatbuffers/tests/arrays_test/my_game/example/array_struct_generated.rs +259 -0
- oproco-0.3.5/third_party/flatbuffers/tests/arrays_test/my_game/example/array_table_generated.rs +221 -0
- oproco-0.3.5/third_party/flatbuffers/tests/arrays_test/my_game/example/nested_struct_generated.rs +189 -0
- oproco-0.3.5/third_party/flatbuffers/tests/arrays_test/my_game/example/test_enum_generated.rs +92 -0
- oproco-0.3.5/third_party/flatbuffers/tests/arrays_test.bfbs +0 -0
- oproco-0.3.5/third_party/flatbuffers/tests/arrays_test.fbs +27 -0
- oproco-0.3.5/third_party/flatbuffers/tests/arrays_test.golden +23 -0
- oproco-0.3.5/third_party/flatbuffers/tests/arrays_test.schema.json +73 -0
- oproco-0.3.5/third_party/flatbuffers/tests/bazel_repository_test_dir/.bazelrc +1 -0
- oproco-0.3.5/third_party/flatbuffers/tests/bazel_repository_test_dir/.gitignore +1 -0
- oproco-0.3.5/third_party/flatbuffers/tests/bazel_repository_test_dir/BUILD +12 -0
- oproco-0.3.5/third_party/flatbuffers/tests/bazel_repository_test_dir/MODULE.bazel +12 -0
- oproco-0.3.5/third_party/flatbuffers/tests/bazel_repository_test_dir/README.md +3 -0
- oproco-0.3.5/third_party/flatbuffers/tests/bazel_repository_test_dir/pulls_in_flatbuffers_test.cpp +1 -0
- oproco-0.3.5/third_party/flatbuffers/tests/cpp17/stringify_util.h +193 -0
- oproco-0.3.5/third_party/flatbuffers/tests/cpp17/test_cpp17.cpp +277 -0
- oproco-0.3.5/third_party/flatbuffers/tests/default_vectors_strings_test.cpp +249 -0
- oproco-0.3.5/third_party/flatbuffers/tests/default_vectors_strings_test.fbs +39 -0
- oproco-0.3.5/third_party/flatbuffers/tests/default_vectors_strings_test.h +17 -0
- oproco-0.3.5/third_party/flatbuffers/tests/dictionary_lookup.fbs +11 -0
- oproco-0.3.5/third_party/flatbuffers/tests/docker/Dockerfile.testing.build_flatc_debian_stretch +9 -0
- oproco-0.3.5/third_party/flatbuffers/tests/docker/Dockerfile.testing.cpp.debian_buster +10 -0
- oproco-0.3.5/third_party/flatbuffers/tests/docker/TODO.Dockerfile.testing.php.hhvm_2019_01_16 +18 -0
- oproco-0.3.5/third_party/flatbuffers/tests/docker/TODO.Dockerfile.testing.python.cpython_with_conda +0 -0
- oproco-0.3.5/third_party/flatbuffers/tests/docker/TODO.Dockerfile.testing.python.cpython_with_numpy +0 -0
- oproco-0.3.5/third_party/flatbuffers/tests/docker/TODO.Dockerfile.testing.python.pypy_6_0_0_py2 +7 -0
- oproco-0.3.5/third_party/flatbuffers/tests/docker/TODO.Dockerfile.testing.python.pypy_6_0_0_py3 +7 -0
- oproco-0.3.5/third_party/flatbuffers/tests/docker/cpp_test.run.sh +20 -0
- oproco-0.3.5/third_party/flatbuffers/tests/docker/languages/Dockerfile.testing.csharp.mono_5_18 +8 -0
- oproco-0.3.5/third_party/flatbuffers/tests/docker/languages/Dockerfile.testing.golang.1_11 +7 -0
- oproco-0.3.5/third_party/flatbuffers/tests/docker/languages/Dockerfile.testing.java.openjdk_10_0_2 +7 -0
- oproco-0.3.5/third_party/flatbuffers/tests/docker/languages/Dockerfile.testing.java.openjdk_11_0_1 +7 -0
- oproco-0.3.5/third_party/flatbuffers/tests/docker/languages/Dockerfile.testing.node.12_20_1 +6 -0
- oproco-0.3.5/third_party/flatbuffers/tests/docker/languages/Dockerfile.testing.node.14_15_4 +6 -0
- oproco-0.3.5/third_party/flatbuffers/tests/docker/languages/Dockerfile.testing.php.zend_7_3 +8 -0
- oproco-0.3.5/third_party/flatbuffers/tests/docker/languages/Dockerfile.testing.python.cpython_2_7_15 +8 -0
- oproco-0.3.5/third_party/flatbuffers/tests/docker/languages/Dockerfile.testing.python.cpython_3_7_1 +8 -0
- oproco-0.3.5/third_party/flatbuffers/tests/docker/languages/Dockerfile.testing.python.numpy.cpython_2_7_15 +9 -0
- oproco-0.3.5/third_party/flatbuffers/tests/docker/languages/Dockerfile.testing.python.numpy.cpython_3_7_1 +9 -0
- oproco-0.3.5/third_party/flatbuffers/tests/docker/languages/Dockerfile.testing.rust.1_51_0 +7 -0
- oproco-0.3.5/third_party/flatbuffers/tests/docker/languages/Dockerfile.testing.rust.big_endian.1_51_0 +15 -0
- oproco-0.3.5/third_party/flatbuffers/tests/docker/languages/Dockerfile.testing.rust.nightly +8 -0
- oproco-0.3.5/third_party/flatbuffers/tests/docker/languages/Dockerfile.testing.swift_5_2 +8 -0
- oproco-0.3.5/third_party/flatbuffers/tests/evolution_test/evolution_v1.fbs +40 -0
- oproco-0.3.5/third_party/flatbuffers/tests/evolution_test/evolution_v1.json +29 -0
- oproco-0.3.5/third_party/flatbuffers/tests/evolution_test/evolution_v2.fbs +51 -0
- oproco-0.3.5/third_party/flatbuffers/tests/evolution_test/evolution_v2.json +34 -0
- oproco-0.3.5/third_party/flatbuffers/tests/evolution_test.cpp +192 -0
- oproco-0.3.5/third_party/flatbuffers/tests/evolution_test.h +16 -0
- oproco-0.3.5/third_party/flatbuffers/tests/flexbuffers_test.cpp +301 -0
- oproco-0.3.5/third_party/flatbuffers/tests/flexbuffers_test.h +16 -0
- oproco-0.3.5/third_party/flatbuffers/tests/fuzz_test.cpp +350 -0
- oproco-0.3.5/third_party/flatbuffers/tests/fuzz_test.h +13 -0
- oproco-0.3.5/third_party/flatbuffers/tests/fuzzer/.gitignore +20 -0
- oproco-0.3.5/third_party/flatbuffers/tests/fuzzer/CMakeLists.txt +298 -0
- oproco-0.3.5/third_party/flatbuffers/tests/fuzzer/codegen_json.dict +132 -0
- oproco-0.3.5/third_party/flatbuffers/tests/fuzzer/flatbuffers_64bit_fuzzer.cc +141 -0
- oproco-0.3.5/third_party/flatbuffers/tests/fuzzer/flatbuffers_annotator_fuzzer.cc +53 -0
- oproco-0.3.5/third_party/flatbuffers/tests/fuzzer/flatbuffers_codegen_fuzzer.cc +158 -0
- oproco-0.3.5/third_party/flatbuffers/tests/fuzzer/flatbuffers_monster_fuzzer.cc +143 -0
- oproco-0.3.5/third_party/flatbuffers/tests/fuzzer/flatbuffers_parser_fuzzer.cc +64 -0
- oproco-0.3.5/third_party/flatbuffers/tests/fuzzer/flatbuffers_scalar_fuzzer.cc +389 -0
- oproco-0.3.5/third_party/flatbuffers/tests/fuzzer/flatbuffers_verifier_fuzzer.cc +17 -0
- oproco-0.3.5/third_party/flatbuffers/tests/fuzzer/flexbuffers_verifier_fuzzer.cc +20 -0
- oproco-0.3.5/third_party/flatbuffers/tests/fuzzer/fuzzer_assert.h +14 -0
- oproco-0.3.5/third_party/flatbuffers/tests/fuzzer/monster_debug.cpp +31 -0
- oproco-0.3.5/third_party/flatbuffers/tests/fuzzer/monster_fuzzer.dict +60 -0
- oproco-0.3.5/third_party/flatbuffers/tests/fuzzer/parser_fuzzer.dict +101 -0
- oproco-0.3.5/third_party/flatbuffers/tests/fuzzer/readme.md +79 -0
- oproco-0.3.5/third_party/flatbuffers/tests/fuzzer/scalar_debug.cpp +29 -0
- oproco-0.3.5/third_party/flatbuffers/tests/fuzzer/scalar_fuzzer.dict +37 -0
- oproco-0.3.5/third_party/flatbuffers/tests/fuzzer/seed_codegen/attributes_test +11 -0
- oproco-0.3.5/third_party/flatbuffers/tests/fuzzer/seed_codegen/complex_schema +24 -0
- oproco-0.3.5/third_party/flatbuffers/tests/fuzzer/seed_codegen/empty_namespace +6 -0
- oproco-0.3.5/third_party/flatbuffers/tests/fuzzer/seed_codegen/enum_test +8 -0
- oproco-0.3.5/third_party/flatbuffers/tests/fuzzer/seed_codegen/monster_sample +33 -0
- oproco-0.3.5/third_party/flatbuffers/tests/fuzzer/seed_codegen/rpc_test +14 -0
- oproco-0.3.5/third_party/flatbuffers/tests/fuzzer/seed_codegen/struct_test +11 -0
- oproco-0.3.5/third_party/flatbuffers/tests/fuzzer/seed_codegen/test_union +20 -0
- oproco-0.3.5/third_party/flatbuffers/tests/fuzzer/test_init.h +52 -0
- oproco-0.3.5/third_party/flatbuffers/tests/go_test.go +2696 -0
- oproco-0.3.5/third_party/flatbuffers/tests/gold_flexbuffer_example.bin +0 -0
- oproco-0.3.5/third_party/flatbuffers/tests/include_build_test.cc +1 -0
- oproco-0.3.5/third_party/flatbuffers/tests/include_test/include_test1.fbs +7 -0
- oproco-0.3.5/third_party/flatbuffers/tests/include_test/order.fbs +8 -0
- oproco-0.3.5/third_party/flatbuffers/tests/include_test/sub/include_test2.fbs +12 -0
- oproco-0.3.5/third_party/flatbuffers/tests/include_test/sub/no_namespace.fbs +3 -0
- oproco-0.3.5/third_party/flatbuffers/tests/include_test1/mod.rs +16 -0
- oproco-0.3.5/third_party/flatbuffers/tests/include_test1/my_game/other_name_space/from_include_generated.rs +84 -0
- oproco-0.3.5/third_party/flatbuffers/tests/include_test1/my_game/other_name_space/table_b_generated.rs +137 -0
- oproco-0.3.5/third_party/flatbuffers/tests/include_test1/my_game/other_name_space/unused_generated.rs +120 -0
- oproco-0.3.5/third_party/flatbuffers/tests/include_test1/table_a_generated.rs +137 -0
- oproco-0.3.5/third_party/flatbuffers/tests/include_test1_generated.dart +109 -0
- oproco-0.3.5/third_party/flatbuffers/tests/include_test1_generated.rs +479 -0
- oproco-0.3.5/third_party/flatbuffers/tests/include_test2/mod.rs +16 -0
- oproco-0.3.5/third_party/flatbuffers/tests/include_test2/my_game/other_name_space/from_include_generated.rs +84 -0
- oproco-0.3.5/third_party/flatbuffers/tests/include_test2/my_game/other_name_space/table_b_generated.rs +137 -0
- oproco-0.3.5/third_party/flatbuffers/tests/include_test2/my_game/other_name_space/unused_generated.rs +120 -0
- oproco-0.3.5/third_party/flatbuffers/tests/include_test2/table_a_generated.rs +137 -0
- oproco-0.3.5/third_party/flatbuffers/tests/include_test2_generated.rs +479 -0
- oproco-0.3.5/third_party/flatbuffers/tests/include_test2_my_game.other_name_space_generated.dart +231 -0
- oproco-0.3.5/third_party/flatbuffers/tests/included_test.fbs +3 -0
- oproco-0.3.5/third_party/flatbuffers/tests/includer_test.fbs +5 -0
- oproco-0.3.5/third_party/flatbuffers/tests/is_quiet_nan.h +42 -0
- oproco-0.3.5/third_party/flatbuffers/tests/javatest.bin +0 -0
- oproco-0.3.5/third_party/flatbuffers/tests/json_test.cpp +207 -0
- oproco-0.3.5/third_party/flatbuffers/tests/json_test.h +19 -0
- oproco-0.3.5/third_party/flatbuffers/tests/key_field/key_field_sample.fbs +49 -0
- oproco-0.3.5/third_party/flatbuffers/tests/key_field_test.cpp +220 -0
- oproco-0.3.5/third_party/flatbuffers/tests/key_field_test.h +15 -0
- oproco-0.3.5/third_party/flatbuffers/tests/keyword_test/keyword_test/abc_generated.rs +92 -0
- oproco-0.3.5/third_party/flatbuffers/tests/keyword_test/keyword_test/keywords_in_table_generated.rs +202 -0
- oproco-0.3.5/third_party/flatbuffers/tests/keyword_test/keyword_test/keywords_in_union_generated.rs +165 -0
- oproco-0.3.5/third_party/flatbuffers/tests/keyword_test/keyword_test/public_generated.rs +84 -0
- oproco-0.3.5/third_party/flatbuffers/tests/keyword_test/keyword_test/table_2_generated.rs +219 -0
- oproco-0.3.5/third_party/flatbuffers/tests/keyword_test/mod.rs +15 -0
- oproco-0.3.5/third_party/flatbuffers/tests/keyword_test.fbs +21 -0
- oproco-0.3.5/third_party/flatbuffers/tests/lobstertest.lobster +202 -0
- oproco-0.3.5/third_party/flatbuffers/tests/long_namespace.fbs +7 -0
- oproco-0.3.5/third_party/flatbuffers/tests/longer_namespace.fbs +7 -0
- oproco-0.3.5/third_party/flatbuffers/tests/luatest.lua +428 -0
- oproco-0.3.5/third_party/flatbuffers/tests/minified_enums/enums.fbs +3 -0
- oproco-0.3.5/third_party/flatbuffers/tests/monster_extra.fbs +22 -0
- oproco-0.3.5/third_party/flatbuffers/tests/monster_extra_my_game_generated.dart +233 -0
- oproco-0.3.5/third_party/flatbuffers/tests/monster_test/mod.rs +58 -0
- oproco-0.3.5/third_party/flatbuffers/tests/monster_test/my_game/example/ability_generated.rs +165 -0
- oproco-0.3.5/third_party/flatbuffers/tests/monster_test/my_game/example/any_ambiguous_aliases_generated.rs +193 -0
- oproco-0.3.5/third_party/flatbuffers/tests/monster_test/my_game/example/any_generated.rs +193 -0
- oproco-0.3.5/third_party/flatbuffers/tests/monster_test/my_game/example/any_unique_aliases_generated.rs +193 -0
- oproco-0.3.5/third_party/flatbuffers/tests/monster_test/my_game/example/color_generated.rs +62 -0
- oproco-0.3.5/third_party/flatbuffers/tests/monster_test/my_game/example/long_enum_generated.rs +58 -0
- oproco-0.3.5/third_party/flatbuffers/tests/monster_test/my_game/example/monster_generated.rs +2007 -0
- oproco-0.3.5/third_party/flatbuffers/tests/monster_test/my_game/example/race_generated.rs +96 -0
- oproco-0.3.5/third_party/flatbuffers/tests/monster_test/my_game/example/referrable_generated.rs +143 -0
- oproco-0.3.5/third_party/flatbuffers/tests/monster_test/my_game/example/stat_generated.rs +193 -0
- oproco-0.3.5/third_party/flatbuffers/tests/monster_test/my_game/example/struct_of_structs_generated.rs +139 -0
- oproco-0.3.5/third_party/flatbuffers/tests/monster_test/my_game/example/struct_of_structs_of_structs_generated.rs +103 -0
- oproco-0.3.5/third_party/flatbuffers/tests/monster_test/my_game/example/test_generated.rs +155 -0
- oproco-0.3.5/third_party/flatbuffers/tests/monster_test/my_game/example/test_simple_table_with_enum_generated.rs +133 -0
- oproco-0.3.5/third_party/flatbuffers/tests/monster_test/my_game/example/type_aliases_generated.rs +394 -0
- oproco-0.3.5/third_party/flatbuffers/tests/monster_test/my_game/example/vec_3_generated.rs +278 -0
- oproco-0.3.5/third_party/flatbuffers/tests/monster_test/my_game/example_2/monster_generated.rs +109 -0
- oproco-0.3.5/third_party/flatbuffers/tests/monster_test/my_game/in_parent_namespace_generated.rs +109 -0
- oproco-0.3.5/third_party/flatbuffers/tests/monster_test/my_game/other_name_space/from_include_generated.rs +84 -0
- oproco-0.3.5/third_party/flatbuffers/tests/monster_test/my_game/other_name_space/table_b_generated.rs +137 -0
- oproco-0.3.5/third_party/flatbuffers/tests/monster_test/my_game/other_name_space/unused_generated.rs +120 -0
- oproco-0.3.5/third_party/flatbuffers/tests/monster_test/table_a_generated.rs +137 -0
- oproco-0.3.5/third_party/flatbuffers/tests/monster_test.afb +6450 -0
- oproco-0.3.5/third_party/flatbuffers/tests/monster_test.bfbs +0 -0
- oproco-0.3.5/third_party/flatbuffers/tests/monster_test.cpp +902 -0
- oproco-0.3.5/third_party/flatbuffers/tests/monster_test.fbs +180 -0
- oproco-0.3.5/third_party/flatbuffers/tests/monster_test.grpc.fb.cc +205 -0
- oproco-0.3.5/third_party/flatbuffers/tests/monster_test.grpc.fb.h +381 -0
- oproco-0.3.5/third_party/flatbuffers/tests/monster_test.h +38 -0
- oproco-0.3.5/third_party/flatbuffers/tests/monster_test.schema.json +416 -0
- oproco-0.3.5/third_party/flatbuffers/tests/monster_test_callback.grpc.fb.cc +2 -0
- oproco-0.3.5/third_party/flatbuffers/tests/monster_test_callback.grpc.fb.h +4 -0
- oproco-0.3.5/third_party/flatbuffers/tests/monster_test_generated.grpc.fb.cc +238 -0
- oproco-0.3.5/third_party/flatbuffers/tests/monster_test_generated.grpc.fb.h +642 -0
- oproco-0.3.5/third_party/flatbuffers/tests/monster_test_generated.lobster +855 -0
- oproco-0.3.5/third_party/flatbuffers/tests/monster_test_generated.py +3053 -0
- oproco-0.3.5/third_party/flatbuffers/tests/monster_test_generated.ts +42 -0
- oproco-0.3.5/third_party/flatbuffers/tests/monster_test_my_game.example2_generated.dart +79 -0
- oproco-0.3.5/third_party/flatbuffers/tests/monster_test_my_game.example_generated.dart +2371 -0
- oproco-0.3.5/third_party/flatbuffers/tests/monster_test_my_game_generated.dart +79 -0
- oproco-0.3.5/third_party/flatbuffers/tests/monster_test_serialize/mod.rs +58 -0
- oproco-0.3.5/third_party/flatbuffers/tests/monster_test_serialize/my_game/example/ability_generated.rs +179 -0
- oproco-0.3.5/third_party/flatbuffers/tests/monster_test_serialize/my_game/example/any_ambiguous_aliases_generated.rs +223 -0
- oproco-0.3.5/third_party/flatbuffers/tests/monster_test_serialize/my_game/example/any_generated.rs +223 -0
- oproco-0.3.5/third_party/flatbuffers/tests/monster_test_serialize/my_game/example/any_unique_aliases_generated.rs +223 -0
- oproco-0.3.5/third_party/flatbuffers/tests/monster_test_serialize/my_game/example/color_generated.rs +73 -0
- oproco-0.3.5/third_party/flatbuffers/tests/monster_test_serialize/my_game/example/long_enum_generated.rs +69 -0
- oproco-0.3.5/third_party/flatbuffers/tests/monster_test_serialize/my_game/example/monster_generated.rs +2234 -0
- oproco-0.3.5/third_party/flatbuffers/tests/monster_test_serialize/my_game/example/race_generated.rs +126 -0
- oproco-0.3.5/third_party/flatbuffers/tests/monster_test_serialize/my_game/example/referrable_generated.rs +156 -0
- oproco-0.3.5/third_party/flatbuffers/tests/monster_test_serialize/my_game/example/stat_generated.rs +212 -0
- oproco-0.3.5/third_party/flatbuffers/tests/monster_test_serialize/my_game/example/struct_of_structs_generated.rs +154 -0
- oproco-0.3.5/third_party/flatbuffers/tests/monster_test_serialize/my_game/example/struct_of_structs_of_structs_generated.rs +116 -0
- oproco-0.3.5/third_party/flatbuffers/tests/monster_test_serialize/my_game/example/test_generated.rs +169 -0
- oproco-0.3.5/third_party/flatbuffers/tests/monster_test_serialize/my_game/example/test_simple_table_with_enum_generated.rs +146 -0
- oproco-0.3.5/third_party/flatbuffers/tests/monster_test_serialize/my_game/example/type_aliases_generated.rs +426 -0
- oproco-0.3.5/third_party/flatbuffers/tests/monster_test_serialize/my_game/example/vec_3_generated.rs +296 -0
- oproco-0.3.5/third_party/flatbuffers/tests/monster_test_serialize/my_game/example_2/monster_generated.rs +121 -0
- oproco-0.3.5/third_party/flatbuffers/tests/monster_test_serialize/my_game/in_parent_namespace_generated.rs +121 -0
- oproco-0.3.5/third_party/flatbuffers/tests/monster_test_serialize/my_game/other_name_space/from_include_generated.rs +114 -0
- oproco-0.3.5/third_party/flatbuffers/tests/monster_test_serialize/my_game/other_name_space/table_b_generated.rs +154 -0
- oproco-0.3.5/third_party/flatbuffers/tests/monster_test_serialize/my_game/other_name_space/unused_generated.rs +133 -0
- oproco-0.3.5/third_party/flatbuffers/tests/monster_test_serialize/table_a_generated.rs +154 -0
- oproco-0.3.5/third_party/flatbuffers/tests/monster_test_suffix/ext_only/monster_test.grpc.fb.cc +131 -0
- oproco-0.3.5/third_party/flatbuffers/tests/monster_test_suffix/ext_only/monster_test.grpc.fb.h +350 -0
- oproco-0.3.5/third_party/flatbuffers/tests/monster_test_suffix/ext_only/monster_test_generated.hpp +4332 -0
- oproco-0.3.5/third_party/flatbuffers/tests/monster_test_suffix/filesuffix_only/monster_test.grpc.fb.cc +131 -0
- oproco-0.3.5/third_party/flatbuffers/tests/monster_test_suffix/filesuffix_only/monster_test.grpc.fb.h +350 -0
- oproco-0.3.5/third_party/flatbuffers/tests/monster_test_suffix/filesuffix_only/monster_test_suffix.h +4332 -0
- oproco-0.3.5/third_party/flatbuffers/tests/monster_test_suffix/monster_test.grpc.fb.cc +131 -0
- oproco-0.3.5/third_party/flatbuffers/tests/monster_test_suffix/monster_test.grpc.fb.h +350 -0
- oproco-0.3.5/third_party/flatbuffers/tests/monster_test_suffix/monster_test_suffix.hpp +4332 -0
- oproco-0.3.5/third_party/flatbuffers/tests/monsterdata_extra.json +15 -0
- oproco-0.3.5/third_party/flatbuffers/tests/monsterdata_go_wire.mon.sp +0 -0
- oproco-0.3.5/third_party/flatbuffers/tests/monsterdata_python_wire.mon +0 -0
- oproco-0.3.5/third_party/flatbuffers/tests/monsterdata_test.afb +276 -0
- oproco-0.3.5/third_party/flatbuffers/tests/monsterdata_test.golden +82 -0
- oproco-0.3.5/third_party/flatbuffers/tests/monsterdata_test.json +98 -0
- oproco-0.3.5/third_party/flatbuffers/tests/monsterdata_test.mon +0 -0
- oproco-0.3.5/third_party/flatbuffers/tests/more_defaults/abc_generated.rs +92 -0
- oproco-0.3.5/third_party/flatbuffers/tests/more_defaults/mod.rs +6 -0
- oproco-0.3.5/third_party/flatbuffers/tests/more_defaults/more_defaults_generated.rs +284 -0
- oproco-0.3.5/third_party/flatbuffers/tests/more_defaults.fbs +12 -0
- oproco-0.3.5/third_party/flatbuffers/tests/name_clash_test/invalid_test1.fbs +5 -0
- oproco-0.3.5/third_party/flatbuffers/tests/name_clash_test/invalid_test2.fbs +3 -0
- oproco-0.3.5/third_party/flatbuffers/tests/name_clash_test/valid_test1.fbs +5 -0
- oproco-0.3.5/third_party/flatbuffers/tests/name_clash_test/valid_test2.fbs +3 -0
- oproco-0.3.5/third_party/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB/EnumInNestedNS.cs +17 -0
- oproco-0.3.5/third_party/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB/EnumInNestedNS.go +32 -0
- oproco-0.3.5/third_party/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB/EnumInNestedNS.java +20 -0
- oproco-0.3.5/third_party/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB/EnumInNestedNS.kt +16 -0
- oproco-0.3.5/third_party/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB/EnumInNestedNS.lua +11 -0
- oproco-0.3.5/third_party/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB/EnumInNestedNS.php +25 -0
- oproco-0.3.5/third_party/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB/EnumInNestedNS.py +9 -0
- oproco-0.3.5/third_party/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB/StructInNestedNS.cs +62 -0
- oproco-0.3.5/third_party/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB/StructInNestedNS.go +66 -0
- oproco-0.3.5/third_party/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB/StructInNestedNS.java +75 -0
- oproco-0.3.5/third_party/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB/StructInNestedNS.kt +40 -0
- oproco-0.3.5/third_party/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB/StructInNestedNS.lua +31 -0
- oproco-0.3.5/third_party/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB/StructInNestedNS.php +52 -0
- oproco-0.3.5/third_party/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB/StructInNestedNS.py +72 -0
- oproco-0.3.5/third_party/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB/StructInNestedNST.java +33 -0
- oproco-0.3.5/third_party/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB/TableInNestedNS.cs +75 -0
- oproco-0.3.5/third_party/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB/TableInNestedNS.go +82 -0
- oproco-0.3.5/third_party/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB/TableInNestedNS.java +97 -0
- oproco-0.3.5/third_party/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB/TableInNestedNS.kt +66 -0
- oproco-0.3.5/third_party/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB/TableInNestedNS.lua +38 -0
- oproco-0.3.5/third_party/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB/TableInNestedNS.php +84 -0
- oproco-0.3.5/third_party/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB/TableInNestedNS.py +93 -0
- oproco-0.3.5/third_party/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB/TableInNestedNST.java +23 -0
- oproco-0.3.5/third_party/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB/UnionInNestedNS.cs +97 -0
- oproco-0.3.5/third_party/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB/UnionInNestedNS.go +36 -0
- oproco-0.3.5/third_party/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB/UnionInNestedNS.java +19 -0
- oproco-0.3.5/third_party/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB/UnionInNestedNS.kt +15 -0
- oproco-0.3.5/third_party/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB/UnionInNestedNS.lua +10 -0
- oproco-0.3.5/third_party/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB/UnionInNestedNS.php +23 -0
- oproco-0.3.5/third_party/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB/UnionInNestedNS.py +18 -0
- oproco-0.3.5/third_party/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB/UnionInNestedNSUnion.java +44 -0
- oproco-0.3.5/third_party/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB/__init__.py +0 -0
- oproco-0.3.5/third_party/flatbuffers/tests/namespace_test/NamespaceA/SecondTableInA.cs +75 -0
- oproco-0.3.5/third_party/flatbuffers/tests/namespace_test/NamespaceA/SecondTableInA.go +86 -0
- oproco-0.3.5/third_party/flatbuffers/tests/namespace_test/NamespaceA/SecondTableInA.java +93 -0
- oproco-0.3.5/third_party/flatbuffers/tests/namespace_test/NamespaceA/SecondTableInA.kt +62 -0
- oproco-0.3.5/third_party/flatbuffers/tests/namespace_test/NamespaceA/SecondTableInA.lua +40 -0
- oproco-0.3.5/third_party/flatbuffers/tests/namespace_test/NamespaceA/SecondTableInA.php +82 -0
- oproco-0.3.5/third_party/flatbuffers/tests/namespace_test/NamespaceA/SecondTableInA.py +106 -0
- oproco-0.3.5/third_party/flatbuffers/tests/namespace_test/NamespaceA/SecondTableInAT.java +23 -0
- oproco-0.3.5/third_party/flatbuffers/tests/namespace_test/NamespaceA/TableInC.cs +38 -0
- oproco-0.3.5/third_party/flatbuffers/tests/namespace_test/NamespaceA/TableInC.go +51 -0
- oproco-0.3.5/third_party/flatbuffers/tests/namespace_test/NamespaceA/TableInC.php +100 -0
- oproco-0.3.5/third_party/flatbuffers/tests/namespace_test/NamespaceA/TableInC.py +57 -0
- oproco-0.3.5/third_party/flatbuffers/tests/namespace_test/NamespaceA/TableInFirstNS.cs +133 -0
- oproco-0.3.5/third_party/flatbuffers/tests/namespace_test/NamespaceA/TableInFirstNS.go +162 -0
- oproco-0.3.5/third_party/flatbuffers/tests/namespace_test/NamespaceA/TableInFirstNS.java +175 -0
- oproco-0.3.5/third_party/flatbuffers/tests/namespace_test/NamespaceA/TableInFirstNS.kt +117 -0
- oproco-0.3.5/third_party/flatbuffers/tests/namespace_test/NamespaceA/TableInFirstNS.lua +75 -0
- oproco-0.3.5/third_party/flatbuffers/tests/namespace_test/NamespaceA/TableInFirstNS.php +155 -0
- oproco-0.3.5/third_party/flatbuffers/tests/namespace_test/NamespaceA/TableInFirstNS.py +201 -0
- oproco-0.3.5/third_party/flatbuffers/tests/namespace_test/NamespaceA/TableInFirstNST.java +53 -0
- oproco-0.3.5/third_party/flatbuffers/tests/namespace_test/NamespaceA/__init__.py +0 -0
- oproco-0.3.5/third_party/flatbuffers/tests/namespace_test/NamespaceC/TableInC.cs +86 -0
- oproco-0.3.5/third_party/flatbuffers/tests/namespace_test/NamespaceC/TableInC.go +106 -0
- oproco-0.3.5/third_party/flatbuffers/tests/namespace_test/NamespaceC/TableInC.java +112 -0
- oproco-0.3.5/third_party/flatbuffers/tests/namespace_test/NamespaceC/TableInC.kt +82 -0
- oproco-0.3.5/third_party/flatbuffers/tests/namespace_test/NamespaceC/TableInC.lua +50 -0
- oproco-0.3.5/third_party/flatbuffers/tests/namespace_test/NamespaceC/TableInC.php +100 -0
- oproco-0.3.5/third_party/flatbuffers/tests/namespace_test/NamespaceC/TableInC.py +133 -0
- oproco-0.3.5/third_party/flatbuffers/tests/namespace_test/NamespaceC/TableInCT.java +33 -0
- oproco-0.3.5/third_party/flatbuffers/tests/namespace_test/NamespaceC/__init__.py +0 -0
- oproco-0.3.5/third_party/flatbuffers/tests/namespace_test/mod.rs +25 -0
- oproco-0.3.5/third_party/flatbuffers/tests/namespace_test/namespace_a/namespace_b/enum_in_nested_ns_generated.rs +92 -0
- oproco-0.3.5/third_party/flatbuffers/tests/namespace_test/namespace_a/namespace_b/struct_in_nested_ns_generated.rs +155 -0
- oproco-0.3.5/third_party/flatbuffers/tests/namespace_test/namespace_a/namespace_b/table_in_nested_ns_generated.rs +133 -0
- oproco-0.3.5/third_party/flatbuffers/tests/namespace_test/namespace_a/namespace_b/union_in_nested_ns_generated.rs +137 -0
- oproco-0.3.5/third_party/flatbuffers/tests/namespace_test/namespace_a/second_table_in_a_generated.rs +137 -0
- oproco-0.3.5/third_party/flatbuffers/tests/namespace_test/namespace_a/table_in_first_ns_generated.rs +267 -0
- oproco-0.3.5/third_party/flatbuffers/tests/namespace_test/namespace_c/table_in_c_generated.rs +164 -0
- oproco-0.3.5/third_party/flatbuffers/tests/namespace_test/namespace_test1.fbs +21 -0
- oproco-0.3.5/third_party/flatbuffers/tests/namespace_test/namespace_test1_generated.lobster +47 -0
- oproco-0.3.5/third_party/flatbuffers/tests/namespace_test/namespace_test1_namespace_a.namespace_b_generated.dart +286 -0
- oproco-0.3.5/third_party/flatbuffers/tests/namespace_test/namespace_test2.fbs +25 -0
- oproco-0.3.5/third_party/flatbuffers/tests/namespace_test/namespace_test2_generated.lobster +100 -0
- oproco-0.3.5/third_party/flatbuffers/tests/namespace_test/namespace_test2_namespace_a_generated.dart +295 -0
- oproco-0.3.5/third_party/flatbuffers/tests/namespace_test/namespace_test2_namespace_c_generated.dart +125 -0
- oproco-0.3.5/third_party/flatbuffers/tests/nan_inf_test.fbs +14 -0
- oproco-0.3.5/third_party/flatbuffers/tests/native_inline_table_test.fbs +7 -0
- oproco-0.3.5/third_party/flatbuffers/tests/native_type_test.fbs +32 -0
- oproco-0.3.5/third_party/flatbuffers/tests/native_type_test_impl.cpp +56 -0
- oproco-0.3.5/third_party/flatbuffers/tests/native_type_test_impl.h +60 -0
- oproco-0.3.5/third_party/flatbuffers/tests/nested_namespace_test/nested_namespace_test1.fbs +3 -0
- oproco-0.3.5/third_party/flatbuffers/tests/nested_namespace_test/nested_namespace_test1_generated.cs +21 -0
- oproco-0.3.5/third_party/flatbuffers/tests/nested_namespace_test/nested_namespace_test2.fbs +3 -0
- oproco-0.3.5/third_party/flatbuffers/tests/nested_namespace_test/nested_namespace_test2_generated.cs +19 -0
- oproco-0.3.5/third_party/flatbuffers/tests/nested_namespace_test/nested_namespace_test3.fbs +7 -0
- oproco-0.3.5/third_party/flatbuffers/tests/nested_namespace_test/nested_namespace_test3_generated.cs +75 -0
- oproco-0.3.5/third_party/flatbuffers/tests/nested_union_test.fbs +36 -0
- oproco-0.3.5/third_party/flatbuffers/tests/nim/testnim.py +22 -0
- oproco-0.3.5/third_party/flatbuffers/tests/nim/tests/moredefaults/test.nim +27 -0
- oproco-0.3.5/third_party/flatbuffers/tests/nim/tests/mutatingbool/test.nim +39 -0
- oproco-0.3.5/third_party/flatbuffers/tests/nim/tests/mygame/test.nim +207 -0
- oproco-0.3.5/third_party/flatbuffers/tests/nim/tests/optional_scalars/test.nim +29 -0
- oproco-0.3.5/third_party/flatbuffers/tests/non_zero_enum.fbs +13 -0
- oproco-0.3.5/third_party/flatbuffers/tests/optional_scalars/OptionalByte.cs +16 -0
- oproco-0.3.5/third_party/flatbuffers/tests/optional_scalars/OptionalByte.go +32 -0
- oproco-0.3.5/third_party/flatbuffers/tests/optional_scalars/OptionalByte.java +16 -0
- oproco-0.3.5/third_party/flatbuffers/tests/optional_scalars/OptionalByte.kt +12 -0
- oproco-0.3.5/third_party/flatbuffers/tests/optional_scalars/OptionalByte.nim +14 -0
- oproco-0.3.5/third_party/flatbuffers/tests/optional_scalars/OptionalByte.py +8 -0
- oproco-0.3.5/third_party/flatbuffers/tests/optional_scalars/ScalarStuff.cs +400 -0
- oproco-0.3.5/third_party/flatbuffers/tests/optional_scalars/ScalarStuff.go +760 -0
- oproco-0.3.5/third_party/flatbuffers/tests/optional_scalars/ScalarStuff.java +207 -0
- oproco-0.3.5/third_party/flatbuffers/tests/optional_scalars/ScalarStuff.kt +303 -0
- oproco-0.3.5/third_party/flatbuffers/tests/optional_scalars/ScalarStuff.nim +331 -0
- oproco-0.3.5/third_party/flatbuffers/tests/optional_scalars/ScalarStuff.py +693 -0
- oproco-0.3.5/third_party/flatbuffers/tests/optional_scalars/__init__.py +0 -0
- oproco-0.3.5/third_party/flatbuffers/tests/optional_scalars/mod.rs +9 -0
- oproco-0.3.5/third_party/flatbuffers/tests/optional_scalars/optional_scalars/optional_byte_generated.rs +92 -0
- oproco-0.3.5/third_party/flatbuffers/tests/optional_scalars/optional_scalars/scalar_stuff_generated.rs +1023 -0
- oproco-0.3.5/third_party/flatbuffers/tests/optional_scalars.fbs +59 -0
- oproco-0.3.5/third_party/flatbuffers/tests/optional_scalars.json +21 -0
- oproco-0.3.5/third_party/flatbuffers/tests/optional_scalars_defaults.json +38 -0
- oproco-0.3.5/third_party/flatbuffers/tests/optional_scalars_generated.lobster +204 -0
- oproco-0.3.5/third_party/flatbuffers/tests/optional_scalars_generated.ts +4 -0
- oproco-0.3.5/third_party/flatbuffers/tests/optional_scalars_test.cpp +102 -0
- oproco-0.3.5/third_party/flatbuffers/tests/optional_scalars_test.h +12 -0
- oproco-0.3.5/third_party/flatbuffers/tests/order/Food.go +106 -0
- oproco-0.3.5/third_party/flatbuffers/tests/parser_test.cpp +939 -0
- oproco-0.3.5/third_party/flatbuffers/tests/parser_test.h +33 -0
- oproco-0.3.5/third_party/flatbuffers/tests/phpTest.php +632 -0
- oproco-0.3.5/third_party/flatbuffers/tests/phpUnionVectorTest.php +109 -0
- oproco-0.3.5/third_party/flatbuffers/tests/phpUnionVectorTest.sh +8 -0
- oproco-0.3.5/third_party/flatbuffers/tests/private_annotation_test/ab_generated.rs +88 -0
- oproco-0.3.5/third_party/flatbuffers/tests/private_annotation_test/annotations_generated.rs +133 -0
- oproco-0.3.5/third_party/flatbuffers/tests/private_annotation_test/any_generated.rs +165 -0
- oproco-0.3.5/third_party/flatbuffers/tests/private_annotation_test/game_generated.rs +133 -0
- oproco-0.3.5/third_party/flatbuffers/tests/private_annotation_test/mod.rs +12 -0
- oproco-0.3.5/third_party/flatbuffers/tests/private_annotation_test/object_generated.rs +120 -0
- oproco-0.3.5/third_party/flatbuffers/tests/private_annotation_test.fbs +18 -0
- oproco-0.3.5/third_party/flatbuffers/tests/proto_test.cpp +335 -0
- oproco-0.3.5/third_party/flatbuffers/tests/proto_test.h +46 -0
- oproco-0.3.5/third_party/flatbuffers/tests/prototest/GenerateProtoGoldens.sh +31 -0
- oproco-0.3.5/third_party/flatbuffers/tests/prototest/imported.proto +5 -0
- oproco-0.3.5/third_party/flatbuffers/tests/prototest/non-positive-id.proto +9 -0
- oproco-0.3.5/third_party/flatbuffers/tests/prototest/test.golden.fbs +87 -0
- oproco-0.3.5/third_party/flatbuffers/tests/prototest/test.proto +78 -0
- oproco-0.3.5/third_party/flatbuffers/tests/prototest/test_id.golden.fbs +87 -0
- oproco-0.3.5/third_party/flatbuffers/tests/prototest/test_include.golden.fbs +85 -0
- oproco-0.3.5/third_party/flatbuffers/tests/prototest/test_include_id.golden.fbs +85 -0
- oproco-0.3.5/third_party/flatbuffers/tests/prototest/test_suffix.golden.fbs +87 -0
- oproco-0.3.5/third_party/flatbuffers/tests/prototest/test_suffix_id.golden.fbs +87 -0
- oproco-0.3.5/third_party/flatbuffers/tests/prototest/test_union.golden.fbs +89 -0
- oproco-0.3.5/third_party/flatbuffers/tests/prototest/test_union_id.golden.fbs +89 -0
- oproco-0.3.5/third_party/flatbuffers/tests/prototest/test_union_include.golden.fbs +87 -0
- oproco-0.3.5/third_party/flatbuffers/tests/prototest/test_union_include_id.golden.fbs +87 -0
- oproco-0.3.5/third_party/flatbuffers/tests/prototest/test_union_suffix.golden.fbs +89 -0
- oproco-0.3.5/third_party/flatbuffers/tests/prototest/test_union_suffix_id.golden.fbs +89 -0
- oproco-0.3.5/third_party/flatbuffers/tests/prototest/twice-id.proto +10 -0
- oproco-0.3.5/third_party/flatbuffers/tests/prototest/use-reserved-id.proto +10 -0
- oproco-0.3.5/third_party/flatbuffers/tests/py_flexbuffers_test.py +1599 -0
- oproco-0.3.5/third_party/flatbuffers/tests/py_test.py +3318 -0
- oproco-0.3.5/third_party/flatbuffers/tests/reflection_test.cpp +326 -0
- oproco-0.3.5/third_party/flatbuffers/tests/reflection_test.h +19 -0
- oproco-0.3.5/third_party/flatbuffers/tests/required_strings.fbs +12 -0
- oproco-0.3.5/third_party/flatbuffers/tests/rust_namer_test/mod.rs +23 -0
- oproco-0.3.5/third_party/flatbuffers/tests/rust_namer_test/rust_namer_test/field_table_generated.rs +109 -0
- oproco-0.3.5/third_party/flatbuffers/tests/rust_namer_test/rust_namer_test/field_union_generated.rs +137 -0
- oproco-0.3.5/third_party/flatbuffers/tests/rust_namer_test/rust_namer_test/game_message_generated.rs +193 -0
- oproco-0.3.5/third_party/flatbuffers/tests/rust_namer_test/rust_namer_test/game_message_wrapper_generated.rs +247 -0
- oproco-0.3.5/third_party/flatbuffers/tests/rust_namer_test/rust_namer_test/player_input_change_generated.rs +109 -0
- oproco-0.3.5/third_party/flatbuffers/tests/rust_namer_test/rust_namer_test/player_spectate_generated.rs +109 -0
- oproco-0.3.5/third_party/flatbuffers/tests/rust_namer_test/rust_namer_test/player_stat_event_generated.rs +109 -0
- oproco-0.3.5/third_party/flatbuffers/tests/rust_namer_test/rust_namer_test/possibly_reserved_words_generated.rs +225 -0
- oproco-0.3.5/third_party/flatbuffers/tests/rust_namer_test/rust_namer_test/root_table_generated.rs +191 -0
- oproco-0.3.5/third_party/flatbuffers/tests/rust_namer_test.fbs +37 -0
- oproco-0.3.5/third_party/flatbuffers/tests/rust_no_std_compilation_test/.cargo/config.toml +5 -0
- oproco-0.3.5/third_party/flatbuffers/tests/rust_no_std_compilation_test/Cargo.toml +13 -0
- oproco-0.3.5/third_party/flatbuffers/tests/rust_no_std_compilation_test/src/main.rs +34 -0
- oproco-0.3.5/third_party/flatbuffers/tests/rust_reflection_test/.gitignore +2 -0
- oproco-0.3.5/third_party/flatbuffers/tests/rust_reflection_test/Cargo.toml +9 -0
- oproco-0.3.5/third_party/flatbuffers/tests/rust_reflection_test/src/lib.rs +2043 -0
- oproco-0.3.5/third_party/flatbuffers/tests/rust_serialize_test/Cargo.toml +11 -0
- oproco-0.3.5/third_party/flatbuffers/tests/rust_serialize_test/src/main.rs +96 -0
- oproco-0.3.5/third_party/flatbuffers/tests/rust_usage_test/Cargo.toml +58 -0
- oproco-0.3.5/third_party/flatbuffers/tests/rust_usage_test/benches/benchmarks.rs +30 -0
- oproco-0.3.5/third_party/flatbuffers/tests/rust_usage_test/benches/flatbuffers_benchmarks.rs +256 -0
- oproco-0.3.5/third_party/flatbuffers/tests/rust_usage_test/benches/flexbuffers_benchmarks.rs +295 -0
- oproco-0.3.5/third_party/flatbuffers/tests/rust_usage_test/bin/flatbuffers_alloc_check.rs +176 -0
- oproco-0.3.5/third_party/flatbuffers/tests/rust_usage_test/bin/flexbuffers_alloc_check.rs +144 -0
- oproco-0.3.5/third_party/flatbuffers/tests/rust_usage_test/bin/monster_example.rs +20 -0
- oproco-0.3.5/third_party/flatbuffers/tests/rust_usage_test/outdir/.gitignore +1 -0
- oproco-0.3.5/third_party/flatbuffers/tests/rust_usage_test/outdir/Cargo.toml +11 -0
- oproco-0.3.5/third_party/flatbuffers/tests/rust_usage_test/outdir/src/main.rs +21 -0
- oproco-0.3.5/third_party/flatbuffers/tests/rust_usage_test/tests/arrays_test.rs +342 -0
- oproco-0.3.5/third_party/flatbuffers/tests/rust_usage_test/tests/flexbuffers_tests/binary_format.rs +535 -0
- oproco-0.3.5/third_party/flatbuffers/tests/rust_usage_test/tests/flexbuffers_tests/interop.rs +50 -0
- oproco-0.3.5/third_party/flatbuffers/tests/rust_usage_test/tests/flexbuffers_tests/mod.rs +21 -0
- oproco-0.3.5/third_party/flatbuffers/tests/rust_usage_test/tests/flexbuffers_tests/other_api.rs +206 -0
- oproco-0.3.5/third_party/flatbuffers/tests/rust_usage_test/tests/flexbuffers_tests/qc_serious.rs +139 -0
- oproco-0.3.5/third_party/flatbuffers/tests/rust_usage_test/tests/flexbuffers_tests/rwyw.rs +504 -0
- oproco-0.3.5/third_party/flatbuffers/tests/rust_usage_test/tests/include_test.rs +15 -0
- oproco-0.3.5/third_party/flatbuffers/tests/rust_usage_test/tests/integration_test.rs +3227 -0
- oproco-0.3.5/third_party/flatbuffers/tests/rust_usage_test/tests/more_defaults_test.rs +35 -0
- oproco-0.3.5/third_party/flatbuffers/tests/rust_usage_test/tests/optional_scalars_test.rs +124 -0
- oproco-0.3.5/third_party/flatbuffers/tests/rust_usage_test/tests/vtable_zeroed_test.rs +164 -0
- oproco-0.3.5/third_party/flatbuffers/tests/service_test.fbs +11 -0
- oproco-0.3.5/third_party/flatbuffers/tests/service_test_generated.py +57 -0
- oproco-0.3.5/third_party/flatbuffers/tests/service_test_generated.pyi +25 -0
- oproco-0.3.5/third_party/flatbuffers/tests/service_test_grpc.fb.py +103 -0
- oproco-0.3.5/third_party/flatbuffers/tests/service_test_grpc.fb.pyi +27 -0
- oproco-0.3.5/third_party/flatbuffers/tests/swift/Tests/Flatbuffers/ByteBufferTests.swift +132 -0
- oproco-0.3.5/third_party/flatbuffers/tests/swift/Tests/Flatbuffers/FlatBuffersArraysTests.swift +236 -0
- oproco-0.3.5/third_party/flatbuffers/tests/swift/Tests/Flatbuffers/FlatBuffersMonsterWriterTests.swift +677 -0
- oproco-0.3.5/third_party/flatbuffers/tests/swift/Tests/Flatbuffers/FlatBuffersNanInfTests.swift +84 -0
- oproco-0.3.5/third_party/flatbuffers/tests/swift/Tests/Flatbuffers/FlatBuffersStructsTests.swift +46 -0
- oproco-0.3.5/third_party/flatbuffers/tests/swift/Tests/Flatbuffers/FlatBuffersTests.swift +245 -0
- oproco-0.3.5/third_party/flatbuffers/tests/swift/Tests/Flatbuffers/FlatBuffersUnionTests.swift +492 -0
- oproco-0.3.5/third_party/flatbuffers/tests/swift/Tests/Flatbuffers/FlatBuffersVectorsTests.swift +246 -0
- oproco-0.3.5/third_party/flatbuffers/tests/swift/Tests/Flatbuffers/FlatbuffersDoubleTests.swift +125 -0
- oproco-0.3.5/third_party/flatbuffers/tests/swift/Tests/Flatbuffers/FlatbuffersMoreDefaults.swift +87 -0
- oproco-0.3.5/third_party/flatbuffers/tests/swift/Tests/Flatbuffers/FlatbuffersVerifierTests.swift +415 -0
- oproco-0.3.5/third_party/flatbuffers/tests/swift/Tests/Flatbuffers/MutatingBool_generated.swift +152 -0
- oproco-0.3.5/third_party/flatbuffers/tests/swift/Tests/Flatbuffers/arrays_test_generated.swift +359 -0
- oproco-0.3.5/third_party/flatbuffers/tests/swift/Tests/Flatbuffers/monster_test.grpc.swift +210 -0
- oproco-0.3.5/third_party/flatbuffers/tests/swift/Tests/Flatbuffers/monster_test_generated.swift +2472 -0
- oproco-0.3.5/third_party/flatbuffers/tests/swift/Tests/Flatbuffers/monsterdata_test.mon +0 -0
- oproco-0.3.5/third_party/flatbuffers/tests/swift/Tests/Flatbuffers/more_defaults_generated.swift +195 -0
- oproco-0.3.5/third_party/flatbuffers/tests/swift/Tests/Flatbuffers/nan_inf_test_generated.swift +118 -0
- oproco-0.3.5/third_party/flatbuffers/tests/swift/Tests/Flatbuffers/optional_scalars_generated.swift +411 -0
- oproco-0.3.5/third_party/flatbuffers/tests/swift/Tests/Flatbuffers/union_vector_generated.swift +722 -0
- oproco-0.3.5/third_party/flatbuffers/tests/swift/Tests/Flatbuffers/vector_has_test_generated.swift +75 -0
- oproco-0.3.5/third_party/flatbuffers/tests/swift/Tests/Flexbuffers/FlexBuffersJSONTests.swift +51 -0
- oproco-0.3.5/third_party/flatbuffers/tests/swift/Tests/Flexbuffers/FlexBuffersReaderTests.swift +140 -0
- oproco-0.3.5/third_party/flatbuffers/tests/swift/Tests/Flexbuffers/FlexBuffersStringTests.swift +43 -0
- oproco-0.3.5/third_party/flatbuffers/tests/swift/Tests/Flexbuffers/FlexBuffersWriterTests.swift +249 -0
- oproco-0.3.5/third_party/flatbuffers/tests/swift/Tests/Flexbuffers/Mocks.swift +79 -0
- oproco-0.3.5/third_party/flatbuffers/tests/swift/Wasm.tests/.swift-version +1 -0
- oproco-0.3.5/third_party/flatbuffers/tests/swift/Wasm.tests/Package.swift +41 -0
- oproco-0.3.5/third_party/flatbuffers/tests/swift/Wasm.tests/Sources/Wasm/Wasm.swift +17 -0
- oproco-0.3.5/third_party/flatbuffers/tests/swift/Wasm.tests/Tests/FlatBuffers.Test.Swift.WasmTests/FlatBuffersMonsterWriterTests.swift +584 -0
- oproco-0.3.5/third_party/flatbuffers/tests/swift/Wasm.tests/Tests/FlatBuffers.Test.Swift.WasmTests/monster_test_generated.swift +2472 -0
- oproco-0.3.5/third_party/flatbuffers/tests/swift/Wasm.tests/Tests/FlexBuffers.Test.Swift.WasmTests/FlexBuffersJSONTests.swift +51 -0
- oproco-0.3.5/third_party/flatbuffers/tests/swift/Wasm.tests/Tests/FlexBuffers.Test.Swift.WasmTests/FlexBuffersReaderTests.swift +140 -0
- oproco-0.3.5/third_party/flatbuffers/tests/swift/Wasm.tests/Tests/FlexBuffers.Test.Swift.WasmTests/FlexBuffersStringTests.swift +43 -0
- oproco-0.3.5/third_party/flatbuffers/tests/swift/Wasm.tests/Tests/FlexBuffers.Test.Swift.WasmTests/FlexBuffersWriterTests.swift +249 -0
- oproco-0.3.5/third_party/flatbuffers/tests/swift/Wasm.tests/Tests/FlexBuffers.Test.Swift.WasmTests/Mocks.swift +79 -0
- oproco-0.3.5/third_party/flatbuffers/tests/swift/fuzzer/CodeGenerationTests/test_import.fbs +3 -0
- oproco-0.3.5/third_party/flatbuffers/tests/swift/fuzzer/CodeGenerationTests/test_import_generated.swift +92 -0
- oproco-0.3.5/third_party/flatbuffers/tests/swift/fuzzer/CodeGenerationTests/test_no_include.fbs +13 -0
- oproco-0.3.5/third_party/flatbuffers/tests/swift/fuzzer/CodeGenerationTests/test_no_include_generated.swift +256 -0
- oproco-0.3.5/third_party/flatbuffers/tests/swift/fuzzer/Package.swift +35 -0
- oproco-0.3.5/third_party/flatbuffers/tests/swift/fuzzer/Sources/fuzzer/fuzzer.fbs +32 -0
- oproco-0.3.5/third_party/flatbuffers/tests/swift/fuzzer/Sources/fuzzer/fuzzer_generated.swift +418 -0
- oproco-0.3.5/third_party/flatbuffers/tests/swift/fuzzer/Sources/fuzzer/main.swift +29 -0
- oproco-0.3.5/third_party/flatbuffers/tests/test.cpp +1894 -0
- oproco-0.3.5/third_party/flatbuffers/tests/test.fbs +85 -0
- oproco-0.3.5/third_party/flatbuffers/tests/test_assert.cpp +69 -0
- oproco-0.3.5/third_party/flatbuffers/tests/test_assert.h +132 -0
- oproco-0.3.5/third_party/flatbuffers/tests/test_builder.cpp +148 -0
- oproco-0.3.5/third_party/flatbuffers/tests/test_builder.h +306 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/BUILD.bazel +62 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/JavaScriptComplexArraysTest.js +139 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/JavaScriptFlexBuffersTest.js +445 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/JavaScriptRequiredStringTest.js +29 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/JavaScriptTest.js +545 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/JavaScriptTestv1.cjs +367 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/JavaScriptUndefinedForOptionals.js +60 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/JavaScriptUnionUnderlyingTypeTest.js +27 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/JavaScriptUnionVectorTest.js +102 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/TypeScriptTest.py +221 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/arrays_test_complex/arrays_test_complex.fbs +46 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/arrays_test_complex/arrays_test_complex_generated.cjs +460 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/arrays_test_complex/my-game/example/array-struct.d.ts +53 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/arrays_test_complex/my-game/example/array-struct.js +115 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/arrays_test_complex/my-game/example/array-struct.ts +194 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/arrays_test_complex/my-game/example/array-table.d.ts +48 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/arrays_test_complex/my-game/example/array-table.js +88 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/arrays_test_complex/my-game/example/array-table.ts +129 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/arrays_test_complex/my-game/example/inner-struct.d.ts +31 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/arrays_test_complex/my-game/example/inner-struct.js +64 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/arrays_test_complex/my-game/example/inner-struct.ts +96 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/arrays_test_complex/my-game/example/nested-struct.d.ts +42 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/arrays_test_complex/my-game/example/nested-struct.js +93 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/arrays_test_complex/my-game/example/nested-struct.ts +153 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/arrays_test_complex/my-game/example/outer-struct.d.ts +51 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/arrays_test_complex/my-game/example/outer-struct.js +111 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/arrays_test_complex/my-game/example/outer-struct.ts +172 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/arrays_test_complex/my-game/example/test-enum.d.ts +5 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/arrays_test_complex/my-game/example/test-enum.js +9 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/arrays_test_complex/my-game/example/test-enum.ts +9 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/arrays_test_complex/my-game/example.d.ts +6 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/arrays_test_complex/my-game/example.js +9 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/arrays_test_complex/my-game/example.ts +10 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/bazel_repository_test_dir/.bazelignore +1 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/bazel_repository_test_dir/.bazelrc +5 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/bazel_repository_test_dir/.gitignore +1 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/bazel_repository_test_dir/.npmrc +1 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/bazel_repository_test_dir/BUILD.bazel +41 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/bazel_repository_test_dir/MODULE.bazel +39 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/bazel_repository_test_dir/README.md +8 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/bazel_repository_test_dir/import_test.js +28 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/bazel_repository_test_dir/independent_deps_test.js +19 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/bazel_repository_test_dir/one.fbs +7 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/bazel_repository_test_dir/package.json +8 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/bazel_repository_test_dir/pnpm-lock.yaml +12 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/bazel_repository_test_dir/two.fbs +9 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/com/company/test/person.ts +89 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/com/company/test.ts +5 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/foobar/abc.d.ts +3 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/foobar/abc.js +7 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/foobar/abc.ts +7 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/foobar/class.d.ts +3 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/foobar/class.js +7 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/foobar/class.ts +7 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/foobar/tab.ts +138 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/foobar.d.ts +1 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/foobar.js +4 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/foobar.ts +5 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/longer-namespace/a/b/c/person.d.ts +34 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/longer-namespace/a/b/c/person.js +58 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/longer-namespace/a/b/c/person.ts +89 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/longer-namespace/a/b/c.d.ts +1 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/longer-namespace/a/b/c.js +4 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/longer-namespace/a/b/c.ts +5 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/monster_test.d.ts +2 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/monster_test.js +5 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/monster_test.ts +6 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/monster_test_generated.cjs +2588 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/monsterdata_javascript_wire.mon +0 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/my-game/example/ability.d.ts +27 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/my-game/example/ability.js +54 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/my-game/example/ability.ts +79 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/my-game/example/any-ambiguous-aliases.d.ts +16 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/my-game/example/any-ambiguous-aliases.js +39 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/my-game/example/any-ambiguous-aliases.ts +40 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/my-game/example/any-unique-aliases.d.ts +23 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/my-game/example/any-unique-aliases.js +42 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/my-game/example/any-unique-aliases.ts +42 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/my-game/example/any.d.ts +23 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/my-game/example/any.js +42 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/my-game/example/any.ts +42 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/my-game/example/color.d.ts +15 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/my-game/example/color.js +19 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/my-game/example/color.ts +21 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/my-game/example/long-enum.d.ts +5 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/my-game/example/long-enum.js +9 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/my-game/example/long-enum.ts +9 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/my-game/example/monster.d.ts +674 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/my-game/example/monster.js +1554 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/my-game/example/monster.ts +1628 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/my-game/example/race.d.ts +6 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/my-game/example/race.js +10 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/my-game/example/race.ts +10 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/my-game/example/referrable.d.ts +35 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/my-game/example/referrable.js +74 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/my-game/example/referrable.ts +97 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/my-game/example/stat.d.ts +43 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/my-game/example/stat.js +104 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/my-game/example/stat.ts +140 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/my-game/example/struct-of-structs-of-structs.d.ts +33 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/my-game/example/struct-of-structs-of-structs.js +56 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/my-game/example/struct-of-structs-of-structs.ts +76 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/my-game/example/struct-of-structs.d.ts +33 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/my-game/example/struct-of-structs.js +67 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/my-game/example/struct-of-structs.ts +90 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/my-game/example/test-simple-table-with-enum.d.ts +40 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/my-game/example/test-simple-table-with-enum.js +79 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/my-game/example/test-simple-table-with-enum.ts +98 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/my-game/example/test.d.ts +25 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/my-game/example/test.js +55 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/my-game/example/test.ts +80 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/my-game/example/type-aliases.d.ts +135 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/my-game/example/type-aliases.js +318 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/my-game/example/type-aliases.ts +407 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/my-game/example/vec3.d.ts +50 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/my-game/example/vec3.js +103 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/my-game/example/vec3.ts +139 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/my-game/example.d.ts +25 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/my-game/example.js +19 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/my-game/example.ts +20 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/my-game/example2/monster.d.ts +25 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/my-game/example2/monster.js +54 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/my-game/example2/monster.ts +68 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/my-game/example2.d.ts +1 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/my-game/example2.js +4 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/my-game/example2.ts +5 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/my-game/in-parent-namespace.d.ts +32 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/my-game/in-parent-namespace.js +55 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/my-game/in-parent-namespace.ts +68 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/my-game/other-name-space/from-include.d.ts +3 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/my-game/other-name-space/from-include.js +7 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/my-game/other-name-space/from-include.ts +7 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/my-game/other-name-space/table-b.d.ts +30 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/my-game/other-name-space/table-b.js +73 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/my-game/other-name-space/table-b.ts +97 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/my-game/other-name-space/unused.d.ts +21 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/my-game/other-name-space/unused.js +44 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/my-game/other-name-space/unused.ts +57 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/my-game/other-name-space.d.ts +3 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/my-game/other-name-space.js +6 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/my-game/other-name-space.ts +7 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/my-game.d.ts +7 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/my-game.js +7 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/my-game.ts +8 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/no_import_ext/optional-scalars/optional-byte.d.ts +5 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/no_import_ext/optional-scalars/optional-byte.js +9 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/no_import_ext/optional-scalars/optional-byte.ts +9 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/no_import_ext/optional-scalars/scalar-stuff.d.ts +150 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/no_import_ext/optional-scalars/scalar-stuff.js +344 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/no_import_ext/optional-scalars/scalar-stuff.ts +475 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/no_import_ext/optional-scalars.d.ts +2 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/no_import_ext/optional-scalars.js +5 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/no_import_ext/optional-scalars.ts +6 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/no_import_ext/optional_scalars.d.ts +1 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/no_import_ext/optional_scalars.js +4 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/no_import_ext/optional_scalars.ts +5 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/optional-scalars/optional-byte.ts +9 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/optional-scalars/scalar-stuff.ts +429 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/optional-scalars.ts +6 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/optional_scalars.ts +5 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/package.json +6 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/pnpm-lock.yaml +10 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/reflection/advanced-features.d.ts +9 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/reflection/advanced-features.js +13 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/reflection/advanced-features.ts +13 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/reflection/base-type.d.ts +22 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/reflection/base-type.js +26 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/reflection/base-type.ts +26 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/reflection/enum-val.d.ts +81 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/reflection/enum-val.js +169 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/reflection/enum-val.ts +251 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/reflection/enum.d.ts +109 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/reflection/enum.js +225 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/reflection/enum.ts +336 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/reflection/field.d.ts +136 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/reflection/field.js +340 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/reflection/field.ts +472 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/reflection/key-value.d.ts +47 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/reflection/key-value.js +75 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/reflection/key-value.ts +113 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/reflection/object.d.ts +124 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/reflection/object.js +247 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/reflection/object.ts +381 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/reflection/rpccall.d.ts +83 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/reflection/rpccall.js +165 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/reflection/rpccall.ts +249 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/reflection/schema-file.d.ts +70 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/reflection/schema-file.js +102 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/reflection/schema-file.ts +172 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/reflection/schema.d.ts +130 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/reflection/schema.js +269 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/reflection/schema.ts +402 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/reflection/service.d.ts +103 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/reflection/service.js +189 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/reflection/service.ts +302 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/reflection/type.d.ts +73 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/reflection/type.js +174 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/reflection/type.ts +236 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/reflection.d.ts +12 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/reflection.js +15 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/reflection.ts +16 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/reflection_generated.cjs +1659 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/required-strings/foo.js +53 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/required-strings/foo.ts +76 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/required_strings_generated.js +2 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/required_strings_generated.ts +1 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/table-a.d.ts +30 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/table-a.js +73 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/table-a.ts +97 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/test_dir/BUILD.bazel +26 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/test_dir/import_test.js +31 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/test_dir/package.json +6 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/test_dir/typescript_include.fbs +13 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/test_dir/typescript_transitive_include.fbs +5 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/ts-undefined-for-optionals/optional-scalars/optional-byte.ts +9 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/ts-undefined-for-optionals/optional-scalars/scalar-stuff.ts +589 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/ts-undefined-for-optionals/optional-scalars.ts +6 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/ts-undefined-for-optionals/optional_scalars.ts +5 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/ts-undefined-for-optionals/optional_scalars_generated.cjs +551 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/tsconfig.json +22 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/tsconfig.node.json +12 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/typescript/class.d.ts +4 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/typescript/class.js +8 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/typescript/class.ts +8 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/typescript/object.d.ts +64 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/typescript/object.js +181 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/typescript/object.ts +239 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/typescript.d.ts +2 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/typescript.js +5 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/typescript.ts +6 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/typescript_include.ts +5 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/typescript_include_generated.cjs +31 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/typescript_keywords.d.ts +3 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/typescript_keywords.fbs +21 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/typescript_keywords.js +6 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/typescript_keywords.ts +7 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/typescript_keywords_generated.cjs +1912 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/typescript_transitive_include.ts +5 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/typescript_transitive_include_generated.cjs +31 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/unicode_test.mon +0 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/union-underlying-type/a.d.ts +22 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/union-underlying-type/a.js +68 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/union-underlying-type/a.ts +85 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/union-underlying-type/abc.d.ts +18 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/union-underlying-type/abc.js +41 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/union-underlying-type/abc.ts +51 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/union-underlying-type/b.d.ts +25 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/union-underlying-type/b.js +62 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/union-underlying-type/b.ts +83 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/union-underlying-type/c.d.ts +22 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/union-underlying-type/c.js +68 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/union-underlying-type/c.ts +85 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/union-underlying-type/d.d.ts +76 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/union-underlying-type/d.js +200 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/union-underlying-type/d.ts +284 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/union-underlying-type.d.ts +5 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/union-underlying-type.js +8 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/union-underlying-type.ts +9 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/union_underlying_type_test.d.ts +1 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/union_underlying_type_test.js +4 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/union_underlying_type_test.ts +5 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/union_vector/attacker.d.ts +36 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/union_vector/attacker.js +68 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/union_vector/attacker.ts +89 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/union_vector/book-reader.d.ts +23 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/union_vector/book-reader.js +44 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/union_vector/book-reader.ts +65 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/union_vector/character.d.ts +26 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/union_vector/character.js +56 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/union_vector/character.ts +51 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/union_vector/falling-tub.d.ts +23 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/union_vector/falling-tub.js +44 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/union_vector/falling-tub.ts +65 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/union_vector/gadget.d.ts +19 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/union_vector/gadget.js +35 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/union_vector/gadget.ts +38 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/union_vector/hand-fan.d.ts +30 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/union_vector/hand-fan.js +68 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/union_vector/hand-fan.ts +89 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/union_vector/movie.d.ts +90 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/union_vector/movie.js +222 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/union_vector/movie.ts +213 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/union_vector/rapunzel.d.ts +23 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/union_vector/rapunzel.js +44 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/union_vector/rapunzel.ts +65 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/union_vector/union_vector.d.ts +8 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/union_vector/union_vector.js +11 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/union_vector/union_vector.ts +12 -0
- oproco-0.3.5/third_party/flatbuffers/tests/ts/union_vector/union_vector_generated.cjs +558 -0
- oproco-0.3.5/third_party/flatbuffers/tests/type_field_collsion/Collision.cs +84 -0
- oproco-0.3.5/third_party/flatbuffers/tests/type_field_collsion.fbs +8 -0
- oproco-0.3.5/third_party/flatbuffers/tests/unicode_test.json +31 -0
- oproco-0.3.5/third_party/flatbuffers/tests/unicode_test.mon +0 -0
- oproco-0.3.5/third_party/flatbuffers/tests/union_underlying_type_test.fbs +17 -0
- oproco-0.3.5/third_party/flatbuffers/tests/union_value_collision.fbs +22 -0
- oproco-0.3.5/third_party/flatbuffers/tests/union_value_collsion/union_value_collision_generated.cs +531 -0
- oproco-0.3.5/third_party/flatbuffers/tests/union_vector/Attacker.cs +70 -0
- oproco-0.3.5/third_party/flatbuffers/tests/union_vector/Attacker.java +66 -0
- oproco-0.3.5/third_party/flatbuffers/tests/union_vector/Attacker.kt +62 -0
- oproco-0.3.5/third_party/flatbuffers/tests/union_vector/Attacker.php +92 -0
- oproco-0.3.5/third_party/flatbuffers/tests/union_vector/AttackerT.java +31 -0
- oproco-0.3.5/third_party/flatbuffers/tests/union_vector/BookReader.cs +49 -0
- oproco-0.3.5/third_party/flatbuffers/tests/union_vector/BookReader.java +55 -0
- oproco-0.3.5/third_party/flatbuffers/tests/union_vector/BookReader.kt +38 -0
- oproco-0.3.5/third_party/flatbuffers/tests/union_vector/BookReader.php +41 -0
- oproco-0.3.5/third_party/flatbuffers/tests/union_vector/BookReaderT.java +31 -0
- oproco-0.3.5/third_party/flatbuffers/tests/union_vector/Character.cs +132 -0
- oproco-0.3.5/third_party/flatbuffers/tests/union_vector/Character.java +18 -0
- oproco-0.3.5/third_party/flatbuffers/tests/union_vector/Character.kt +16 -0
- oproco-0.3.5/third_party/flatbuffers/tests/union_vector/Character.php +31 -0
- oproco-0.3.5/third_party/flatbuffers/tests/union_vector/CharacterUnion.java +41 -0
- oproco-0.3.5/third_party/flatbuffers/tests/union_vector/FallingTub.cs +49 -0
- oproco-0.3.5/third_party/flatbuffers/tests/union_vector/FallingTub.java +55 -0
- oproco-0.3.5/third_party/flatbuffers/tests/union_vector/FallingTub.kt +38 -0
- oproco-0.3.5/third_party/flatbuffers/tests/union_vector/FallingTub.php +41 -0
- oproco-0.3.5/third_party/flatbuffers/tests/union_vector/FallingTubT.java +31 -0
- oproco-0.3.5/third_party/flatbuffers/tests/union_vector/Gadget.cs +100 -0
- oproco-0.3.5/third_party/flatbuffers/tests/union_vector/Gadget.java +14 -0
- oproco-0.3.5/third_party/flatbuffers/tests/union_vector/Gadget.kt +12 -0
- oproco-0.3.5/third_party/flatbuffers/tests/union_vector/Gadget.php +23 -0
- oproco-0.3.5/third_party/flatbuffers/tests/union_vector/GadgetUnion.java +33 -0
- oproco-0.3.5/third_party/flatbuffers/tests/union_vector/HandFan.cs +70 -0
- oproco-0.3.5/third_party/flatbuffers/tests/union_vector/HandFan.java +66 -0
- oproco-0.3.5/third_party/flatbuffers/tests/union_vector/HandFan.kt +62 -0
- oproco-0.3.5/third_party/flatbuffers/tests/union_vector/HandFan.php +92 -0
- oproco-0.3.5/third_party/flatbuffers/tests/union_vector/HandFanT.java +31 -0
- oproco-0.3.5/third_party/flatbuffers/tests/union_vector/Movie.cs +226 -0
- oproco-0.3.5/third_party/flatbuffers/tests/union_vector/Movie.java +137 -0
- oproco-0.3.5/third_party/flatbuffers/tests/union_vector/Movie.kt +126 -0
- oproco-0.3.5/third_party/flatbuffers/tests/union_vector/Movie.php +220 -0
- oproco-0.3.5/third_party/flatbuffers/tests/union_vector/MovieT.java +45 -0
- oproco-0.3.5/third_party/flatbuffers/tests/union_vector/Rapunzel.cs +49 -0
- oproco-0.3.5/third_party/flatbuffers/tests/union_vector/Rapunzel.java +55 -0
- oproco-0.3.5/third_party/flatbuffers/tests/union_vector/Rapunzel.kt +38 -0
- oproco-0.3.5/third_party/flatbuffers/tests/union_vector/Rapunzel.php +41 -0
- oproco-0.3.5/third_party/flatbuffers/tests/union_vector/RapunzelT.java +31 -0
- oproco-0.3.5/third_party/flatbuffers/tests/union_vector/union_vector.fbs +44 -0
- oproco-0.3.5/third_party/flatbuffers/tests/union_vector/union_vector.json +26 -0
- oproco-0.3.5/third_party/flatbuffers/tests/util_test.cpp +173 -0
- oproco-0.3.5/third_party/flatbuffers/tests/util_test.h +14 -0
- oproco-0.3.5/third_party/flatbuffers/tests/vector_has_test.fbs +10 -0
- oproco-0.3.5/third_party/flatbuffers/tests/vector_table_naked_ptr.fbs +9 -0
- oproco-0.3.5/third_party/flatbuffers/tests/vector_table_naked_ptr_test.cpp +75 -0
- oproco-0.3.5/third_party/flatbuffers/tests/vector_table_naked_ptr_test.h +14 -0
- oproco-0.3.5/third_party/flatbuffers/ts/BUILD.bazel +83 -0
- oproco-0.3.5/third_party/flatbuffers/ts/builder.ts +660 -0
- oproco-0.3.5/third_party/flatbuffers/ts/byte-buffer.ts +316 -0
- oproco-0.3.5/third_party/flatbuffers/ts/compile_flat_file.sh +22 -0
- oproco-0.3.5/third_party/flatbuffers/ts/constants.ts +4 -0
- oproco-0.3.5/third_party/flatbuffers/ts/encoding.ts +4 -0
- oproco-0.3.5/third_party/flatbuffers/ts/flatbuffers.ts +14 -0
- oproco-0.3.5/third_party/flatbuffers/ts/flexbuffers/bit-width-util.ts +34 -0
- oproco-0.3.5/third_party/flatbuffers/ts/flexbuffers/bit-width.ts +6 -0
- oproco-0.3.5/third_party/flatbuffers/ts/flexbuffers/builder.ts +656 -0
- oproco-0.3.5/third_party/flatbuffers/ts/flexbuffers/flexbuffers-util.ts +9 -0
- oproco-0.3.5/third_party/flatbuffers/ts/flexbuffers/reference-util.ts +170 -0
- oproco-0.3.5/third_party/flatbuffers/ts/flexbuffers/reference.ts +352 -0
- oproco-0.3.5/third_party/flatbuffers/ts/flexbuffers/stack-value.ts +73 -0
- oproco-0.3.5/third_party/flatbuffers/ts/flexbuffers/value-type-util.ts +65 -0
- oproco-0.3.5/third_party/flatbuffers/ts/flexbuffers/value-type.ts +30 -0
- oproco-0.3.5/third_party/flatbuffers/ts/flexbuffers.ts +28 -0
- oproco-0.3.5/third_party/flatbuffers/ts/package.json +1 -0
- oproco-0.3.5/third_party/flatbuffers/ts/pnpm-lock.yaml +1 -0
- oproco-0.3.5/third_party/flatbuffers/ts/types.ts +17 -0
- oproco-0.3.5/third_party/flatbuffers/ts/utils.ts +5 -0
- oproco-0.3.5/third_party/flatbuffers/tsconfig.json +15 -0
- oproco-0.3.5/third_party/flatbuffers/tsconfig.mjs.json +16 -0
- oproco-0.3.5/third_party/flatbuffers/typescript.bzl +90 -0
- oproco-0.3.5/third_party/kinova-kortex-api/kortex_api-2.6.0.post3-py3-none-any.whl +0 -0
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
---
|
|
2
|
+
# ORC C++ style. Based on Google with project-specific tweaks calibrated to
|
|
3
|
+
# the dominant style in include/orc/ (4-space indent, wider lines, templates
|
|
4
|
+
# broken on their own line).
|
|
5
|
+
BasedOnStyle: Google
|
|
6
|
+
Language: Cpp
|
|
7
|
+
Standard: c++17
|
|
8
|
+
|
|
9
|
+
ColumnLimit: 100
|
|
10
|
+
IndentWidth: 4
|
|
11
|
+
TabWidth: 4
|
|
12
|
+
UseTab: Never
|
|
13
|
+
ContinuationIndentWidth: 4
|
|
14
|
+
AccessModifierOffset: -4
|
|
15
|
+
|
|
16
|
+
PointerAlignment: Left
|
|
17
|
+
DerivePointerAlignment: false
|
|
18
|
+
|
|
19
|
+
AlwaysBreakTemplateDeclarations: Yes
|
|
20
|
+
AllowShortFunctionsOnASingleLine: Inline
|
|
21
|
+
AllowShortIfStatementsOnASingleLine: Never
|
|
22
|
+
AllowShortLoopsOnASingleLine: false
|
|
23
|
+
AllowShortCaseLabelsOnASingleLine: false
|
|
24
|
+
AllowShortLambdasOnASingleLine: All
|
|
25
|
+
|
|
26
|
+
BreakBeforeBraces: Attach
|
|
27
|
+
NamespaceIndentation: None
|
|
28
|
+
FixNamespaceComments: true
|
|
29
|
+
CompactNamespaces: false
|
|
30
|
+
|
|
31
|
+
IncludeBlocks: Preserve
|
|
32
|
+
SortIncludes: CaseSensitive
|
|
33
|
+
SortUsingDeclarations: true
|
|
34
|
+
|
|
35
|
+
SpacesBeforeTrailingComments: 2
|
|
36
|
+
SpaceAfterTemplateKeyword: true
|
|
37
|
+
SpaceBeforeParens: ControlStatements
|
|
38
|
+
|
|
39
|
+
AllowAllParametersOfDeclarationOnNextLine: false
|
|
40
|
+
BinPackArguments: true
|
|
41
|
+
BinPackParameters: true
|
|
42
|
+
|
|
43
|
+
ReflowComments: true
|
|
44
|
+
...
|
oproco-0.3.5/.clang-tidy
ADDED
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
# clang-tidy configuration for the ORC robotics library (C++20).
|
|
2
|
+
#
|
|
3
|
+
# Notes on check selection:
|
|
4
|
+
# * We enable broad families useful for a numerics / real-time / robotics
|
|
5
|
+
# codebase: bugprone, cert, clang-analyzer, misc, modernize, performance,
|
|
6
|
+
# portability, readability, plus selected cppcoreguidelines rules.
|
|
7
|
+
# * We exclude several checks that are excessively noisy for scientific /
|
|
8
|
+
# numerical C++ or that conflict with established style in this repo.
|
|
9
|
+
# * WarningsAsErrors is empty on purpose: clang-tidy reports warnings only;
|
|
10
|
+
# CI does not fail the build on tidy diagnostics (yet).
|
|
11
|
+
|
|
12
|
+
Checks: >
|
|
13
|
+
bugprone-*,
|
|
14
|
+
cert-*,
|
|
15
|
+
clang-analyzer-*,
|
|
16
|
+
cppcoreguidelines-avoid-*,
|
|
17
|
+
misc-*,
|
|
18
|
+
modernize-*,
|
|
19
|
+
performance-*,
|
|
20
|
+
portability-*,
|
|
21
|
+
readability-*,
|
|
22
|
+
-modernize-use-trailing-return-type,
|
|
23
|
+
-modernize-avoid-c-arrays,
|
|
24
|
+
-modernize-use-nodiscard,
|
|
25
|
+
-readability-magic-numbers,
|
|
26
|
+
-readability-identifier-length,
|
|
27
|
+
-readability-named-parameter,
|
|
28
|
+
-readability-function-cognitive-complexity,
|
|
29
|
+
-readability-braces-around-statements,
|
|
30
|
+
-readability-implicit-bool-conversion,
|
|
31
|
+
-readability-uppercase-literal-suffix,
|
|
32
|
+
-cppcoreguidelines-avoid-magic-numbers,
|
|
33
|
+
-cppcoreguidelines-avoid-c-arrays,
|
|
34
|
+
-cppcoreguidelines-avoid-non-const-global-variables,
|
|
35
|
+
-cert-err58-cpp,
|
|
36
|
+
-misc-non-private-member-variables-in-classes,
|
|
37
|
+
-misc-no-recursion,
|
|
38
|
+
-misc-include-cleaner,
|
|
39
|
+
-bugprone-easily-swappable-parameters,
|
|
40
|
+
-bugprone-narrowing-conversions
|
|
41
|
+
|
|
42
|
+
WarningsAsErrors: ''
|
|
43
|
+
|
|
44
|
+
HeaderFilterRegex: '^(include|src|python)/.*\.(h|hpp)$'
|
|
45
|
+
|
|
46
|
+
FormatStyle: file
|
|
47
|
+
|
|
48
|
+
CheckOptions:
|
|
49
|
+
- key: readability-identifier-naming.ClassCase
|
|
50
|
+
value: CamelCase
|
|
51
|
+
- key: readability-identifier-naming.StructCase
|
|
52
|
+
value: CamelCase
|
|
53
|
+
- key: readability-identifier-naming.EnumCase
|
|
54
|
+
value: CamelCase
|
|
55
|
+
- key: readability-identifier-naming.FunctionCase
|
|
56
|
+
value: camelBack
|
|
57
|
+
- key: readability-identifier-naming.VariableCase
|
|
58
|
+
value: camelBack
|
|
59
|
+
- key: readability-identifier-naming.PrivateMemberSuffix
|
|
60
|
+
value: _
|
|
61
|
+
- key: readability-identifier-naming.ProtectedMemberSuffix
|
|
62
|
+
value: _
|
|
63
|
+
- key: readability-identifier-naming.ConstexprVariableCase
|
|
64
|
+
value: CamelCase
|
|
65
|
+
- key: readability-identifier-naming.ConstexprVariablePrefix
|
|
66
|
+
value: k
|
|
67
|
+
- key: readability-identifier-naming.GlobalConstantCase
|
|
68
|
+
value: CamelCase
|
|
69
|
+
- key: readability-identifier-naming.GlobalConstantPrefix
|
|
70
|
+
value: k
|
|
71
|
+
- key: readability-identifier-naming.MacroDefinitionCase
|
|
72
|
+
value: UPPER_CASE
|
|
73
|
+
- key: performance-move-const-arg.CheckTriviallyCopyableMove
|
|
74
|
+
value: 'false'
|
|
75
|
+
- key: modernize-use-default-member-init.UseAssignment
|
|
76
|
+
value: 'true'
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
FROM mcr.microsoft.com/devcontainers/python:1-3.12-bookworm
|
|
2
|
+
|
|
3
|
+
# Dependency versions here must stay aligned with the CI workflows:
|
|
4
|
+
# * Boost: libboost-all-dev (Debian bookworm ships 1.74, within the
|
|
5
|
+
# 1.71...1.83 range declared in CMakeLists.txt and matching ubuntu-22.04
|
|
6
|
+
# / ubuntu-24.04 runners).
|
|
7
|
+
# * Eigen3: libeigen3-dev 3.4.x (matches ubuntu runners).
|
|
8
|
+
# * MuJoCo: 3.3.2 — pinned explicitly below via the MUJOCO_VERSION ARG
|
|
9
|
+
# (must match pyproject.toml and CMakeLists.txt find_package(mujoco 3.3.2)).
|
|
10
|
+
RUN rm -f /etc/apt/sources.list.d/yarn.list \
|
|
11
|
+
&& apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
|
|
12
|
+
build-essential \
|
|
13
|
+
cmake \
|
|
14
|
+
ninja-build \
|
|
15
|
+
git \
|
|
16
|
+
libeigen3-dev \
|
|
17
|
+
libboost-all-dev \
|
|
18
|
+
libgl1 \
|
|
19
|
+
libgl1-mesa-dri \
|
|
20
|
+
libglfw3 \
|
|
21
|
+
libosmesa6 \
|
|
22
|
+
libx11-6 \
|
|
23
|
+
libxcursor1 \
|
|
24
|
+
libxinerama1 \
|
|
25
|
+
libxrandr2 \
|
|
26
|
+
libxi6 \
|
|
27
|
+
curl \
|
|
28
|
+
ca-certificates \
|
|
29
|
+
git-lfs \
|
|
30
|
+
&& rm -rf /var/lib/apt/lists/*
|
|
31
|
+
|
|
32
|
+
# MuJoCo C++ release (matches the version pinned in pyproject.toml / CMakeLists.txt).
|
|
33
|
+
ARG MUJOCO_VERSION=3.3.2
|
|
34
|
+
RUN curl -fsSL "https://github.com/google-deepmind/mujoco/releases/download/${MUJOCO_VERSION}/mujoco-${MUJOCO_VERSION}-linux-x86_64.tar.gz" \
|
|
35
|
+
| tar -xz -C /opt \
|
|
36
|
+
&& ln -s "/opt/mujoco-${MUJOCO_VERSION}" /opt/mujoco
|
|
37
|
+
ENV CMAKE_PREFIX_PATH=/opt/mujoco
|
|
38
|
+
ENV LD_LIBRARY_PATH=/opt/mujoco/lib
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "orc-a",
|
|
3
|
+
"build": { "dockerfile": "Dockerfile" },
|
|
4
|
+
"workspaceFolder": "/workspaces/orc-a",
|
|
5
|
+
"workspaceMount": "source=${localWorkspaceFolder},target=/workspaces/orc-a,type=bind",
|
|
6
|
+
"postCreateCommand": "bash .devcontainer/postCreate.sh",
|
|
7
|
+
"runArgs": [
|
|
8
|
+
"--net=host",
|
|
9
|
+
"--ipc=host",
|
|
10
|
+
"--env=DISPLAY=${localEnv:DISPLAY}",
|
|
11
|
+
"--env=LIBGL_ALWAYS_SOFTWARE=1",
|
|
12
|
+
"--volume=/tmp/.X11-unix:/tmp/.X11-unix:rw"
|
|
13
|
+
],
|
|
14
|
+
"mounts": [
|
|
15
|
+
"source=${localEnv:HOME}/.gitconfig,target=/home/vscode/.gitconfig,type=bind,readonly",
|
|
16
|
+
"source=${localEnv:HOME}/.ssh,target=/home/vscode/.ssh,type=bind,readonly",
|
|
17
|
+
"source=${localWorkspaceFolder}/.git,target=/workspaces/.git,type=bind",
|
|
18
|
+
"source=${localEnv:SSH_AUTH_SOCK},target=${localEnv:SSH_AUTH_SOCK},type=bind"
|
|
19
|
+
],
|
|
20
|
+
"remoteUser": "root",
|
|
21
|
+
"updateRemoteUserUID": true,
|
|
22
|
+
"containerEnv": {
|
|
23
|
+
"SSH_AUTH_SOCK": "${localEnv:SSH_AUTH_SOCK}"
|
|
24
|
+
},
|
|
25
|
+
"customizations": {
|
|
26
|
+
"vscode": {
|
|
27
|
+
"extensions": [
|
|
28
|
+
"ms-python.python",
|
|
29
|
+
"ms-vscode.cpptools",
|
|
30
|
+
"ms-vscode.cmake-tools",
|
|
31
|
+
"twxs.cmake"
|
|
32
|
+
],
|
|
33
|
+
"settings": {
|
|
34
|
+
"cmake.sourceDirectory": "${workspaceFolder}",
|
|
35
|
+
"cmake.buildDirectory": "${workspaceFolder}/build",
|
|
36
|
+
"cmake.configureArgs": ["-DBUILD_TESTS=ON", "-DBUILD_EXAMPLES=ON"],
|
|
37
|
+
"window.title": "[devcontainer] openrobotcontrol"
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
#!/usr/bin/env bash
|
|
2
|
+
set -euo pipefail
|
|
3
|
+
|
|
4
|
+
git config --global --add safe.directory /workspaces/orc-a
|
|
5
|
+
|
|
6
|
+
pip install --upgrade pip
|
|
7
|
+
pip install -e ".[dev]"
|
|
8
|
+
git lfs install
|
|
9
|
+
pre-commit install
|
|
10
|
+
|
|
11
|
+
cat <<'EOF'
|
|
12
|
+
|
|
13
|
+
========================================================================
|
|
14
|
+
orc-a devcontainer ready.
|
|
15
|
+
|
|
16
|
+
Python example (MuJoCo viewer):
|
|
17
|
+
python examples/python/kinova_simulation.py
|
|
18
|
+
|
|
19
|
+
Other Python examples:
|
|
20
|
+
ls python/examples/
|
|
21
|
+
|
|
22
|
+
C++ build (library + tests + examples):
|
|
23
|
+
cmake -S . -B build -GNinja -DBUILD_TESTS=ON -DBUILD_EXAMPLES=ON
|
|
24
|
+
cmake --build build
|
|
25
|
+
|
|
26
|
+
Run C++ tests:
|
|
27
|
+
ctest --test-dir build --output-on-failure
|
|
28
|
+
|
|
29
|
+
GUI note: on Linux hosts, run `xhost +local:docker` once on the host
|
|
30
|
+
so the MuJoCo viewer can reach the X server.
|
|
31
|
+
========================================================================
|
|
32
|
+
EOF
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
# EditorConfig for the ORC project
|
|
2
|
+
# https://editorconfig.org
|
|
3
|
+
root = true
|
|
4
|
+
|
|
5
|
+
[*]
|
|
6
|
+
charset = utf-8
|
|
7
|
+
end_of_line = lf
|
|
8
|
+
insert_final_newline = true
|
|
9
|
+
trim_trailing_whitespace = true
|
|
10
|
+
indent_style = space
|
|
11
|
+
|
|
12
|
+
# C / C++
|
|
13
|
+
[*.{c,cc,cpp,cxx,h,hh,hpp,hxx,ipp,inl}]
|
|
14
|
+
indent_style = space
|
|
15
|
+
indent_size = 4
|
|
16
|
+
|
|
17
|
+
# Python
|
|
18
|
+
[*.{py,pyi}]
|
|
19
|
+
indent_style = space
|
|
20
|
+
indent_size = 4
|
|
21
|
+
|
|
22
|
+
# CMake
|
|
23
|
+
[{CMakeLists.txt,*.cmake}]
|
|
24
|
+
indent_style = space
|
|
25
|
+
indent_size = 4
|
|
26
|
+
|
|
27
|
+
# YAML
|
|
28
|
+
[*.{yml,yaml}]
|
|
29
|
+
indent_size = 2
|
|
30
|
+
|
|
31
|
+
# JSON
|
|
32
|
+
[*.{json,json5}]
|
|
33
|
+
indent_size = 2
|
|
34
|
+
|
|
35
|
+
# TOML
|
|
36
|
+
[*.toml]
|
|
37
|
+
indent_size = 2
|
|
38
|
+
|
|
39
|
+
# Markdown — preserve trailing whitespace (line breaks)
|
|
40
|
+
[*.md]
|
|
41
|
+
indent_size = 2
|
|
42
|
+
trim_trailing_whitespace = false
|
|
43
|
+
|
|
44
|
+
# Shell scripts
|
|
45
|
+
[*.{sh,bash,zsh}]
|
|
46
|
+
indent_style = space
|
|
47
|
+
indent_size = 2
|
|
48
|
+
|
|
49
|
+
# Makefiles require tabs
|
|
50
|
+
[{Makefile,makefile,GNUmakefile,*.mk}]
|
|
51
|
+
indent_style = tab
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
# Normalise line endings across platforms. Anything we treat as text is
|
|
2
|
+
# checked in with LF regardless of the contributor's OS.
|
|
3
|
+
* text=auto eol=lf
|
|
4
|
+
# Explicit: shell scripts, CMake files, YAML, Python, C/C++ sources — all LF.
|
|
5
|
+
*.sh text eol=lf
|
|
6
|
+
*.py text eol=lf
|
|
7
|
+
*.cmake text eol=lf
|
|
8
|
+
*.yml text eol=lf
|
|
9
|
+
*.yaml text eol=lf
|
|
10
|
+
*.toml text eol=lf
|
|
11
|
+
*.c text eol=lf
|
|
12
|
+
*.h text eol=lf
|
|
13
|
+
*.cpp text eol=lf
|
|
14
|
+
*.hpp text eol=lf
|
|
15
|
+
*.in text eol=lf
|
|
16
|
+
CMakeLists.txt text eol=lf
|
|
17
|
+
# Binary assets — never line-ending-translate.
|
|
18
|
+
*.mjb binary
|
|
19
|
+
*.png binary
|
|
20
|
+
*.jpg binary
|
|
21
|
+
*.jpeg binary
|
|
22
|
+
*.ico binary
|
|
23
|
+
*.pdf binary
|
|
24
|
+
*.whl binary
|
|
25
|
+
*.tar.gz binary
|
|
26
|
+
*.zip binary
|
|
27
|
+
# CSV data files in tests/data should not be EOL-mangled (some contain
|
|
28
|
+
# exact floating-point fixtures that diffs should reflect literally).
|
|
29
|
+
*.csv binary
|
|
30
|
+
models/presets/*.mjb filter=lfs diff=lfs merge=lfs -text
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
name: Bug report
|
|
2
|
+
description: Report a defect in ORC / oproco
|
|
3
|
+
labels: ["bug"]
|
|
4
|
+
body:
|
|
5
|
+
- type: markdown
|
|
6
|
+
attributes:
|
|
7
|
+
value: |
|
|
8
|
+
Thanks for taking the time to file a bug report. Please fill in as much
|
|
9
|
+
of the following as you can — it makes diagnosis much faster.
|
|
10
|
+
- type: textarea
|
|
11
|
+
id: what-happened
|
|
12
|
+
attributes:
|
|
13
|
+
label: What happened?
|
|
14
|
+
description: A clear description of the unexpected behavior.
|
|
15
|
+
validations:
|
|
16
|
+
required: true
|
|
17
|
+
- type: textarea
|
|
18
|
+
id: expected
|
|
19
|
+
attributes:
|
|
20
|
+
label: What did you expect to happen?
|
|
21
|
+
validations:
|
|
22
|
+
required: true
|
|
23
|
+
- type: textarea
|
|
24
|
+
id: repro
|
|
25
|
+
attributes:
|
|
26
|
+
label: Minimal reproduction
|
|
27
|
+
description: |
|
|
28
|
+
Smallest code / command sequence that reproduces the issue. A link to a
|
|
29
|
+
branch or gist is fine.
|
|
30
|
+
render: shell
|
|
31
|
+
validations:
|
|
32
|
+
required: true
|
|
33
|
+
- type: input
|
|
34
|
+
id: orc-version
|
|
35
|
+
attributes:
|
|
36
|
+
label: ORC version / commit
|
|
37
|
+
placeholder: "e.g. v0.1.0 or commit 6526351"
|
|
38
|
+
validations:
|
|
39
|
+
required: true
|
|
40
|
+
- type: input
|
|
41
|
+
id: os
|
|
42
|
+
attributes:
|
|
43
|
+
label: Operating system
|
|
44
|
+
placeholder: "e.g. Ubuntu 24.04, Windows 11, macOS 14"
|
|
45
|
+
validations:
|
|
46
|
+
required: true
|
|
47
|
+
- type: input
|
|
48
|
+
id: compiler
|
|
49
|
+
attributes:
|
|
50
|
+
label: Compiler / Python version
|
|
51
|
+
placeholder: "e.g. gcc 13.2 / Python 3.12.3"
|
|
52
|
+
- type: textarea
|
|
53
|
+
id: logs
|
|
54
|
+
attributes:
|
|
55
|
+
label: Relevant log output
|
|
56
|
+
render: shell
|
|
57
|
+
- type: checkboxes
|
|
58
|
+
id: confirm
|
|
59
|
+
attributes:
|
|
60
|
+
label: Checks
|
|
61
|
+
options:
|
|
62
|
+
- label: I have searched existing issues for duplicates.
|
|
63
|
+
required: true
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
name: Feature request
|
|
2
|
+
description: Suggest a new capability or improvement
|
|
3
|
+
labels: ["enhancement"]
|
|
4
|
+
body:
|
|
5
|
+
- type: textarea
|
|
6
|
+
id: problem
|
|
7
|
+
attributes:
|
|
8
|
+
label: What problem does this solve?
|
|
9
|
+
description: Describe the use case or pain point.
|
|
10
|
+
validations:
|
|
11
|
+
required: true
|
|
12
|
+
- type: textarea
|
|
13
|
+
id: proposal
|
|
14
|
+
attributes:
|
|
15
|
+
label: Proposed solution
|
|
16
|
+
description: How would you like the feature to work?
|
|
17
|
+
validations:
|
|
18
|
+
required: true
|
|
19
|
+
- type: textarea
|
|
20
|
+
id: alternatives
|
|
21
|
+
attributes:
|
|
22
|
+
label: Alternatives considered
|
|
23
|
+
description: Other approaches you've thought about, and why they're less good.
|
|
24
|
+
- type: textarea
|
|
25
|
+
id: context
|
|
26
|
+
attributes:
|
|
27
|
+
label: Additional context
|
|
28
|
+
description: Links, screenshots, references, prior art.
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
<!--
|
|
2
|
+
Thanks for contributing! A few notes:
|
|
3
|
+
- Use a conventional-commit-style title: fix:, feat:, refactor:, docs:, chore:, ci: …
|
|
4
|
+
- Keep PRs focused. Separate refactors from behavior changes when practical.
|
|
5
|
+
- See CONTRIBUTING.md for the full workflow.
|
|
6
|
+
-->
|
|
7
|
+
|
|
8
|
+
## Summary
|
|
9
|
+
|
|
10
|
+
<!-- What does this PR change? One or two sentences. -->
|
|
11
|
+
|
|
12
|
+
## Motivation
|
|
13
|
+
|
|
14
|
+
<!-- Why is this change needed? Link to an issue if applicable: Closes #123 -->
|
|
15
|
+
|
|
16
|
+
## Tests
|
|
17
|
+
|
|
18
|
+
<!-- How did you verify this change? New unit tests? Manual repro? -->
|
|
19
|
+
|
|
20
|
+
## Checklist
|
|
21
|
+
|
|
22
|
+
- [ ] Tests added or updated for the changed behavior
|
|
23
|
+
- [ ] Documentation updated (README / docstrings / `doc/`)
|
|
24
|
+
- [ ] `pre-commit run --all-files` passes locally
|
|
25
|
+
- [ ] Commit messages follow the conventional-commit style
|
|
26
|
+
- [ ] Breaking changes are flagged in the PR title and described above
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
version: 2
|
|
2
|
+
|
|
3
|
+
updates:
|
|
4
|
+
# Keep GitHub Actions versions current.
|
|
5
|
+
- package-ecosystem: "github-actions"
|
|
6
|
+
directory: "/"
|
|
7
|
+
schedule:
|
|
8
|
+
interval: "weekly"
|
|
9
|
+
open-pull-requests-limit: 5
|
|
10
|
+
labels:
|
|
11
|
+
- "dependencies"
|
|
12
|
+
- "github-actions"
|
|
13
|
+
|
|
14
|
+
# Python package (root) — pyproject.toml / setup.cfg / requirements*.txt.
|
|
15
|
+
- package-ecosystem: "pip"
|
|
16
|
+
directory: "/"
|
|
17
|
+
schedule:
|
|
18
|
+
interval: "weekly"
|
|
19
|
+
open-pull-requests-limit: 5
|
|
20
|
+
labels:
|
|
21
|
+
- "dependencies"
|
|
22
|
+
- "python"
|
|
23
|
+
ignore:
|
|
24
|
+
- dependency-name: "mujoco"
|
|
@@ -0,0 +1,176 @@
|
|
|
1
|
+
name: CI
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
branches:
|
|
6
|
+
- main
|
|
7
|
+
pull_request:
|
|
8
|
+
branches:
|
|
9
|
+
- main
|
|
10
|
+
|
|
11
|
+
concurrency:
|
|
12
|
+
group: ci-${{ github.workflow }}-${{ github.ref }}
|
|
13
|
+
cancel-in-progress: true
|
|
14
|
+
|
|
15
|
+
jobs:
|
|
16
|
+
# ---------------------------------------------------------------------------
|
|
17
|
+
# Lint: pre-commit (clang-format, black, ruff, etc., whatever is configured)
|
|
18
|
+
# ---------------------------------------------------------------------------
|
|
19
|
+
lint:
|
|
20
|
+
name: Lint (pre-commit)
|
|
21
|
+
runs-on: ubuntu-24.04
|
|
22
|
+
steps:
|
|
23
|
+
- uses: actions/checkout@v6
|
|
24
|
+
|
|
25
|
+
- name: Set up Python
|
|
26
|
+
uses: actions/setup-python@v6
|
|
27
|
+
|
|
28
|
+
- name: Install pre-commit
|
|
29
|
+
if: hashFiles('.pre-commit-config.yaml') != ''
|
|
30
|
+
run: python -m pip install pre-commit
|
|
31
|
+
|
|
32
|
+
- name: Run pre-commit
|
|
33
|
+
if: hashFiles('.pre-commit-config.yaml') != ''
|
|
34
|
+
run: pre-commit run --all-files --show-diff-on-failure
|
|
35
|
+
|
|
36
|
+
- name: No pre-commit config, skipping
|
|
37
|
+
if: hashFiles('.pre-commit-config.yaml') == ''
|
|
38
|
+
run: echo "No .pre-commit-config.yaml at repo root; skipping pre-commit."
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
# ---------------------------------------------------------------------------
|
|
42
|
+
# Build + test matrix
|
|
43
|
+
# ---------------------------------------------------------------------------
|
|
44
|
+
build-test:
|
|
45
|
+
name: Build & Test (Ubuntu 24.04 / GCC)
|
|
46
|
+
runs-on: ubuntu-24.04
|
|
47
|
+
|
|
48
|
+
env:
|
|
49
|
+
MUJOCO_VERSION: 3.3.2
|
|
50
|
+
MUJOCO_DIR: /opt/mujoco
|
|
51
|
+
|
|
52
|
+
steps:
|
|
53
|
+
- uses: actions/checkout@v6
|
|
54
|
+
with:
|
|
55
|
+
submodules: recursive
|
|
56
|
+
|
|
57
|
+
- name: Install system dependencies
|
|
58
|
+
run: |
|
|
59
|
+
sudo apt-get update
|
|
60
|
+
sudo apt-get install -y \
|
|
61
|
+
build-essential \
|
|
62
|
+
cmake \
|
|
63
|
+
ninja-build \
|
|
64
|
+
libgl1-mesa-dev \
|
|
65
|
+
libxinerama-dev \
|
|
66
|
+
libxcursor-dev \
|
|
67
|
+
libxrandr-dev \
|
|
68
|
+
libxi-dev \
|
|
69
|
+
libboost-all-dev \
|
|
70
|
+
libgtest-dev \
|
|
71
|
+
libeigen3-dev
|
|
72
|
+
|
|
73
|
+
- name: Cache MuJoCo install tree
|
|
74
|
+
id: cache-mujoco
|
|
75
|
+
uses: actions/cache@v5
|
|
76
|
+
with:
|
|
77
|
+
path: ${{ env.MUJOCO_DIR }}
|
|
78
|
+
key: mujoco-${{ env.MUJOCO_VERSION }}-${{ runner.os }}-${{ runner.arch }}
|
|
79
|
+
|
|
80
|
+
- name: Install MuJoCo
|
|
81
|
+
if: steps.cache-mujoco.outputs.cache-hit != 'true'
|
|
82
|
+
run: |
|
|
83
|
+
wget -q https://github.com/google-deepmind/mujoco/releases/download/${{ env.MUJOCO_VERSION }}/mujoco-${{ env.MUJOCO_VERSION }}-linux-x86_64.tar.gz
|
|
84
|
+
tar -xzf mujoco-${{ env.MUJOCO_VERSION }}-linux-x86_64.tar.gz
|
|
85
|
+
sudo mv mujoco-${{ env.MUJOCO_VERSION }} ${{ env.MUJOCO_DIR }}
|
|
86
|
+
|
|
87
|
+
- name: Configure
|
|
88
|
+
run: |
|
|
89
|
+
cmake -B build -S . \
|
|
90
|
+
-DCMAKE_C_COMPILER=gcc \
|
|
91
|
+
-DCMAKE_CXX_COMPILER=g++ \
|
|
92
|
+
-DCMAKE_BUILD_TYPE=Release \
|
|
93
|
+
-DBUILD_TESTS=ON \
|
|
94
|
+
-DCMAKE_PREFIX_PATH=${MUJOCO_DIR}
|
|
95
|
+
|
|
96
|
+
- name: Build
|
|
97
|
+
run: cmake --build build --config Release -- -j$(nproc)
|
|
98
|
+
|
|
99
|
+
- name: Test
|
|
100
|
+
working-directory: build
|
|
101
|
+
run: ctest --output-on-failure
|
|
102
|
+
|
|
103
|
+
|
|
104
|
+
# # ---------------------------------------------------------------------------
|
|
105
|
+
# # clang-tidy on changed .cpp/.h files (PR) or full repo (push)
|
|
106
|
+
# # ---------------------------------------------------------------------------
|
|
107
|
+
# clang-tidy:
|
|
108
|
+
# name: clang-tidy
|
|
109
|
+
# runs-on: ubuntu-24.04
|
|
110
|
+
# continue-on-error: true
|
|
111
|
+
# steps:
|
|
112
|
+
# - uses: actions/checkout@v6
|
|
113
|
+
# with:
|
|
114
|
+
# submodules: recursive
|
|
115
|
+
# fetch-depth: 0
|
|
116
|
+
# - name: Cache MuJoCo install tree
|
|
117
|
+
# id: cache-mujoco
|
|
118
|
+
# uses: actions/cache@v5
|
|
119
|
+
# with:
|
|
120
|
+
# path: /usr/local/mujoco-3.3.2
|
|
121
|
+
# key: mujoco-3.3.2-${{ runner.os }}-${{ runner.arch }}
|
|
122
|
+
|
|
123
|
+
# - name: Install system dependencies
|
|
124
|
+
# run: |
|
|
125
|
+
# sudo apt-get update
|
|
126
|
+
# sudo apt-get install -y \
|
|
127
|
+
# libgl1-mesa-dev libxinerama-dev libxcursor-dev libxrandr-dev libxi-dev \
|
|
128
|
+
# ninja-build libboost-all-dev libgtest-dev libeigen3-dev \
|
|
129
|
+
# clang-tidy clang
|
|
130
|
+
|
|
131
|
+
# - name: Install MuJoCo
|
|
132
|
+
# if: steps.cache-mujoco.outputs.cache-hit != 'true'
|
|
133
|
+
# run: |
|
|
134
|
+
# git clone https://github.com/deepmind/mujoco.git
|
|
135
|
+
# cd mujoco && git checkout tags/3.3.2
|
|
136
|
+
# cmake -S . -B build -DMUJOCO_BUILD_EXAMPLES=OFF -DMUJOCO_BUILD_SIMULATE=OFF -DMUJOCO_BUILD_TESTS=OFF -DBUILD_TESTING=OFF
|
|
137
|
+
# sudo cmake --build build --target install -- -j$(nproc)
|
|
138
|
+
|
|
139
|
+
# - name: Configure (export compile_commands.json)
|
|
140
|
+
# env:
|
|
141
|
+
# CC: clang
|
|
142
|
+
# CXX: clang++
|
|
143
|
+
# run: |
|
|
144
|
+
# cmake -B build -S . \
|
|
145
|
+
# -DCMAKE_EXPORT_COMPILE_COMMANDS=ON \
|
|
146
|
+
# -DCMAKE_BUILD_TYPE=Debug \
|
|
147
|
+
# -DBUILD_TESTS=ON
|
|
148
|
+
|
|
149
|
+
# - name: Determine changed files
|
|
150
|
+
# id: changed
|
|
151
|
+
# shell: bash
|
|
152
|
+
# run: |
|
|
153
|
+
# set -euo pipefail
|
|
154
|
+
# if [[ "${{ github.event_name }}" == "pull_request" ]]; then
|
|
155
|
+
# BASE="${{ github.event.pull_request.base.sha }}"
|
|
156
|
+
# HEAD="${{ github.event.pull_request.head.sha }}"
|
|
157
|
+
# git fetch --no-tags --depth=50 origin "$BASE" || true
|
|
158
|
+
# FILES=$(git diff --name-only --diff-filter=AMR "$BASE" "$HEAD" \
|
|
159
|
+
# -- '*.cpp' '*.cc' '*.cxx' '*.h' '*.hpp' | tr '\n' ' ')
|
|
160
|
+
# else
|
|
161
|
+
# FILES=$(git ls-files '*.cpp' '*.cc' '*.cxx' '*.h' '*.hpp' | tr '\n' ' ')
|
|
162
|
+
# fi
|
|
163
|
+
# echo "files=$FILES" >> "$GITHUB_OUTPUT"
|
|
164
|
+
# echo "Changed files: $FILES"
|
|
165
|
+
|
|
166
|
+
# - name: Run clang-tidy
|
|
167
|
+
# if: steps.changed.outputs.files != ''
|
|
168
|
+
# run: |
|
|
169
|
+
# # Fall back to run-clang-tidy for multi-file parallel execution.
|
|
170
|
+
# if command -v run-clang-tidy >/dev/null 2>&1; then
|
|
171
|
+
# run-clang-tidy -p build -quiet ${{ steps.changed.outputs.files }}
|
|
172
|
+
# else
|
|
173
|
+
# for f in ${{ steps.changed.outputs.files }}; do
|
|
174
|
+
# clang-tidy -p build "$f" || true
|
|
175
|
+
# done
|
|
176
|
+
# fi
|