protovalidate 0.1.0.beta1
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.
- checksums.yaml +7 -0
- data/.yardopts +8 -0
- data/CHANGELOG.md +5 -0
- data/LICENSE.txt +201 -0
- data/NOTICE.md +30 -0
- data/README.md +93 -0
- data/Rakefile +32 -0
- data/ext/protovalidate/Cargo.lock +342 -0
- data/ext/protovalidate/Cargo.toml +27 -0
- data/ext/protovalidate/build.rs +4 -0
- data/ext/protovalidate/extconf.rb +8 -0
- data/ext/protovalidate/src/lib.rs +161 -0
- data/ext/protovalidate/sys/Cargo.toml +11 -0
- data/ext/protovalidate/sys/build.rs +218 -0
- data/ext/protovalidate/sys/filelists/absl.txt +126 -0
- data/ext/protovalidate/sys/filelists/antlr4.txt +139 -0
- data/ext/protovalidate/sys/filelists/celcpp.txt +199 -0
- data/ext/protovalidate/sys/filelists/protobuf.txt +83 -0
- data/ext/protovalidate/sys/filelists/protovalidate.txt +14 -0
- data/ext/protovalidate/sys/filelists/re2.txt +25 -0
- data/ext/protovalidate/sys/gen/buf/validate/validate.pb.cc +23621 -0
- data/ext/protovalidate/sys/gen/buf/validate/validate.pb.h +27800 -0
- data/ext/protovalidate/sys/gen/cel/expr/checked.pb.cc +6286 -0
- data/ext/protovalidate/sys/gen/cel/expr/checked.pb.h +6412 -0
- data/ext/protovalidate/sys/gen/cel/expr/syntax.pb.cc +7423 -0
- data/ext/protovalidate/sys/gen/cel/expr/syntax.pb.h +7510 -0
- data/ext/protovalidate/sys/gen/cel/expr/value.pb.cc +2512 -0
- data/ext/protovalidate/sys/gen/cel/expr/value.pb.h +2589 -0
- data/ext/protovalidate/sys/gen/internal/empty_descriptor_set_embed.inc +1 -0
- data/ext/protovalidate/sys/gen/parser/internal/CelBaseVisitor.cpp +9 -0
- data/ext/protovalidate/sys/gen/parser/internal/CelBaseVisitor.h +167 -0
- data/ext/protovalidate/sys/gen/parser/internal/CelLexer.cpp +308 -0
- data/ext/protovalidate/sys/gen/parser/internal/CelLexer.h +57 -0
- data/ext/protovalidate/sys/gen/parser/internal/CelParser.cpp +2484 -0
- data/ext/protovalidate/sys/gen/parser/internal/CelParser.h +697 -0
- data/ext/protovalidate/sys/gen/parser/internal/CelVisitor.cpp +9 -0
- data/ext/protovalidate/sys/gen/parser/internal/CelVisitor.h +98 -0
- data/ext/protovalidate/sys/shim/pv_shim.cc +260 -0
- data/ext/protovalidate/sys/shim/pv_shim.h +84 -0
- data/ext/protovalidate/sys/src/lib.rs +176 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/LICENSE +203 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/algorithm/algorithm.h +96 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/algorithm/container.h +2011 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/base/attributes.h +1100 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/base/call_once.h +228 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/base/casts.cc +61 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/base/casts.h +313 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/base/config.h +898 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/base/const_init.h +76 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/base/dynamic_annotations.h +480 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/base/fast_type_id.h +73 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/base/internal/atomic_hook.h +200 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/base/internal/atomic_hook_test_helper.h +34 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/base/internal/cycleclock.cc +72 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/base/internal/cycleclock.h +144 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/base/internal/cycleclock_config.h +55 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/base/internal/direct_mmap.h +170 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/base/internal/dynamic_annotations.h +398 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/base/internal/endian.h +279 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/base/internal/errno_saver.h +43 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/base/internal/exception_safety_testing.h +1112 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/base/internal/exception_testing.h +42 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/base/internal/hardening.h +136 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/base/internal/hide_ptr.h +51 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/base/internal/iterator_traits.h +75 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/base/internal/iterator_traits_test_helper.h +97 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/base/internal/low_level_alloc.cc +667 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/base/internal/low_level_alloc.h +133 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/base/internal/low_level_scheduling.h +196 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/base/internal/nullability_traits.h +71 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/base/internal/per_thread_tls.h +52 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/base/internal/poison.h +59 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/base/internal/pretty_function.h +33 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/base/internal/raw_logging.cc +279 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/base/internal/raw_logging.h +217 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/base/internal/scheduling_mode.h +58 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/base/internal/scoped_set_env.h +45 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/base/internal/spinlock.cc +225 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/base/internal/spinlock.h +310 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/base/internal/spinlock_akaros.inc +35 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/base/internal/spinlock_linux.inc +71 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/base/internal/spinlock_posix.inc +46 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/base/internal/spinlock_wait.cc +81 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/base/internal/spinlock_wait.h +95 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/base/internal/spinlock_win32.inc +40 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/base/internal/strerror.cc +88 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/base/internal/strerror.h +39 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/base/internal/sysinfo.cc +493 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/base/internal/sysinfo.h +74 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/base/internal/thread_identity.cc +163 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/base/internal/thread_identity.h +325 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/base/internal/tracing.cc +39 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/base/internal/tracing.h +81 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/base/internal/tsan_mutex_interface.h +68 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/base/internal/unaligned_access.h +89 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/base/internal/unscaledcycleclock.cc +134 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/base/internal/unscaledcycleclock.h +118 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/base/internal/unscaledcycleclock_config.h +62 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/base/log_severity.cc +56 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/base/log_severity.h +185 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/base/macros.h +259 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/base/no_destructor.h +191 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/base/nullability.h +318 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/base/optimization.h +311 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/base/options.h +212 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/base/policy_checks.h +115 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/base/port.h +25 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/base/prefetch.h +209 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/base/thread_annotations.h +333 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/base/throw_delegate.cc +205 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/base/throw_delegate.h +65 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/cleanup/cleanup.h +143 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/cleanup/internal/cleanup.h +100 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/container/btree_map.h +941 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/container/btree_set.h +872 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/container/chunked_queue.h +757 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/container/fixed_array.h +548 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/container/flat_hash_map.h +714 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/container/flat_hash_set.h +604 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/container/hash_container_defaults.h +45 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/container/inlined_vector.h +1025 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/container/internal/btree.h +3157 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/container/internal/btree_container.h +875 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/container/internal/chunked_queue.h +173 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/container/internal/common.h +302 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/container/internal/common_policy_traits.h +151 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/container/internal/compressed_tuple.h +275 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/container/internal/container_memory.h +571 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/container/internal/hash_function_defaults.h +281 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/container/internal/hash_generator_testing.h +172 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/container/internal/hash_policy_testing.h +173 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/container/internal/hash_policy_traits.h +195 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/container/internal/hashtable_control_bytes.h +527 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/container/internal/hashtable_debug.h +102 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/container/internal/hashtable_debug_hooks.h +85 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/container/internal/hashtablez_sampler.cc +316 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/container/internal/hashtablez_sampler.h +294 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/container/internal/hashtablez_sampler_force_weak_definition.cc +31 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/container/internal/heterogeneous_lookup_testing.h +80 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/container/internal/inlined_vector.h +1094 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/container/internal/layout.h +828 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/container/internal/node_slot_policy.h +95 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/container/internal/raw_hash_map.h +380 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/container/internal/raw_hash_set.cc +2110 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/container/internal/raw_hash_set.h +4056 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/container/internal/raw_hash_set_resize_impl.h +79 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/container/internal/test_allocator.h +387 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/container/internal/test_instance_tracker.h +274 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/container/internal/tracked.h +83 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/container/linked_hash_map.h +666 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/container/linked_hash_set.h +527 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/container/node_hash_map.h +710 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/container/node_hash_set.h +603 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/crc/crc32c.cc +95 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/crc/crc32c.h +192 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/crc/internal/cpu_detect.cc +359 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/crc/internal/cpu_detect.h +69 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/crc/internal/crc.cc +435 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/crc/internal/crc.h +83 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/crc/internal/crc32_x86_arm_combined_simd.h +319 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/crc/internal/crc32c.h +39 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/crc/internal/crc32c_inline.h +72 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/crc/internal/crc_cord_state.cc +131 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/crc/internal/crc_cord_state.h +159 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/crc/internal/crc_internal.h +161 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/crc/internal/crc_memcpy.h +122 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/crc/internal/crc_memcpy_fallback.cc +78 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/crc/internal/crc_memcpy_x86_arm_combined.cc +459 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/crc/internal/crc_non_temporal_memcpy.cc +93 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/crc/internal/crc_x86_arm_combined.cc +824 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/crc/internal/non_temporal_arm_intrinsics.h +81 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/crc/internal/non_temporal_memcpy.h +195 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/debugging/failure_signal_handler.h +121 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/debugging/internal/address_is_readable.cc +98 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/debugging/internal/address_is_readable.h +32 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/debugging/internal/addresses.h +57 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/debugging/internal/bounded_utf8_length_sequence.h +126 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/debugging/internal/decode_rust_punycode.cc +258 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/debugging/internal/decode_rust_punycode.h +55 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/debugging/internal/demangle.cc +2958 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/debugging/internal/demangle.h +76 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/debugging/internal/demangle_rust.cc +925 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/debugging/internal/demangle_rust.h +50 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/debugging/internal/elf_mem_image.cc +413 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/debugging/internal/elf_mem_image.h +141 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/debugging/internal/examine_stack.cc +334 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/debugging/internal/examine_stack.h +70 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/debugging/internal/stack_consumption.h +50 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/debugging/internal/stacktrace_aarch64-inl.inc +299 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/debugging/internal/stacktrace_arm-inl.inc +148 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/debugging/internal/stacktrace_config.h +96 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/debugging/internal/stacktrace_emscripten-inl.inc +121 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/debugging/internal/stacktrace_generic-inl.inc +121 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/debugging/internal/stacktrace_powerpc-inl.inc +270 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/debugging/internal/stacktrace_riscv-inl.inc +208 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/debugging/internal/stacktrace_unimplemented-inl.inc +25 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/debugging/internal/stacktrace_win32-inl.inc +81 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/debugging/internal/stacktrace_x86-inl.inc +410 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/debugging/internal/symbolize.h +163 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/debugging/internal/utf8_for_code_point.cc +70 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/debugging/internal/utf8_for_code_point.h +47 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/debugging/internal/vdso_support.cc +209 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/debugging/internal/vdso_support.h +158 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/debugging/leak_check.cc +73 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/debugging/leak_check.h +150 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/debugging/stacktrace.cc +204 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/debugging/stacktrace.h +259 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/debugging/symbolize.cc +62 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/debugging/symbolize.h +99 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/debugging/symbolize_darwin.inc +102 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/debugging/symbolize_elf.inc +1708 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/debugging/symbolize_emscripten.inc +63 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/debugging/symbolize_unimplemented.inc +40 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/debugging/symbolize_win32.inc +99 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/flags/commandlineflag.h +220 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/flags/config.h +68 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/flags/declare.h +77 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/flags/flag.h +307 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/flags/internal/commandlineflag.h +68 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/flags/internal/flag.h +969 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/flags/internal/parse.h +70 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/flags/internal/path_util.h +62 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/flags/internal/private_handle_accessor.h +64 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/flags/internal/program_name.h +50 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/flags/internal/registry.h +98 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/flags/internal/sequence_lock.h +187 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/flags/internal/usage.h +106 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/flags/marshalling.h +335 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/flags/parse.h +130 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/flags/reflection.h +90 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/flags/usage.h +43 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/flags/usage_config.h +135 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/functional/any_invocable.h +335 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/functional/bind_back.h +79 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/functional/bind_front.h +200 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/functional/function_ref.h +249 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/functional/internal/any_invocable.h +787 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/functional/internal/back_binder.h +95 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/functional/internal/front_binder.h +93 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/functional/internal/function_ref.h +151 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/functional/overload.h +72 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/hash/hash.h +466 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/hash/hash_testing.h +382 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/hash/internal/city.cc +337 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/hash/internal/city.h +78 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/hash/internal/hash.cc +430 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/hash/internal/hash.h +1619 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/hash/internal/spy_hash_state.h +289 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/hash/internal/weakly_mixed_integer.h +38 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/log/absl_check.h +117 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/log/absl_log.h +115 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/log/absl_vlog_is_on.h +93 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/log/check.h +210 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/log/check_test_impl.inc +1035 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/log/die_if_null.cc +34 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/log/die_if_null.h +97 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/log/flags.h +43 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/log/globals.cc +178 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/log/globals.h +230 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/log/initialize.h +45 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/log/internal/append_truncated.h +75 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/log/internal/check_impl.h +151 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/log/internal/check_op.cc +147 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/log/internal/check_op.h +565 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/log/internal/conditions.cc +85 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/log/internal/conditions.h +247 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/log/internal/config.h +45 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/log/internal/container.h +312 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/log/internal/flags.h +59 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/log/internal/fnmatch.cc +73 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/log/internal/fnmatch.h +35 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/log/internal/globals.cc +145 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/log/internal/globals.h +101 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/log/internal/log_format.cc +205 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/log/internal/log_format.h +78 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/log/internal/log_impl.h +280 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/log/internal/log_message.cc +788 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/log/internal/log_message.h +469 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/log/internal/log_sink_set.cc +296 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/log/internal/log_sink_set.h +54 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/log/internal/nullguard.cc +35 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/log/internal/nullguard.h +88 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/log/internal/nullstream.h +128 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/log/internal/proto.cc +231 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/log/internal/proto.h +298 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/log/internal/strip.h +99 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/log/internal/structured.h +160 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/log/internal/structured_proto.cc +115 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/log/internal/structured_proto.h +108 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/log/internal/test_actions.h +90 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/log/internal/test_helpers.h +71 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/log/internal/test_matchers.h +94 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/log/internal/vlog_config.cc +347 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/log/internal/vlog_config.h +164 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/log/internal/voidify.h +50 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/log/log.h +378 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/log/log_basic_test_impl.inc +654 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/log/log_entry.cc +263 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/log/log_entry.h +223 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/log/log_sink.cc +23 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/log/log_sink.h +71 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/log/log_sink_registry.h +64 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/log/log_streamer.h +208 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/log/scoped_mock_log.h +203 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/log/structured.h +75 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/log/vlog_is_on.h +72 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/memory/memory.h +328 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/meta/internal/constexpr_testing.h +73 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/meta/internal/requires.h +67 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/meta/type_traits.h +646 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/numeric/bits.h +262 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/numeric/int128.cc +344 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/numeric/int128.h +1224 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/numeric/int128_have_intrinsic.inc +303 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/numeric/int128_no_intrinsic.inc +347 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/numeric/internal/bits.h +394 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/numeric/internal/representation.h +55 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/profiling/hashtable.h +40 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/profiling/internal/exponential_biased.cc +93 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/profiling/internal/exponential_biased.h +130 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/profiling/internal/periodic_sampler.h +211 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/profiling/internal/profile_builder.h +161 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/profiling/internal/sample_recorder.h +253 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/random/bernoulli_distribution.h +202 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/random/beta_distribution.h +429 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/random/bit_gen_ref.h +160 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/random/discrete_distribution.h +249 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/random/distributions.h +450 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/random/exponential_distribution.h +166 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/random/gaussian_distribution.h +276 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/random/internal/chi_square.h +89 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/random/internal/distribution_caller.h +83 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/random/internal/distribution_test_util.h +113 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/random/internal/entropy_pool.h +35 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/random/internal/explicit_seed_seq.h +92 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/random/internal/fast_uniform_bits.h +271 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/random/internal/fastmath.h +57 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/random/internal/generate_real.h +144 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/random/internal/iostream_state_saver.h +248 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/random/internal/mock_helpers.h +134 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/random/internal/mock_overload_set.h +122 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/random/internal/mock_validators.h +98 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/random/internal/nanobenchmark.h +172 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/random/internal/nonsecure_base.h +160 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/random/internal/pcg_engine.h +287 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/random/internal/platform.h +158 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/random/internal/randen.h +96 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/random/internal/randen_detect.h +33 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/random/internal/randen_engine.h +265 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/random/internal/randen_hwaes.h +50 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/random/internal/randen_slow.h +40 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/random/internal/randen_traits.h +88 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/random/internal/salted_seed_seq.h +166 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/random/internal/seed_material.h +105 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/random/internal/sequence_urbg.h +60 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/random/internal/traits.h +170 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/random/internal/uniform_helper.h +244 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/random/internal/wide_multiply.h +95 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/random/log_uniform_int_distribution.h +253 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/random/mock_distributions.h +269 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/random/mocking_access.h +74 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/random/mocking_bit_gen.h +227 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/random/poisson_distribution.h +262 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/random/random.h +224 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/random/seed_gen_exception.h +55 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/random/seed_sequences.h +112 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/random/uniform_int_distribution.h +276 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/random/uniform_real_distribution.h +204 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/random/zipf_distribution.h +273 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/status/internal/status_internal.cc +296 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/status/internal/status_internal.h +157 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/status/internal/status_matchers.h +260 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/status/internal/statusor_internal.h +657 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/status/status.cc +413 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/status/status.h +1174 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/status/status_builder.h +978 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/status/status_macros.h +484 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/status/status_matchers.h +167 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/status/status_payload_printer.cc +36 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/status/status_payload_printer.h +53 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/status/statusor.cc +106 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/status/statusor.h +776 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/ascii.cc +296 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/ascii.h +288 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/charconv.cc +1442 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/charconv.h +123 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/charset.h +163 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/cord.cc +1601 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/cord.h +1773 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/cord_analysis.cc +196 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/cord_analysis.h +63 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/cord_buffer.h +574 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/cord_test_helpers.h +122 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/cordz_test_helpers.h +152 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/escaping.cc +1183 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/escaping.h +195 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/has_absl_stringify.h +64 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/has_ostream_operator.h +42 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/internal/append_and_overwrite.h +93 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/internal/charconv_bigint.cc +357 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/internal/charconv_bigint.h +433 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/internal/charconv_parse.cc +504 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/internal/charconv_parse.h +99 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/internal/cord_data_edge.h +63 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/internal/cord_internal.cc +70 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/internal/cord_internal.h +942 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/internal/cord_rep_btree.cc +1237 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/internal/cord_rep_btree.h +944 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/internal/cord_rep_btree_navigator.cc +187 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/internal/cord_rep_btree_navigator.h +267 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/internal/cord_rep_btree_reader.cc +69 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/internal/cord_rep_btree_reader.h +212 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/internal/cord_rep_consume.cc +64 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/internal/cord_rep_consume.h +47 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/internal/cord_rep_crc.cc +56 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/internal/cord_rep_crc.h +103 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/internal/cord_rep_flat.h +195 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/internal/cord_rep_test_util.h +205 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/internal/cordz_functions.cc +102 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/internal/cordz_functions.h +87 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/internal/cordz_handle.cc +165 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/internal/cordz_handle.h +98 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/internal/cordz_info.cc +424 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/internal/cordz_info.h +295 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/internal/cordz_sample_token.h +97 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/internal/cordz_statistics.h +88 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/internal/cordz_update_scope.h +71 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/internal/cordz_update_tracker.h +123 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/internal/damerau_levenshtein_distance.cc +99 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/internal/damerau_levenshtein_distance.h +35 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/internal/escaping.cc +68 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/internal/escaping.h +35 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/internal/escaping_test_common.h +133 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/internal/generic_printer.h +115 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/internal/generic_printer_internal.h +444 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/internal/memutil.cc +48 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/internal/memutil.h +40 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/internal/numbers_test_common.h +184 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/internal/ostringstream.cc +43 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/internal/ostringstream.h +114 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/internal/pow10_helper.h +40 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/internal/resize_uninitialized.h +114 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/internal/stl_type_traits.h +248 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/internal/str_format/arg.cc +615 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/internal/str_format/arg.h +653 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/internal/str_format/bind.cc +275 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/internal/str_format/bind.h +237 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/internal/str_format/checker.h +98 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/internal/str_format/constexpr_parser.h +357 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/internal/str_format/extension.cc +53 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/internal/str_format/extension.h +456 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/internal/str_format/float_conversion.cc +2148 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/internal/str_format/float_conversion.h +37 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/internal/str_format/output.cc +74 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/internal/str_format/output.h +97 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/internal/str_format/parser.cc +140 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/internal/str_format/parser.h +271 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/internal/str_join_internal.h +340 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/internal/str_split_internal.h +524 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/internal/string_constant.h +67 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/internal/stringify_sink.cc +28 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/internal/stringify_sink.h +69 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/internal/stringify_stream.h +119 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/internal/utf8.cc +148 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/internal/utf8.h +64 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/match.cc +133 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/match.h +129 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/numbers.cc +1636 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/numbers.h +363 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/resize_and_overwrite.h +198 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/str_cat.cc +247 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/str_cat.h +668 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/str_format.h +887 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/str_join.h +301 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/str_replace.cc +91 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/str_replace.h +222 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/str_split.cc +144 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/str_split.h +587 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/string_view.h +60 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/strip.h +99 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/substitute.cc +187 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/substitute.h +769 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/synchronization/barrier.cc +52 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/synchronization/barrier.h +79 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/synchronization/blocking_counter.cc +73 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/synchronization/blocking_counter.h +107 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/synchronization/internal/create_thread_identity.cc +173 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/synchronization/internal/create_thread_identity.h +56 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/synchronization/internal/futex.h +177 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/synchronization/internal/futex_waiter.cc +107 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/synchronization/internal/futex_waiter.h +63 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/synchronization/internal/graphcycles.cc +714 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/synchronization/internal/graphcycles.h +146 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/synchronization/internal/kernel_timeout.cc +220 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/synchronization/internal/kernel_timeout.h +178 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/synchronization/internal/per_thread_sem.cc +106 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/synchronization/internal/per_thread_sem.h +124 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/synchronization/internal/pthread_waiter.cc +163 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/synchronization/internal/pthread_waiter.h +60 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/synchronization/internal/sem_waiter.cc +118 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/synchronization/internal/sem_waiter.h +65 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/synchronization/internal/stdcpp_waiter.cc +87 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/synchronization/internal/stdcpp_waiter.h +56 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/synchronization/internal/thread_pool.h +96 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/synchronization/internal/waiter.h +69 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/synchronization/internal/waiter_base.cc +38 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/synchronization/internal/waiter_base.h +90 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/synchronization/internal/win32_waiter.cc +147 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/synchronization/internal/win32_waiter.h +72 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/synchronization/mutex.cc +2833 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/synchronization/mutex.h +1352 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/synchronization/notification.cc +85 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/synchronization/notification.h +133 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/time/civil_time.cc +200 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/time/civil_time.h +589 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/time/clock.cc +603 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/time/clock.h +81 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/time/clock_interface.h +93 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/time/duration.cc +918 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/time/format.cc +155 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/time/internal/cctz/include/cctz/civil_time.h +332 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/time/internal/cctz/include/cctz/civil_time_detail.h +644 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/time/internal/cctz/include/cctz/time_zone.h +460 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/time/internal/cctz/include/cctz/zone_info_source.h +102 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/time/internal/cctz/src/civil_time_detail.cc +94 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/time/internal/cctz/src/test_time_zone_names.h +33 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_fixed.cc +140 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_fixed.h +52 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_format.cc +1069 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_if.cc +47 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_if.h +80 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_impl.cc +115 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_impl.h +97 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_info.cc +1070 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_info.h +128 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_libc.cc +333 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_libc.h +60 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_lookup.cc +217 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_name_win.cc +185 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_name_win.h +37 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_posix.cc +159 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_posix.h +132 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/time/internal/cctz/src/tzfile.h +115 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/time/internal/cctz/src/zone_info_source.cc +116 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/time/internal/get_current_time_chrono.inc +31 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/time/internal/get_current_time_posix.inc +24 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/time/internal/test_util.h +33 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/time/simulated_clock.h +109 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/time/time.cc +507 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/time/time.h +1926 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/types/any.h +66 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/types/any_span.h +1067 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/types/compare.h +506 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/types/internal/any_span.h +477 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/types/internal/span.h +140 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/types/optional.h +68 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/types/optional_ref.h +295 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/types/source_location.cc +18 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/types/source_location.h +172 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/types/span.h +827 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/types/variant.h +139 -0
- data/ext/protovalidate/sys/third_party/abseil-cpp/absl/utility/utility.h +151 -0
- data/ext/protovalidate/sys/third_party/antlr4/LICENSE.txt +28 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/ANTLRErrorListener.cpp +10 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/ANTLRErrorListener.h +167 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/ANTLRErrorStrategy.cpp +10 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/ANTLRErrorStrategy.h +121 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/ANTLRFileStream.cpp +23 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/ANTLRFileStream.h +30 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/ANTLRInputStream.cpp +180 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/ANTLRInputStream.h +79 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/BailErrorStrategy.cpp +61 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/BailErrorStrategy.h +59 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/BaseErrorListener.cpp +25 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/BaseErrorListener.h +36 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/BufferedTokenStream.cpp +414 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/BufferedTokenStream.h +200 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/CharStream.cpp +11 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/CharStream.h +37 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/CommonToken.cpp +193 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/CommonToken.h +158 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/CommonTokenFactory.cpp +39 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/CommonTokenFactory.h +74 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/CommonTokenStream.cpp +78 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/CommonTokenStream.h +79 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/ConsoleErrorListener.cpp +15 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/ConsoleErrorListener.h +35 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/DefaultErrorStrategy.cpp +336 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/DefaultErrorStrategy.h +466 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/DiagnosticErrorListener.cpp +84 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/DiagnosticErrorListener.h +80 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/Exceptions.cpp +64 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/Exceptions.h +99 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/FailedPredicateException.cpp +52 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/FailedPredicateException.h +32 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/FlatHashMap.h +57 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/FlatHashSet.h +57 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/InputMismatchException.cpp +18 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/InputMismatchException.h +24 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/IntStream.cpp +12 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/IntStream.h +218 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/InterpreterRuleContext.cpp +19 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/InterpreterRuleContext.h +45 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/Lexer.cpp +294 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/Lexer.h +196 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/LexerInterpreter.cpp +60 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/LexerInterpreter.h +46 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/LexerNoViableAltException.cpp +36 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/LexerNoViableAltException.h +31 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/ListTokenSource.cpp +92 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/ListTokenSource.h +88 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/NoViableAltException.cpp +46 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/NoViableAltException.h +42 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/Parser.cpp +670 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/Parser.h +461 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/ParserInterpreter.cpp +294 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/ParserInterpreter.h +173 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/ParserRuleContext.cpp +138 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/ParserRuleContext.h +147 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/ProxyErrorListener.cpp +53 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/ProxyErrorListener.h +38 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/RecognitionException.cpp +65 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/RecognitionException.h +98 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/Recognizer.cpp +157 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/Recognizer.h +160 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/RuleContext.cpp +144 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/RuleContext.h +141 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/RuleContextWithAltNum.cpp +27 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/RuleContextWithAltNum.h +32 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/RuntimeMetaData.cpp +54 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/RuntimeMetaData.h +155 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/Token.cpp +9 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/Token.h +92 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/TokenFactory.h +30 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/TokenSource.cpp +9 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/TokenSource.h +85 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/TokenStream.cpp +11 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/TokenStream.h +137 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/TokenStreamRewriter.cpp +428 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/TokenStreamRewriter.h +295 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/UnbufferedCharStream.cpp +208 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/UnbufferedCharStream.h +117 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/UnbufferedTokenStream.cpp +270 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/UnbufferedTokenStream.h +115 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/Version.h +42 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/Vocabulary.cpp +64 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/Vocabulary.h +177 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/WritableToken.cpp +9 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/WritableToken.h +23 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/antlr4-common.h +101 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/antlr4-runtime.h +168 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/ATN.cpp +159 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/ATN.h +133 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/ATNConfig.cpp +106 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/ATNConfig.h +157 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/ATNConfigSet.cpp +233 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/ATNConfigSet.h +157 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/ATNDeserializationOptions.cpp +39 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/ATNDeserializationOptions.h +48 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/ATNDeserializer.cpp +628 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/ATNDeserializer.h +32 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/ATNSimulator.cpp +33 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/ATNSimulator.h +71 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/ATNState.cpp +56 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/ATNState.h +139 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/ATNStateType.cpp +33 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/ATNStateType.h +36 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/ATNType.h +20 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/ActionTransition.cpp +29 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/ActionTransition.h +35 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/AmbiguityInfo.cpp +16 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/AmbiguityInfo.h +68 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/ArrayPredictionContext.cpp +129 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/ArrayPredictionContext.h +51 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/AtomTransition.cpp +27 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/AtomTransition.h +33 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/BasicBlockStartState.h +24 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/BasicState.h +23 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/BlockEndState.h +26 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/BlockStartState.h +30 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/ContextSensitivityInfo.cpp +14 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/ContextSensitivityInfo.h +47 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/DecisionEventInfo.cpp +14 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/DecisionEventInfo.h +70 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/DecisionInfo.cpp +25 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/DecisionInfo.h +227 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/DecisionState.cpp +12 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/DecisionState.h +34 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/EpsilonTransition.cpp +31 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/EpsilonTransition.h +42 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/ErrorInfo.cpp +15 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/ErrorInfo.h +43 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/HashUtils.h +18 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/LL1Analyzer.cpp +189 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/LL1Analyzer.h +76 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/LexerATNConfig.cpp +67 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/LexerATNConfig.h +44 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/LexerATNSimulator.cpp +621 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/LexerATNSimulator.h +199 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/LexerAction.cpp +15 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/LexerAction.h +100 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/LexerActionExecutor.cpp +108 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/LexerActionExecutor.h +128 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/LexerActionType.h +57 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/LexerChannelAction.cpp +43 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/LexerChannelAction.h +59 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/LexerCustomAction.cpp +45 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/LexerCustomAction.h +75 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/LexerIndexedCustomAction.cpp +50 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/LexerIndexedCustomAction.h +76 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/LexerModeAction.cpp +43 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/LexerModeAction.h +57 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/LexerMoreAction.cpp +36 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/LexerMoreAction.h +53 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/LexerPopModeAction.cpp +36 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/LexerPopModeAction.h +53 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/LexerPushModeAction.cpp +43 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/LexerPushModeAction.h +57 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/LexerSkipAction.cpp +36 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/LexerSkipAction.h +51 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/LexerTypeAction.cpp +43 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/LexerTypeAction.h +51 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/LookaheadEventInfo.cpp +16 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/LookaheadEventInfo.h +42 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/LoopEndState.h +26 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/NotSetTransition.cpp +22 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/NotSetTransition.h +27 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/OrderedATNConfigSet.cpp +16 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/OrderedATNConfigSet.h +25 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/ParseInfo.cpp +102 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/ParseInfo.h +102 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/ParserATNSimulator.cpp +1413 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/ParserATNSimulator.h +911 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/ParserATNSimulatorOptions.h +50 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/PlusBlockStartState.h +29 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/PlusLoopbackState.h +25 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/PrecedencePredicateTransition.cpp +23 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/PrecedencePredicateTransition.h +35 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/PredicateEvalInfo.cpp +17 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/PredicateEvalInfo.h +62 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/PredicateTransition.cpp +24 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/PredicateTransition.h +50 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/PredictionContext.cpp +601 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/PredictionContext.h +225 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/PredictionContextCache.cpp +56 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/PredictionContextCache.h +63 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/PredictionContextMergeCache.cpp +167 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/PredictionContextMergeCache.h +101 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/PredictionContextMergeCacheOptions.h +71 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/PredictionContextType.h +21 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/PredictionMode.cpp +202 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/PredictionMode.h +436 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/ProfilingATNSimulator.cpp +179 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/ProfilingATNSimulator.h +60 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/RangeTransition.cpp +26 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/RangeTransition.h +31 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/RuleStartState.h +26 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/RuleStopState.h +27 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/RuleTransition.cpp +33 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/RuleTransition.h +42 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/SemanticContext.cpp +418 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/SemanticContext.h +237 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/SemanticContextType.h +23 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/SerializedATNView.h +101 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/SetTransition.cpp +28 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/SetTransition.h +38 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/SingletonPredictionContext.cpp +79 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/SingletonPredictionContext.h +43 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/StarBlockStartState.h +24 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/StarLoopEntryState.h +37 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/StarLoopbackState.cpp +19 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/StarLoopbackState.h +25 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/TokensStartState.h +24 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/Transition.cpp +36 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/Transition.h +65 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/TransitionType.cpp +27 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/TransitionType.h +33 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/WildcardTransition.cpp +21 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/WildcardTransition.h +27 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/dfa/DFA.cpp +115 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/dfa/DFA.h +96 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/dfa/DFASerializer.cpp +60 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/dfa/DFASerializer.h +32 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/dfa/DFAState.cpp +59 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/dfa/DFAState.h +154 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/dfa/LexerDFASerializer.cpp +17 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/dfa/LexerDFASerializer.h +22 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/internal/Synchronization.cpp +100 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/internal/Synchronization.h +154 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/misc/InterpreterDataReader.cpp +124 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/misc/InterpreterDataReader.h +33 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/misc/Interval.cpp +61 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/misc/Interval.h +84 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/misc/IntervalSet.cpp +508 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/misc/IntervalSet.h +190 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/misc/MurmurHash.cpp +120 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/misc/MurmurHash.h +102 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/misc/Predicate.cpp +4 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/misc/Predicate.h +21 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/support/Any.cpp +8 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/support/Any.h +16 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/support/Arrays.cpp +43 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/support/Arrays.h +149 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/support/BitSet.h +76 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/support/CPPUtils.cpp +207 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/support/CPPUtils.h +65 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/support/Casts.h +34 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/support/Declarations.h +161 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/support/StringUtils.cpp +38 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/support/StringUtils.h +16 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/support/Unicode.h +28 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/support/Utf8.cpp +242 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/support/Utf8.h +54 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/tree/AbstractParseTreeVisitor.h +129 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/tree/ErrorNode.h +24 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/tree/ErrorNodeImpl.cpp +54 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/tree/ErrorNodeImpl.h +43 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/tree/IterativeParseTreeWalker.cpp +66 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/tree/IterativeParseTreeWalker.h +53 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/tree/ParseTree.cpp +12 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/tree/ParseTree.h +111 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/tree/ParseTreeListener.cpp +9 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/tree/ParseTreeListener.h +39 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/tree/ParseTreeProperty.h +50 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/tree/ParseTreeType.h +22 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/tree/ParseTreeVisitor.cpp +9 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/tree/ParseTreeVisitor.h +57 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/tree/ParseTreeWalker.cpp +48 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/tree/ParseTreeWalker.h +55 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/tree/TerminalNode.h +40 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/tree/TerminalNodeImpl.cpp +54 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/tree/TerminalNodeImpl.h +32 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/tree/Trees.cpp +241 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/tree/Trees.h +78 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/tree/pattern/Chunk.cpp +9 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/tree/pattern/Chunk.h +44 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/tree/pattern/ParseTreeMatch.cpp +69 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/tree/pattern/ParseTreeMatch.h +132 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/tree/pattern/ParseTreePattern.cpp +64 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/tree/pattern/ParseTreePattern.h +105 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/tree/pattern/ParseTreePatternMatcher.cpp +370 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/tree/pattern/ParseTreePatternMatcher.h +185 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/tree/pattern/RuleTagToken.cpp +77 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/tree/pattern/RuleTagToken.h +117 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/tree/pattern/TagChunk.cpp +39 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/tree/pattern/TagChunk.h +86 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/tree/pattern/TextChunk.cpp +28 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/tree/pattern/TextChunk.h +51 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/tree/pattern/TokenTagToken.cpp +36 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/tree/pattern/TokenTagToken.h +80 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/tree/xpath/XPath.cpp +154 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/tree/xpath/XPath.h +86 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/tree/xpath/XPathElement.cpp +31 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/tree/xpath/XPathElement.h +40 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/tree/xpath/XPathLexer.cpp +180 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/tree/xpath/XPathLexer.h +53 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/tree/xpath/XPathLexerErrorListener.cpp +13 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/tree/xpath/XPathLexerErrorListener.h +22 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/tree/xpath/XPathRuleAnywhereElement.cpp +20 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/tree/xpath/XPathRuleAnywhereElement.h +27 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/tree/xpath/XPathRuleElement.cpp +30 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/tree/xpath/XPathRuleElement.h +26 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/tree/xpath/XPathTokenAnywhereElement.cpp +20 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/tree/xpath/XPathTokenAnywhereElement.h +25 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/tree/xpath/XPathTokenElement.cpp +33 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/tree/xpath/XPathTokenElement.h +26 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/tree/xpath/XPathWildcardAnywhereElement.cpp +23 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/tree/xpath/XPathWildcardAnywhereElement.h +23 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/tree/xpath/XPathWildcardElement.cpp +24 -0
- data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/tree/xpath/XPathWildcardElement.h +23 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/LICENSE +202 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/base/ast.h +20 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/base/attribute.cc +330 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/base/attribute.h +278 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/base/attribute_set.h +108 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/base/builtins.h +106 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/base/function.h +20 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/base/function_adapter.h +19 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/base/function_descriptor.h +20 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/base/function_result.h +70 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/base/function_result_set.cc +28 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/base/function_result_set.h +105 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/base/internal/memory_manager_testing.h +54 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/base/internal/message_wrapper.h +30 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/base/internal/operators.h +91 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/base/internal/unknown_set.cc +31 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/base/internal/unknown_set.h +131 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/base/kind.h +25 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/base/operators.h +507 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/base/type_provider.h +26 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/checker/checker_options.h +110 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/checker/internal/builtins_arena.cc +28 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/checker/internal/builtins_arena.h +29 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/checker/internal/field_path.h +77 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/checker/internal/namespace_generator.h +120 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/checker/internal/proto_type_mask.h +111 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/checker/internal/proto_type_mask_registry.h +83 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/checker/internal/test_ast_helpers.h +31 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/checker/internal/type_check_env.h +249 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/checker/internal/type_checker_builder_impl.h +170 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/checker/internal/type_checker_impl.h +58 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/checker/internal/type_inference_context.h +229 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/checker/optional.h +30 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/checker/standard_library.h +26 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/checker/type_check_issue.cc +59 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/checker/type_check_issue.h +69 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/checker/type_checker.cc +36 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/checker/type_checker.h +65 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/checker/type_checker_builder.h +186 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/checker/type_checker_builder_factory.h +59 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/checker/type_checker_subset_factory.h +45 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/checker/validation_result.cc +32 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/checker/validation_result.h +117 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/codelab/checked_expr_conversion_example.h +59 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/codelab/exercise1.h +32 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/codelab/exercise10.h +46 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/codelab/exercise2.h +40 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/codelab/exercise4.h +34 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/codelab/network_functions.h +197 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/allocator.h +606 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/any.cc +38 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/any.h +90 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/arena.h +110 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/arena_string.h +365 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/arena_string_pool.h +86 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/arena_string_view.h +239 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/ast/constant_proto.cc +123 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/ast/constant_proto.h +37 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/ast/expr_proto.cc +514 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/ast/expr_proto.h +32 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/ast/metadata.cc +262 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/ast/metadata.h +920 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/ast/navigable_ast_internal.h +311 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/ast/navigable_ast_kinds.cc +80 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/ast/navigable_ast_kinds.h +74 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/ast/source_info_proto.cc +90 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/ast/source_info_proto.h +32 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/ast.cc +98 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/ast.h +157 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/ast_proto.cc +547 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/ast_proto.h +52 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/ast_rewrite.cc +389 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/ast_rewrite.h +146 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/ast_traverse.cc +380 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/ast_traverse.h +105 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/ast_visitor.h +118 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/ast_visitor_base.h +88 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/casting.h +75 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/constant.cc +101 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/constant.h +491 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/container.cc +171 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/container.h +138 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/data.h +120 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/decl.cc +221 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/decl.h +446 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/decl_proto.h +50 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/decl_proto_v1alpha1.h +55 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/descriptor_pool_type_introspector.cc +244 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/descriptor_pool_type_introspector.h +106 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/expr.cc +320 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/expr.h +1720 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/expr_factory.h +402 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/expr_printer.h +57 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/format_type_name.h +30 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/function_descriptor.cc +98 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/function_descriptor.h +124 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/internal/byte_string.cc +1074 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/internal/byte_string.h +688 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/internal/casting.h +237 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/internal/metadata.h +41 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/internal/reference_count.cc +118 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/internal/reference_count.h +406 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/internal/value_conversion.h +115 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/json.h +35 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/kind.cc +80 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/kind.h +76 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/legacy_value.cc +1324 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/legacy_value.h +131 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/memory.cc +83 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/memory.h +1505 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/memory_testing.h +71 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/minimal_descriptor_database.h +32 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/minimal_descriptor_pool.h +36 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/native_type.h +26 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/navigable_ast.cc +202 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/navigable_ast.h +168 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/operators.cc +233 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/operators.h +87 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/optional_ref.h +163 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/reference.h +269 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/reference_count.h +26 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/signature.cc +640 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/signature.h +101 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/source.cc +679 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/source.h +261 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/standard_definitions.h +349 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/type.cc +737 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/type.h +1303 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/type_introspector.cc +277 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/type_introspector.h +157 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/type_kind.h +113 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/type_proto.h +39 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/type_reflector.h +43 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/type_spec_resolver.cc +324 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/type_spec_resolver.h +46 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/type_testing.h +24 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/typeinfo.cc +73 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/typeinfo.h +221 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/types/any_type.h +74 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/types/basic_struct_type.cc +53 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/types/basic_struct_type.h +119 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/types/bool_type.h +73 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/types/bool_wrapper_type.h +79 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/types/bytes_type.h +73 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/types/bytes_wrapper_type.h +79 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/types/double_type.h +73 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/types/double_wrapper_type.h +79 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/types/duration_type.h +73 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/types/dyn_type.h +73 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/types/enum_type.cc +43 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/types/enum_type.h +128 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/types/error_type.h +75 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/types/function_type.cc +89 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/types/function_type.h +91 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/types/function_type_pool.cc +29 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/types/function_type_pool.h +102 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/types/int_type.h +72 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/types/int_wrapper_type.h +78 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/types/legacy_type_introspector.h +34 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/types/list_type.cc +77 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/types/list_type.h +115 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/types/list_type_pool.cc +29 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/types/list_type_pool.h +80 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/types/map_type.cc +122 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/types/map_type.h +124 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/types/map_type_pool.cc +30 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/types/map_type_pool.h +93 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/types/message_type.cc +95 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/types/message_type.h +209 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/types/null_type.h +73 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/types/opaque_type.cc +109 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/types/opaque_type.h +118 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/types/opaque_type_pool.cc +33 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/types/opaque_type_pool.h +99 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/types/optional_type.cc +68 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/types/optional_type.h +114 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/types/string_type.h +73 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/types/string_wrapper_type.h +86 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/types/struct_type.cc +87 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/types/struct_type.h +158 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/types/timestamp_type.h +73 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/types/type_param_type.h +78 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/types/type_pool.cc +96 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/types/type_pool.h +99 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/types/type_type.cc +74 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/types/type_type.h +92 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/types/type_type_pool.cc +26 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/types/type_type_pool.h +86 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/types/types.h +99 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/types/uint_type.h +73 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/types/uint_wrapper_type.h +79 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/types/unknown_type.h +74 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/unknown.h +27 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/value.cc +2791 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/value.h +2947 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/value_kind.h +104 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/value_testing.h +307 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/values/bool_value.cc +97 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/values/bool_value.h +111 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/values/bytes_value.cc +194 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/values/bytes_value.h +338 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/values/bytes_value_input_stream.h +133 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/values/bytes_value_output_stream.h +176 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/values/custom_list_value.cc +614 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/values/custom_list_value.h +423 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/values/custom_map_value.cc +823 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/values/custom_map_value.h +469 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/values/custom_struct_value.cc +385 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/values/custom_struct_value.h +459 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/values/custom_value.h +84 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/values/double_value.cc +137 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/values/double_value.h +101 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/values/duration_value.cc +105 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/values/duration_value.h +147 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/values/enum_value.h +49 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/values/error_value.cc +194 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/values/error_value.h +276 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/values/int_value.cc +111 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/values/int_value.h +117 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/values/legacy_list_value.cc +76 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/values/legacy_list_value.h +167 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/values/legacy_map_value.cc +76 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/values/legacy_map_value.h +185 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/values/legacy_struct_value.cc +43 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/values/legacy_struct_value.h +183 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/values/list_value.cc +304 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/values/list_value.h +284 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/values/list_value_builder.h +110 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/values/list_value_variant.h +214 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/values/map_value.cc +378 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/values/map_value.h +323 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/values/map_value_builder.h +110 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/values/map_value_variant.h +212 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/values/message_value.cc +306 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/values/message_value.h +268 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/values/null_value.cc +78 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/values/null_value.h +96 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/values/opaque_value.cc +194 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/values/opaque_value.h +338 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/values/optional_value.cc +435 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/values/optional_value.h +207 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/values/parsed_json_list_value.cc +486 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/values/parsed_json_list_value.h +229 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/values/parsed_json_map_value.cc +439 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/values/parsed_json_map_value.h +250 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/values/parsed_json_value.cc +103 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/values/parsed_json_value.h +40 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/values/parsed_map_field_value.cc +583 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/values/parsed_map_field_value.h +242 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/values/parsed_message_value.cc +411 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/values/parsed_message_value.h +249 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/values/parsed_repeated_field_value.cc +365 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/values/parsed_repeated_field_value.h +220 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/values/string_value.cc +1518 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/values/string_value.h +489 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/values/struct_value.cc +390 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/values/struct_value.h +373 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/values/struct_value_builder.cc +1552 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/values/struct_value_builder.h +35 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/values/struct_value_variant.h +205 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/values/timestamp_value.cc +105 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/values/timestamp_value.h +146 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/values/type_value.cc +72 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/values/type_value.h +108 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/values/uint_value.cc +110 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/values/uint_value.h +119 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/values/unknown_value.cc +66 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/values/unknown_value.h +121 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/values/value_builder.cc +1432 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/values/value_builder.h +36 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/values/value_variant.cc +537 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/values/value_variant.h +831 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/common/values/values.h +351 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/compiler/compiler.h +195 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/compiler/compiler_factory.h +70 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/compiler/compiler_library_subset_factory.h +80 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/compiler/optional.h +28 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/compiler/standard_library.h +27 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/env/config.h +173 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/env/env.h +76 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/env/env_runtime.h +85 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/env/env_std_extensions.h +42 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/env/env_yaml.h +74 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/env/internal/ext_registry.h +74 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/env/internal/runtime_ext_registry.h +84 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/env/runtime_std_extensions.h +46 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/env/type_info.h +42 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/compiler/cel_expression_builder_flat_impl.cc +111 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/compiler/cel_expression_builder_flat_impl.h +108 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/compiler/check_ast_extensions.cc +58 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/compiler/check_ast_extensions.h +34 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/compiler/comprehension_vulnerability_check.cc +275 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/compiler/comprehension_vulnerability_check.h +51 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/compiler/constant_folding.cc +280 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/compiler/constant_folding.h +42 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/compiler/flat_expr_builder.cc +2667 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/compiler/flat_expr_builder.h +104 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/compiler/flat_expr_builder_extensions.cc +474 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/compiler/flat_expr_builder_extensions.h +481 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/compiler/instrumentation.h +60 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/compiler/qualified_reference_resolver.cc +359 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/compiler/qualified_reference_resolver.h +53 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/compiler/regex_precompilation_optimization.cc +274 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/compiler/regex_precompilation_optimization.h +29 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/compiler/resolver.cc +222 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/compiler/resolver.h +127 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/eval/attribute_trail.cc +28 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/eval/attribute_trail.h +65 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/eval/attribute_utility.cc +260 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/eval/attribute_utility.h +179 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/eval/cel_expression_flat_impl.cc +147 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/eval/cel_expression_flat_impl.h +175 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/eval/compiler_constant_step.cc +37 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/eval/compiler_constant_step.h +76 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/eval/comprehension_slots.h +153 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/eval/comprehension_step.cc +685 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/eval/comprehension_step.h +119 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/eval/const_value_step.h +31 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/eval/container_access_step.cc +370 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/eval/container_access_step.h +26 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/eval/create_list_step.cc +283 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/eval/create_list_step.h +40 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/eval/create_map_step.cc +289 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/eval/create_map_step.h +59 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/eval/create_struct_step.cc +270 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/eval/create_struct_step.h +44 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/eval/direct_expression_step.cc +34 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/eval/direct_expression_step.h +99 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/eval/equality_steps.cc +293 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/eval/equality_steps.h +45 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/eval/evaluator_core.cc +178 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/eval/evaluator_core.h +516 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/eval/evaluator_stack.cc +92 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/eval/evaluator_stack.h +327 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/eval/expression_step_base.h +12 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/eval/function_step.cc +529 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/eval/function_step.h +48 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/eval/ident_step.cc +174 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/eval/ident_step.h +31 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/eval/iterator_stack.h +77 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/eval/jump_step.cc +172 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/eval/jump_step.h +74 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/eval/lazy_init_step.cc +236 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/eval/lazy_init_step.h +87 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/eval/logic_step.cc +487 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/eval/logic_step.h +49 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/eval/optional_or_step.cc +305 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/eval/optional_or_step.h +51 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/eval/regex_match_step.cc +135 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/eval/regex_match_step.h +37 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/eval/select_step.cc +581 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/eval/select_step.h +33 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/eval/shadowable_value_step.cc +98 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/eval/shadowable_value_step.h +26 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/eval/ternary_step.cc +194 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/eval/ternary_step.h +26 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/eval/trace_step.h +73 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/internal/adapter_activation_impl.cc +87 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/internal/adapter_activation_impl.h +68 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/internal/cel_value_equal.cc +242 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/internal/cel_value_equal.h +34 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/internal/errors.cc +64 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/internal/errors.h +54 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/internal/interop.h +20 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/activation.cc +119 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/activation.h +170 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/activation_bind_helper.h +60 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/ast_rewrite.h +175 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/ast_traverse.h +110 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/ast_visitor.h +185 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/ast_visitor_base.h +109 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/base_activation.h +75 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/builtin_func_registrar.cc +65 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/builtin_func_registrar.h +30 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/cel_attribute.cc +90 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/cel_attribute.h +64 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/cel_builtins.h +19 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/cel_expr_builder_factory.cc +146 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/cel_expr_builder_factory.h +43 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/cel_expression.h +144 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/cel_function.cc +76 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/cel_function.h +80 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/cel_function_adapter.h +121 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/cel_function_adapter_impl.h +407 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/cel_function_registry.cc +122 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/cel_function_registry.h +146 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/cel_number.cc +31 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/cel_number.h +36 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/cel_options.cc +51 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/cel_options.h +233 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/cel_type_registry.cc +64 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/cel_type_registry.h +145 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/cel_value.cc +412 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/cel_value.h +770 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/cel_value_internal.h +103 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/cel_value_producer.h +25 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/comparison_functions.h +36 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/container_function_registrar.h +36 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/containers/container_backed_list_impl.h +44 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/containers/container_backed_map_impl.cc +131 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/containers/container_backed_map_impl.h +70 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/containers/field_access.cc +85 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/containers/field_access.h +70 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/containers/field_backed_list_impl.h +33 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/containers/field_backed_map_impl.h +35 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/containers/internal_field_backed_list_impl.cc +36 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/containers/internal_field_backed_list_impl.h +59 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/containers/internal_field_backed_map_impl.cc +298 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/containers/internal_field_backed_map_impl.h +77 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/equality_function_registrar.h +44 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/extension_func_registrar.h +20 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/logical_function_registrar.h +36 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/message_wrapper.h +139 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/portable_cel_function_adapter.h +72 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/set_util.h +43 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/source_position.h +65 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/string_extension_func_registrar.cc +29 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/string_extension_func_registrar.h +31 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/structs/cel_proto_descriptor_pool_builder.h +40 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/structs/cel_proto_wrap_util.cc +1479 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/structs/cel_proto_wrap_util.h +45 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/structs/cel_proto_wrapper.cc +60 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/structs/cel_proto_wrapper.h +53 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/structs/field_access_impl.cc +746 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/structs/field_access_impl.h +80 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/structs/legacy_type_adapter.h +177 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/structs/legacy_type_info_apis.h +108 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/structs/legacy_type_provider.cc +232 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/structs/legacy_type_provider.h +79 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/structs/proto_message_type_adapter.cc +708 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/structs/proto_message_type_adapter.h +137 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/structs/protobuf_descriptor_type_provider.cc +70 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/structs/protobuf_descriptor_type_provider.h +67 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/structs/protobuf_value_factory.h +36 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/structs/trivial_legacy_type_info.h +54 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/transform_utility.h +39 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/unknown_attribute_set.h +20 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/unknown_function_result_set.cc +1 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/unknown_function_result_set.h +27 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/unknown_set.h +22 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/value_export_util.h +28 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/extensions/bindings_ext.h +46 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/extensions/comprehensions_v2.h +39 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/extensions/comprehensions_v2_functions.h +35 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/extensions/comprehensions_v2_macros.h +34 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/extensions/encoders.h +45 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/extensions/formatting.cc +570 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/extensions/formatting.h +39 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/extensions/lists_functions.h +138 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/extensions/math_ext.h +39 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/extensions/math_ext_decls.h +33 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/extensions/math_ext_macros.h +38 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/extensions/proto_ext.h +42 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/extensions/protobuf/ast_converters.h +56 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/extensions/protobuf/bind_proto_to_activation.h +38 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/extensions/protobuf/enum_adapter.h +30 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/extensions/protobuf/internal/map_reflection.cc +132 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/extensions/protobuf/internal/map_reflection.h +67 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/extensions/protobuf/internal/qualify.cc +457 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/extensions/protobuf/internal/qualify.h +117 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/extensions/protobuf/memory_manager.cc +37 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/extensions/protobuf/memory_manager.h +56 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/extensions/protobuf/runtime_adapter.h +51 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/extensions/protobuf/value.h +98 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/extensions/protobuf/value_testing.h +78 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/extensions/regex_ext.h +131 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/extensions/regex_functions.h +52 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/extensions/select_optimization.cc +958 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/extensions/select_optimization.h +90 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/extensions/sets_functions.h +45 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/extensions/strings.cc +432 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/extensions/strings.h +73 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/internal/align.h +95 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/internal/benchmark.h +20 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/internal/casts.h +50 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/internal/empty_descriptors.cc +73 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/internal/empty_descriptors.h +31 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/internal/equals_text_proto.h +65 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/internal/exceptions.h +35 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/internal/json.cc +2041 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/internal/json.h +141 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/internal/lexis.cc +79 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/internal/lexis.h +32 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/internal/manual.h +91 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/internal/message_equality.cc +1490 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/internal/message_equality.h +54 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/internal/message_type_name.h +56 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/internal/minimal_descriptor_database.h +32 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/internal/minimal_descriptor_pool.h +40 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/internal/names.h +26 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/internal/new.cc +142 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/internal/new.h +61 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/internal/noop_delete.h +53 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/internal/number.h +299 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/internal/overflow.cc +339 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/internal/overflow.h +178 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/internal/parse_text_proto.h +121 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/internal/proto_file_util.h +73 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/internal/proto_matchers.h +140 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/internal/proto_time_encoding.cc +103 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/internal/proto_time_encoding.h +49 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/internal/proto_util.h +87 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/internal/protobuf_runtime_version.h +32 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/internal/re2_options.h +61 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/internal/runfiles.h +36 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/internal/status_builder.h +114 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/internal/status_macros.h +152 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/internal/string_pool.cc +79 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/internal/string_pool.h +59 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/internal/strings.cc +693 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/internal/strings.h +90 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/internal/testing.h +44 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/internal/testing_descriptor_pool.h +35 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/internal/testing_message_factory.h +31 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/internal/time.cc +198 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/internal/time.h +65 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/internal/to_address.h +68 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/internal/unicode.h +28 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/internal/utf8.cc +526 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/internal/utf8.h +82 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/internal/well_known_types.cc +2181 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/internal/well_known_types.h +1593 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/parser/internal/ast_factory.cc +320 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/parser/internal/ast_factory.h +174 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/parser/internal/ast_factory_interface.h +130 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/parser/internal/lexer.cc +711 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/parser/internal/lexer.h +286 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/parser/internal/options.h +29 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/parser/internal/pratt_parser.cc +226 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/parser/internal/pratt_parser.h +110 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/parser/internal/pratt_parser_worker.cc +261 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/parser/internal/pratt_parser_worker.h +1143 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/parser/macro.cc +561 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/parser/macro.h +229 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/parser/macro_expr_factory.cc +128 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/parser/macro_expr_factory.h +333 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/parser/macro_registry.cc +87 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/parser/macro_registry.h +59 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/parser/options.h +115 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/parser/parser.cc +1995 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/parser/parser.h +102 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/parser/parser_interface.h +160 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/parser/parser_subset_factory.h +41 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/parser/source_factory.h +47 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/parser/standard_macros.h +31 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/policy/cel_policy.h +333 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/policy/cel_policy_parse_context.h +65 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/policy/cel_policy_parse_result.h +105 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/policy/cel_policy_parser.h +40 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/policy/cel_policy_validation_result.h +84 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/policy/compiler.h +50 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/policy/internal/issue_reporter.h +57 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/policy/internal/optimizer_expr_factory.h +419 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/policy/internal/yaml_string_element_scanner.h +40 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/policy/test_util.h +33 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/policy/yaml_policy_parser.h +135 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/runtime/activation.cc +141 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/runtime/activation.h +184 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/runtime/activation_interface.h +109 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/runtime/bind_proto_to_activation.h +174 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/runtime/comprehension_vulnerability_check.h +35 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/runtime/constant_folding.h +69 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/runtime/embedder_context.h +147 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/runtime/function.h +115 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/runtime/function_adapter.h +830 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/runtime/function_overload_reference.h +34 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/runtime/function_provider.h +46 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/runtime/function_registry.cc +263 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/runtime/function_registry.h +160 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/runtime/internal/activation_attribute_matcher_access.cc +61 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/runtime/internal/activation_attribute_matcher_access.h +60 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/runtime/internal/attribute_matcher.h +48 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/runtime/internal/convert_constant.cc +78 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/runtime/internal/convert_constant.h +39 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/runtime/internal/errors.cc +69 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/runtime/internal/errors.h +71 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/runtime/internal/function_adapter.h +232 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/runtime/internal/issue_collector.h +64 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/runtime/internal/legacy_runtime_type_provider.h +37 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/runtime/internal/runtime_env.cc +73 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/runtime/internal/runtime_env.h +134 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/runtime/internal/runtime_env_testing.h +60 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/runtime/internal/runtime_friend_access.h +45 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/runtime/internal/runtime_impl.cc +159 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/runtime/internal/runtime_impl.h +125 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/runtime/internal/runtime_type_provider.cc +96 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/runtime/internal/runtime_type_provider.h +66 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/runtime/optional_types.h +152 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/runtime/reference_resolver.h +46 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/runtime/regex_precompilation.h +32 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/runtime/register_function_helper.h +99 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/runtime/runtime.h +229 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/runtime/runtime_builder.h +101 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/runtime/runtime_builder_factory.h +65 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/runtime/runtime_issue.h +88 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/runtime/runtime_options.h +209 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/runtime/standard/arithmetic_functions.cc +233 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/runtime/standard/arithmetic_functions.h +35 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/runtime/standard/comparison_functions.cc +272 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/runtime/standard/comparison_functions.h +36 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/runtime/standard/container_functions.cc +136 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/runtime/standard/container_functions.h +36 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/runtime/standard/container_membership_functions.cc +331 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/runtime/standard/container_membership_functions.h +34 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/runtime/standard/equality_functions.cc +612 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/runtime/standard/equality_functions.h +60 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/runtime/standard/logical_functions.cc +66 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/runtime/standard/logical_functions.h +36 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/runtime/standard/regex_functions.cc +56 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/runtime/standard/regex_functions.h +38 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/runtime/standard/string_functions.cc +140 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/runtime/standard/string_functions.h +34 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/runtime/standard/time_functions.cc +499 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/runtime/standard/time_functions.h +56 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/runtime/standard/type_conversion_functions.cc +470 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/runtime/standard/type_conversion_functions.h +34 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/runtime/standard_functions.h +33 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/runtime/standard_runtime_builder_factory.h +43 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/runtime/type_registry.cc +84 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/runtime/type_registry.h +155 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/tools/branch_coverage.h +68 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/tools/cel_field_extractor.h +70 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/tools/cel_unparser.h +60 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/tools/descriptor_pool_builder.h +93 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/tools/flatbuffers_backed_impl.h +58 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/tools/navigable_ast.h +169 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/tools/proto_to_predicate.h +48 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/validator/ast_depth_validator.h +27 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/validator/comprehension_nesting_validator.h +31 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/validator/homogeneous_literal_validator.h +38 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/validator/regex_validator.h +53 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/validator/timestamp_literal_validator.h +29 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/validator/validator.cc +85 -0
- data/ext/protovalidate/sys/third_party/cel-cpp/validator/validator.h +151 -0
- data/ext/protovalidate/sys/third_party/protobuf/LICENSE +32 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/any.cc +65 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/any.h +161 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/any.pb.cc +528 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/any.pb.h +516 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/any_lite.cc +95 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/api.pb.cc +1959 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/api.pb.h +1985 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/arena.cc +1004 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/arena.h +1238 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/arena_align.cc +21 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/arena_align.h +199 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/arena_allocation_policy.h +102 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/arena_cleanup.h +108 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/arena_test_util.h +91 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/arenastring.cc +290 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/arenastring.h +545 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/arenaz_sampler.cc +227 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/arenaz_sampler.h +238 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/compiler/annotation_test_util.h +105 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/compiler/code_generator.h +256 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/compiler/code_generator_lite.h +77 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/compiler/command_line_interface.h +517 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/compiler/command_line_interface_tester.h +162 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/compiler/importer.cc +594 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/compiler/importer.h +338 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/compiler/mock_code_generator.h +144 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/compiler/notices.h +242 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/compiler/package_info.h +40 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/compiler/parser.cc +2716 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/compiler/parser.h +642 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/compiler/plugin.h +73 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/compiler/plugin.pb.h +2320 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/compiler/retention.h +70 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/compiler/scc.h +155 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/compiler/subprocess.h +91 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/compiler/versions.h +78 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/compiler/zip_writer.h +45 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/cpp_edition_defaults.h +12 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/cpp_features.pb.cc +539 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/cpp_features.pb.h +630 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/descriptor.cc +10801 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/descriptor.h +3417 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/descriptor.pb.cc +18982 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/descriptor.pb.h +23170 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/descriptor_database.cc +1102 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/descriptor_database.h +423 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/descriptor_legacy.h +32 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/descriptor_lite.h +110 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/descriptor_test_utils.h +129 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/descriptor_visitor.h +187 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/duration.pb.cc +481 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/duration.pb.h +367 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/dynamic_message.cc +1104 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/dynamic_message.h +217 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/empty.pb.cc +285 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/empty.pb.h +245 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/endian.h +192 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/explicitly_constructed.h +71 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/extension_set.cc +1925 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/extension_set.h +1886 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/extension_set_heavy.cc +459 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/extension_set_inl.h +274 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/feature_resolver.cc +637 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/feature_resolver.h +108 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/field_access_listener.h +166 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/field_mask.pb.cc +472 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/field_mask.pb.h +396 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/field_with_arena.h +110 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/generated_enum_reflection.h +187 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/generated_enum_util.cc +223 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/generated_enum_util.h +185 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/generated_message_bases.cc +88 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/generated_message_bases.h +68 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/generated_message_reflection.cc +4185 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/generated_message_reflection.h +372 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/generated_message_tctable_decl.h +615 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/generated_message_tctable_full.cc +105 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/generated_message_tctable_gen.cc +960 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/generated_message_tctable_gen.h +193 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/generated_message_tctable_impl.h +1229 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/generated_message_tctable_lite.cc +3308 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/generated_message_util.cc +434 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/generated_message_util.h +445 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/has_bits.h +138 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/implicit_weak_message.cc +139 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/implicit_weak_message.h +266 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/inlined_string_field.cc +144 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/inlined_string_field.h +379 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/internal_feature_helper.cc +28 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/internal_feature_helper.h +130 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/internal_metadata_locator.h +291 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/internal_visibility.h +55 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/internal_visibility_for_testing.h +27 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/io/coded_stream.cc +1045 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/io/coded_stream.h +1885 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/io/gzip_stream.cc +333 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/io/gzip_stream.h +189 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/io/io_win32.cc +450 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/io/io_win32.h +118 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/io/package_info.h +30 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/io/printer.cc +842 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/io/printer.h +1183 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/io/strtod.cc +260 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/io/strtod.h +57 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/io/test_zero_copy_stream.h +185 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/io/tokenizer.cc +1262 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/io/tokenizer.h +441 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/io/zero_copy_sink.cc +45 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/io/zero_copy_sink.h +59 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/io/zero_copy_stream.cc +128 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/io/zero_copy_stream.h +269 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/io/zero_copy_stream_impl.cc +354 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/io/zero_copy_stream_impl.h +319 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/io/zero_copy_stream_impl_lite.cc +699 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/io/zero_copy_stream_impl_lite.h +533 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/json/internal/descriptor_traits.h +510 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/json/internal/lexer.cc +512 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/json/internal/lexer.h +341 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/json/internal/message_path.cc +46 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/json/internal/message_path.h +61 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/json/internal/parser.cc +1437 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/json/internal/parser.h +37 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/json/internal/parser_traits.h +400 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/json/internal/unparser.cc +915 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/json/internal/unparser.h +38 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/json/internal/unparser_traits.h +414 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/json/internal/untyped_message.cc +577 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/json/internal/untyped_message.h +246 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/json/internal/writer.cc +307 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/json/internal/writer.h +214 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/json/internal/zero_copy_buffered_stream.cc +152 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/json/internal/zero_copy_buffered_stream.h +338 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/json/json.cc +137 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/json/json.h +200 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/map.cc +297 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/map.h +1787 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/map_entry.h +139 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/map_field.cc +597 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/map_field.h +925 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/map_field_lite.h +124 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/map_test.inc +4427 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/map_test_util.h +617 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/map_type_handler.h +374 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/message.cc +745 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/message.h +1936 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/message_lite.cc +807 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/message_lite.h +1861 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/message_unittest.inc +2302 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/message_unittest_legacy_apis.inc +98 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/metadata.h +13 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/metadata_lite.h +271 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/micro_string.cc +376 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/micro_string.h +649 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/os_macros_restore.inc +97 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/os_macros_undef.inc +166 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/package_info.h +43 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/parse_context.cc +850 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/parse_context.h +1883 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/port.cc +131 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/port.h +908 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/port_def.inc +820 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/port_undef.inc +97 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/proto3_lite_unittest.inc +127 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/raw_ptr.cc +29 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/raw_ptr.h +64 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/reflection.h +603 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/reflection_internal.h +313 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/reflection_mode.cc +36 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/reflection_mode.h +144 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/reflection_ops.cc +456 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/reflection_ops.h +67 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/reflection_tester.h +127 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/reflection_visit_field_info.h +1378 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/reflection_visit_fields.h +511 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/repeated_field.cc +76 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/repeated_field.h +1814 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/repeated_field_proxy.h +697 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/repeated_field_proxy_iterator.h +236 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/repeated_field_proxy_traits.h +100 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/repeated_field_reflection_unittest.inc +687 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/repeated_ptr_field.cc +251 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/repeated_ptr_field.h +2706 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/runtime_version.h +27 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/serial_arena.h +447 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/service.cc +22 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/service.h +271 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/source_context.pb.cc +463 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/source_context.pb.h +376 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/string_block.h +181 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/string_member_robber.h +17 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/struct.pb.cc +1663 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/struct.pb.h +1426 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/stubs/callback.h +584 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/stubs/common.cc +121 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/stubs/common.h +94 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/stubs/platform_macros.h +115 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/stubs/port.h +228 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/stubs/status_macros.h +72 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/symbol_checker.cc +219 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/symbol_checker.h +142 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/test_textproto.h +54 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/test_util.h +3897 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/test_util2.h +70 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/test_util_lite.h +86 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/text_format.cc +3324 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/text_format.h +925 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/thread_safe_arena.h +297 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/timestamp.pb.cc +481 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/timestamp.pb.h +367 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/type.pb.cc +3129 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/type.pb.h +3343 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/unknown_field_set.cc +351 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/unknown_field_set.h +464 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/util/delimited_message_util.cc +107 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/util/delimited_message_util.h +85 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/util/field_comparator.cc +237 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/util/field_comparator.h +256 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/util/field_mask_util.cc +754 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/util/field_mask_util.h +242 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/util/internal_timeval.h +28 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/util/json_util.h +34 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/util/message_differencer.cc +2372 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/util/message_differencer.h +1002 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/util/package_info.h +23 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/util/python/field_mask_util_clif_aux.h +32 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/util/time_util.cc +563 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/util/time_util.h +297 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/util/type_resolver.h +56 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/util/type_resolver_util.cc +436 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/util/type_resolver_util.h +45 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/varint_shuffle.h +165 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/wire_format.cc +1785 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/wire_format.h +374 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/wire_format_lite.cc +901 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/wire_format_lite.h +1720 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/wire_format_unittest.h +1726 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/wrappers.pb.cc +3203 -0
- data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/wrappers.pb.h +2317 -0
- data/ext/protovalidate/sys/third_party/protobuf/third_party/utf8_range/utf8_range.c +207 -0
- data/ext/protovalidate/sys/third_party/protobuf/third_party/utf8_range/utf8_range.h +23 -0
- data/ext/protovalidate/sys/third_party/protobuf/third_party/utf8_range/utf8_range_neon.inc +117 -0
- data/ext/protovalidate/sys/third_party/protobuf/third_party/utf8_range/utf8_range_sse.inc +272 -0
- data/ext/protovalidate/sys/third_party/protobuf/third_party/utf8_range/utf8_validity.h +30 -0
- data/ext/protovalidate/sys/third_party/protovalidate-cc/LICENSE +201 -0
- data/ext/protovalidate/sys/third_party/protovalidate-cc/buf/validate/internal/cel_rules.h +116 -0
- data/ext/protovalidate/sys/third_party/protovalidate-cc/buf/validate/internal/cel_validation_rules.cc +166 -0
- data/ext/protovalidate/sys/third_party/protovalidate-cc/buf/validate/internal/cel_validation_rules.h +72 -0
- data/ext/protovalidate/sys/third_party/protovalidate-cc/buf/validate/internal/extra_func.cc +482 -0
- data/ext/protovalidate/sys/third_party/protovalidate-cc/buf/validate/internal/extra_func.h +31 -0
- data/ext/protovalidate/sys/third_party/protovalidate-cc/buf/validate/internal/field_rules.cc +388 -0
- data/ext/protovalidate/sys/third_party/protovalidate-cc/buf/validate/internal/field_rules.h +92 -0
- data/ext/protovalidate/sys/third_party/protovalidate-cc/buf/validate/internal/lib/ipv4.cc +69 -0
- data/ext/protovalidate/sys/third_party/protovalidate-cc/buf/validate/internal/lib/ipv4.h +58 -0
- data/ext/protovalidate/sys/third_party/protovalidate-cc/buf/validate/internal/lib/ipv6.cc +143 -0
- data/ext/protovalidate/sys/third_party/protovalidate-cc/buf/validate/internal/lib/ipv6.h +51 -0
- data/ext/protovalidate/sys/third_party/protovalidate-cc/buf/validate/internal/lib/parser_common.h +256 -0
- data/ext/protovalidate/sys/third_party/protovalidate-cc/buf/validate/internal/lib/uri.cc +469 -0
- data/ext/protovalidate/sys/third_party/protovalidate-cc/buf/validate/internal/lib/uri.h +25 -0
- data/ext/protovalidate/sys/third_party/protovalidate-cc/buf/validate/internal/message_factory.cc +31 -0
- data/ext/protovalidate/sys/third_party/protovalidate-cc/buf/validate/internal/message_factory.h +43 -0
- data/ext/protovalidate/sys/third_party/protovalidate-cc/buf/validate/internal/message_rules.cc +114 -0
- data/ext/protovalidate/sys/third_party/protovalidate-cc/buf/validate/internal/message_rules.h +39 -0
- data/ext/protovalidate/sys/third_party/protovalidate-cc/buf/validate/internal/proto_field.h +155 -0
- data/ext/protovalidate/sys/third_party/protovalidate-cc/buf/validate/internal/rules.cc +437 -0
- data/ext/protovalidate/sys/third_party/protovalidate-cc/buf/validate/internal/rules.h +221 -0
- data/ext/protovalidate/sys/third_party/protovalidate-cc/buf/validate/internal/validation_rules.h +153 -0
- data/ext/protovalidate/sys/third_party/protovalidate-cc/buf/validate/validator.cc +190 -0
- data/ext/protovalidate/sys/third_party/protovalidate-cc/buf/validate/validator.h +156 -0
- data/ext/protovalidate/sys/third_party/re2/LICENSE +27 -0
- data/ext/protovalidate/sys/third_party/re2/re2/bitmap256.cc +43 -0
- data/ext/protovalidate/sys/third_party/re2/re2/bitmap256.h +88 -0
- data/ext/protovalidate/sys/third_party/re2/re2/bitstate.cc +389 -0
- data/ext/protovalidate/sys/third_party/re2/re2/compile.cc +1265 -0
- data/ext/protovalidate/sys/third_party/re2/re2/dfa.cc +2135 -0
- data/ext/protovalidate/sys/third_party/re2/re2/filtered_re2.cc +138 -0
- data/ext/protovalidate/sys/third_party/re2/re2/filtered_re2.h +115 -0
- data/ext/protovalidate/sys/third_party/re2/re2/mimics_pcre.cc +196 -0
- data/ext/protovalidate/sys/third_party/re2/re2/nfa.cc +714 -0
- data/ext/protovalidate/sys/third_party/re2/re2/onepass.cc +623 -0
- data/ext/protovalidate/sys/third_party/re2/re2/parse.cc +2529 -0
- data/ext/protovalidate/sys/third_party/re2/re2/perl_groups.cc +119 -0
- data/ext/protovalidate/sys/third_party/re2/re2/pod_array.h +55 -0
- data/ext/protovalidate/sys/third_party/re2/re2/prefilter.cc +711 -0
- data/ext/protovalidate/sys/third_party/re2/re2/prefilter.h +168 -0
- data/ext/protovalidate/sys/third_party/re2/re2/prefilter_tree.cc +376 -0
- data/ext/protovalidate/sys/third_party/re2/re2/prefilter_tree.h +153 -0
- data/ext/protovalidate/sys/third_party/re2/re2/prog.cc +1181 -0
- data/ext/protovalidate/sys/third_party/re2/re2/prog.h +493 -0
- data/ext/protovalidate/sys/third_party/re2/re2/re2.cc +1355 -0
- data/ext/protovalidate/sys/third_party/re2/re2/re2.h +1074 -0
- data/ext/protovalidate/sys/third_party/re2/re2/regexp.cc +1004 -0
- data/ext/protovalidate/sys/third_party/re2/re2/regexp.h +693 -0
- data/ext/protovalidate/sys/third_party/re2/re2/set.cc +185 -0
- data/ext/protovalidate/sys/third_party/re2/re2/set.h +91 -0
- data/ext/protovalidate/sys/third_party/re2/re2/simplify.cc +689 -0
- data/ext/protovalidate/sys/third_party/re2/re2/sparse_array.h +394 -0
- data/ext/protovalidate/sys/third_party/re2/re2/sparse_set.h +266 -0
- data/ext/protovalidate/sys/third_party/re2/re2/stringpiece.h +18 -0
- data/ext/protovalidate/sys/third_party/re2/re2/tostring.cc +351 -0
- data/ext/protovalidate/sys/third_party/re2/re2/unicode_casefold.cc +604 -0
- data/ext/protovalidate/sys/third_party/re2/re2/unicode_casefold.h +77 -0
- data/ext/protovalidate/sys/third_party/re2/re2/unicode_groups.cc +6517 -0
- data/ext/protovalidate/sys/third_party/re2/re2/unicode_groups.h +66 -0
- data/ext/protovalidate/sys/third_party/re2/re2/walker-inl.h +249 -0
- data/ext/protovalidate/sys/third_party/re2/util/malloc_counter.h +19 -0
- data/ext/protovalidate/sys/third_party/re2/util/pcre.h +671 -0
- data/ext/protovalidate/sys/third_party/re2/util/rune.cc +260 -0
- data/ext/protovalidate/sys/third_party/re2/util/strutil.cc +26 -0
- data/ext/protovalidate/sys/third_party/re2/util/strutil.h +16 -0
- data/ext/protovalidate/sys/third_party/re2/util/utf.h +44 -0
- data/ext/protovalidate/sys/versions.json +15 -0
- data/lib/buf/validate/validate_pb.rb +55 -0
- data/lib/protovalidate/errors.rb +32 -0
- data/lib/protovalidate/native.rb +30 -0
- data/lib/protovalidate/validator.rb +96 -0
- data/lib/protovalidate/version.rb +10 -0
- data/lib/protovalidate/violation.rb +115 -0
- data/lib/protovalidate.rb +48 -0
- data/sig/buf/validate/validate_pb.rbs +64 -0
- data/sig/protovalidate/native.rbs +14 -0
- data/sig/protovalidate.rbs +90 -0
- metadata +1900 -0
|
@@ -0,0 +1,3343 @@
|
|
|
1
|
+
// Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
2
|
+
// NO CHECKED-IN PROTOBUF GENCODE
|
|
3
|
+
// source: google/protobuf/type.proto
|
|
4
|
+
// Protobuf C++ Version: 7.35.1
|
|
5
|
+
|
|
6
|
+
#ifndef google_2fprotobuf_2ftype_2eproto_2epb_2eh
|
|
7
|
+
#define google_2fprotobuf_2ftype_2eproto_2epb_2eh
|
|
8
|
+
|
|
9
|
+
#include <limits>
|
|
10
|
+
#include <string>
|
|
11
|
+
#include <type_traits>
|
|
12
|
+
#include <utility>
|
|
13
|
+
|
|
14
|
+
// clang-format off
|
|
15
|
+
#include "google/protobuf/runtime_version.h"
|
|
16
|
+
#if PROTOBUF_VERSION != 7035001
|
|
17
|
+
#error "Protobuf C++ gencode is built with an incompatible version of"
|
|
18
|
+
#error "Protobuf C++ headers/runtime. See"
|
|
19
|
+
#error "https://protobuf.dev/support/cross-version-runtime-guarantee/#cpp"
|
|
20
|
+
#endif
|
|
21
|
+
#include "google/protobuf/io/coded_stream.h"
|
|
22
|
+
#include "google/protobuf/arena.h"
|
|
23
|
+
#include "google/protobuf/arenastring.h"
|
|
24
|
+
#include "google/protobuf/generated_message_tctable_decl.h"
|
|
25
|
+
#include "google/protobuf/generated_message_util.h"
|
|
26
|
+
#include "google/protobuf/metadata_lite.h"
|
|
27
|
+
#include "google/protobuf/generated_message_reflection.h"
|
|
28
|
+
#include "google/protobuf/message.h"
|
|
29
|
+
#include "google/protobuf/message_lite.h"
|
|
30
|
+
#include "google/protobuf/repeated_field.h" // IWYU pragma: export
|
|
31
|
+
#include "google/protobuf/extension_set.h" // IWYU pragma: export
|
|
32
|
+
#include "google/protobuf/generated_enum_reflection.h"
|
|
33
|
+
#include "google/protobuf/unknown_field_set.h"
|
|
34
|
+
#include "google/protobuf/any.pb.h"
|
|
35
|
+
#include "google/protobuf/source_context.pb.h"
|
|
36
|
+
// @@protoc_insertion_point(includes)
|
|
37
|
+
|
|
38
|
+
// Must be included last.
|
|
39
|
+
#include "google/protobuf/port_def.inc"
|
|
40
|
+
|
|
41
|
+
#define PROTOBUF_INTERNAL_EXPORT_google_2fprotobuf_2ftype_2eproto PROTOBUF_EXPORT
|
|
42
|
+
|
|
43
|
+
namespace google {
|
|
44
|
+
namespace protobuf {
|
|
45
|
+
namespace internal {
|
|
46
|
+
template <typename T>
|
|
47
|
+
::absl::string_view GetAnyMessageName();
|
|
48
|
+
} // namespace internal
|
|
49
|
+
} // namespace protobuf
|
|
50
|
+
} // namespace google
|
|
51
|
+
|
|
52
|
+
// Internal implementation detail -- do not use these members.
|
|
53
|
+
struct PROTOBUF_EXPORT TableStruct_google_2fprotobuf_2ftype_2eproto {
|
|
54
|
+
static const ::uint32_t offsets[];
|
|
55
|
+
};
|
|
56
|
+
extern "C" {
|
|
57
|
+
PROTOBUF_EXPORT extern const ::google::protobuf::internal::DescriptorTable descriptor_table_google_2fprotobuf_2ftype_2eproto;
|
|
58
|
+
} // extern "C"
|
|
59
|
+
namespace google {
|
|
60
|
+
namespace protobuf {
|
|
61
|
+
enum Field_Cardinality : int;
|
|
62
|
+
PROTOBUF_EXPORT extern const uint32_t Field_Cardinality_internal_data_[];
|
|
63
|
+
enum Field_Kind : int;
|
|
64
|
+
PROTOBUF_EXPORT extern const uint32_t Field_Kind_internal_data_[];
|
|
65
|
+
enum Syntax : int;
|
|
66
|
+
PROTOBUF_EXPORT extern const uint32_t Syntax_internal_data_[];
|
|
67
|
+
class Enum;
|
|
68
|
+
struct EnumGlobalsTypeInternal;
|
|
69
|
+
#ifndef PROTOBUF_MESSAGE_GLOBALS
|
|
70
|
+
PROTOBUF_EXPORT extern EnumGlobalsTypeInternal Enum_globals_;
|
|
71
|
+
PROTOBUF_EXPORT extern const ::google::protobuf::internal::ClassDataFull Enum_class_data_;
|
|
72
|
+
#else
|
|
73
|
+
PROTOBUF_EXPORT extern const EnumGlobalsTypeInternal Enum_globals_;
|
|
74
|
+
#endif // PROTOBUF_MESSAGE_GLOBALS
|
|
75
|
+
class EnumValue;
|
|
76
|
+
struct EnumValueGlobalsTypeInternal;
|
|
77
|
+
#ifndef PROTOBUF_MESSAGE_GLOBALS
|
|
78
|
+
PROTOBUF_EXPORT extern EnumValueGlobalsTypeInternal EnumValue_globals_;
|
|
79
|
+
PROTOBUF_EXPORT extern const ::google::protobuf::internal::ClassDataFull EnumValue_class_data_;
|
|
80
|
+
#else
|
|
81
|
+
PROTOBUF_EXPORT extern const EnumValueGlobalsTypeInternal EnumValue_globals_;
|
|
82
|
+
#endif // PROTOBUF_MESSAGE_GLOBALS
|
|
83
|
+
class Field;
|
|
84
|
+
struct FieldGlobalsTypeInternal;
|
|
85
|
+
#ifndef PROTOBUF_MESSAGE_GLOBALS
|
|
86
|
+
PROTOBUF_EXPORT extern FieldGlobalsTypeInternal Field_globals_;
|
|
87
|
+
PROTOBUF_EXPORT extern const ::google::protobuf::internal::ClassDataFull Field_class_data_;
|
|
88
|
+
#else
|
|
89
|
+
PROTOBUF_EXPORT extern const FieldGlobalsTypeInternal Field_globals_;
|
|
90
|
+
#endif // PROTOBUF_MESSAGE_GLOBALS
|
|
91
|
+
class Option;
|
|
92
|
+
struct OptionGlobalsTypeInternal;
|
|
93
|
+
#ifndef PROTOBUF_MESSAGE_GLOBALS
|
|
94
|
+
PROTOBUF_EXPORT extern OptionGlobalsTypeInternal Option_globals_;
|
|
95
|
+
PROTOBUF_EXPORT extern const ::google::protobuf::internal::ClassDataFull Option_class_data_;
|
|
96
|
+
#else
|
|
97
|
+
PROTOBUF_EXPORT extern const OptionGlobalsTypeInternal Option_globals_;
|
|
98
|
+
#endif // PROTOBUF_MESSAGE_GLOBALS
|
|
99
|
+
class Type;
|
|
100
|
+
struct TypeGlobalsTypeInternal;
|
|
101
|
+
#ifndef PROTOBUF_MESSAGE_GLOBALS
|
|
102
|
+
PROTOBUF_EXPORT extern TypeGlobalsTypeInternal Type_globals_;
|
|
103
|
+
PROTOBUF_EXPORT extern const ::google::protobuf::internal::ClassDataFull Type_class_data_;
|
|
104
|
+
#else
|
|
105
|
+
PROTOBUF_EXPORT extern const TypeGlobalsTypeInternal Type_globals_;
|
|
106
|
+
#endif // PROTOBUF_MESSAGE_GLOBALS
|
|
107
|
+
template <>
|
|
108
|
+
internal::EnumTraitsT<::google::protobuf::Field_Cardinality_internal_data_>
|
|
109
|
+
internal::EnumTraitsImpl::value<::google::protobuf::Field_Cardinality>;
|
|
110
|
+
template <>
|
|
111
|
+
internal::EnumTraitsT<::google::protobuf::Field_Kind_internal_data_>
|
|
112
|
+
internal::EnumTraitsImpl::value<::google::protobuf::Field_Kind>;
|
|
113
|
+
template <>
|
|
114
|
+
internal::EnumTraitsT<::google::protobuf::Syntax_internal_data_>
|
|
115
|
+
internal::EnumTraitsImpl::value<::google::protobuf::Syntax>;
|
|
116
|
+
} // namespace protobuf
|
|
117
|
+
} // namespace google
|
|
118
|
+
|
|
119
|
+
namespace google {
|
|
120
|
+
namespace protobuf {
|
|
121
|
+
enum Field_Kind : int {
|
|
122
|
+
Field_Kind_TYPE_UNKNOWN = 0,
|
|
123
|
+
Field_Kind_TYPE_DOUBLE = 1,
|
|
124
|
+
Field_Kind_TYPE_FLOAT = 2,
|
|
125
|
+
Field_Kind_TYPE_INT64 = 3,
|
|
126
|
+
Field_Kind_TYPE_UINT64 = 4,
|
|
127
|
+
Field_Kind_TYPE_INT32 = 5,
|
|
128
|
+
Field_Kind_TYPE_FIXED64 = 6,
|
|
129
|
+
Field_Kind_TYPE_FIXED32 = 7,
|
|
130
|
+
Field_Kind_TYPE_BOOL = 8,
|
|
131
|
+
Field_Kind_TYPE_STRING = 9,
|
|
132
|
+
Field_Kind_TYPE_GROUP = 10,
|
|
133
|
+
Field_Kind_TYPE_MESSAGE = 11,
|
|
134
|
+
Field_Kind_TYPE_BYTES = 12,
|
|
135
|
+
Field_Kind_TYPE_UINT32 = 13,
|
|
136
|
+
Field_Kind_TYPE_ENUM = 14,
|
|
137
|
+
Field_Kind_TYPE_SFIXED32 = 15,
|
|
138
|
+
Field_Kind_TYPE_SFIXED64 = 16,
|
|
139
|
+
Field_Kind_TYPE_SINT32 = 17,
|
|
140
|
+
Field_Kind_TYPE_SINT64 = 18,
|
|
141
|
+
Field_Kind_Field_Kind_INT_MIN_SENTINEL_DO_NOT_USE_ =
|
|
142
|
+
::std::numeric_limits<::int32_t>::min(),
|
|
143
|
+
Field_Kind_Field_Kind_INT_MAX_SENTINEL_DO_NOT_USE_ =
|
|
144
|
+
::std::numeric_limits<::int32_t>::max(),
|
|
145
|
+
};
|
|
146
|
+
|
|
147
|
+
PROTOBUF_EXPORT extern const uint32_t Field_Kind_internal_data_[];
|
|
148
|
+
inline constexpr Field_Kind Field_Kind_Kind_MIN =
|
|
149
|
+
static_cast<Field_Kind>(0);
|
|
150
|
+
inline constexpr Field_Kind Field_Kind_Kind_MAX =
|
|
151
|
+
static_cast<Field_Kind>(18);
|
|
152
|
+
[[nodiscard]] inline bool Field_Kind_IsValid(int value) {
|
|
153
|
+
return 0 <= value && value <= 18;
|
|
154
|
+
}
|
|
155
|
+
inline constexpr int Field_Kind_Kind_ARRAYSIZE = 18 + 1;
|
|
156
|
+
[[nodiscard]] PROTOBUF_EXPORT const ::google::protobuf::EnumDescriptor* PROTOBUF_NONNULL
|
|
157
|
+
Field_Kind_descriptor();
|
|
158
|
+
[[nodiscard]] inline auto ProtobufInternalGetEnumDescriptor(Field_Kind) {
|
|
159
|
+
return Field_Kind_descriptor();
|
|
160
|
+
}
|
|
161
|
+
template <typename T>
|
|
162
|
+
[[nodiscard]] const ::std::string& Field_Kind_Name(T value) {
|
|
163
|
+
static_assert(::std::is_same<T, Field_Kind>::value ||
|
|
164
|
+
::std::is_integral<T>::value,
|
|
165
|
+
"Incorrect type passed to Kind_Name().");
|
|
166
|
+
return Field_Kind_Name(static_cast<Field_Kind>(value));
|
|
167
|
+
}
|
|
168
|
+
template <>
|
|
169
|
+
[[nodiscard]] inline const ::std::string& Field_Kind_Name(Field_Kind value) {
|
|
170
|
+
return ::google::protobuf::internal::NameOfDenseEnum<Field_Kind_descriptor, 0, 18>(
|
|
171
|
+
static_cast<int>(value));
|
|
172
|
+
}
|
|
173
|
+
[[nodiscard]] inline bool Field_Kind_Parse(
|
|
174
|
+
::absl::string_view name, Field_Kind* PROTOBUF_NONNULL value) {
|
|
175
|
+
return ::google::protobuf::internal::ParseNamedEnum<Field_Kind>(Field_Kind_descriptor(), name,
|
|
176
|
+
value);
|
|
177
|
+
}
|
|
178
|
+
enum Field_Cardinality : int {
|
|
179
|
+
Field_Cardinality_CARDINALITY_UNKNOWN = 0,
|
|
180
|
+
Field_Cardinality_CARDINALITY_OPTIONAL = 1,
|
|
181
|
+
Field_Cardinality_CARDINALITY_REQUIRED = 2,
|
|
182
|
+
Field_Cardinality_CARDINALITY_REPEATED = 3,
|
|
183
|
+
Field_Cardinality_Field_Cardinality_INT_MIN_SENTINEL_DO_NOT_USE_ =
|
|
184
|
+
::std::numeric_limits<::int32_t>::min(),
|
|
185
|
+
Field_Cardinality_Field_Cardinality_INT_MAX_SENTINEL_DO_NOT_USE_ =
|
|
186
|
+
::std::numeric_limits<::int32_t>::max(),
|
|
187
|
+
};
|
|
188
|
+
|
|
189
|
+
PROTOBUF_EXPORT extern const uint32_t Field_Cardinality_internal_data_[];
|
|
190
|
+
inline constexpr Field_Cardinality Field_Cardinality_Cardinality_MIN =
|
|
191
|
+
static_cast<Field_Cardinality>(0);
|
|
192
|
+
inline constexpr Field_Cardinality Field_Cardinality_Cardinality_MAX =
|
|
193
|
+
static_cast<Field_Cardinality>(3);
|
|
194
|
+
[[nodiscard]] inline bool Field_Cardinality_IsValid(int value) {
|
|
195
|
+
return 0 <= value && value <= 3;
|
|
196
|
+
}
|
|
197
|
+
inline constexpr int Field_Cardinality_Cardinality_ARRAYSIZE = 3 + 1;
|
|
198
|
+
[[nodiscard]] PROTOBUF_EXPORT const ::google::protobuf::EnumDescriptor* PROTOBUF_NONNULL
|
|
199
|
+
Field_Cardinality_descriptor();
|
|
200
|
+
[[nodiscard]] inline auto ProtobufInternalGetEnumDescriptor(Field_Cardinality) {
|
|
201
|
+
return Field_Cardinality_descriptor();
|
|
202
|
+
}
|
|
203
|
+
template <typename T>
|
|
204
|
+
[[nodiscard]] const ::std::string& Field_Cardinality_Name(T value) {
|
|
205
|
+
static_assert(::std::is_same<T, Field_Cardinality>::value ||
|
|
206
|
+
::std::is_integral<T>::value,
|
|
207
|
+
"Incorrect type passed to Cardinality_Name().");
|
|
208
|
+
return Field_Cardinality_Name(static_cast<Field_Cardinality>(value));
|
|
209
|
+
}
|
|
210
|
+
template <>
|
|
211
|
+
[[nodiscard]] inline const ::std::string& Field_Cardinality_Name(Field_Cardinality value) {
|
|
212
|
+
return ::google::protobuf::internal::NameOfDenseEnum<Field_Cardinality_descriptor, 0, 3>(
|
|
213
|
+
static_cast<int>(value));
|
|
214
|
+
}
|
|
215
|
+
[[nodiscard]] inline bool Field_Cardinality_Parse(
|
|
216
|
+
::absl::string_view name, Field_Cardinality* PROTOBUF_NONNULL value) {
|
|
217
|
+
return ::google::protobuf::internal::ParseNamedEnum<Field_Cardinality>(Field_Cardinality_descriptor(), name,
|
|
218
|
+
value);
|
|
219
|
+
}
|
|
220
|
+
enum Syntax : int {
|
|
221
|
+
SYNTAX_PROTO2 = 0,
|
|
222
|
+
SYNTAX_PROTO3 = 1,
|
|
223
|
+
SYNTAX_EDITIONS = 2,
|
|
224
|
+
Syntax_INT_MIN_SENTINEL_DO_NOT_USE_ =
|
|
225
|
+
::std::numeric_limits<::int32_t>::min(),
|
|
226
|
+
Syntax_INT_MAX_SENTINEL_DO_NOT_USE_ =
|
|
227
|
+
::std::numeric_limits<::int32_t>::max(),
|
|
228
|
+
};
|
|
229
|
+
|
|
230
|
+
PROTOBUF_EXPORT extern const uint32_t Syntax_internal_data_[];
|
|
231
|
+
inline constexpr Syntax Syntax_MIN =
|
|
232
|
+
static_cast<Syntax>(0);
|
|
233
|
+
inline constexpr Syntax Syntax_MAX =
|
|
234
|
+
static_cast<Syntax>(2);
|
|
235
|
+
[[nodiscard]] inline bool Syntax_IsValid(int value) {
|
|
236
|
+
return 0 <= value && value <= 2;
|
|
237
|
+
}
|
|
238
|
+
inline constexpr int Syntax_ARRAYSIZE = 2 + 1;
|
|
239
|
+
[[nodiscard]] PROTOBUF_EXPORT const ::google::protobuf::EnumDescriptor* PROTOBUF_NONNULL
|
|
240
|
+
Syntax_descriptor();
|
|
241
|
+
[[nodiscard]] inline auto ProtobufInternalGetEnumDescriptor(Syntax) {
|
|
242
|
+
return Syntax_descriptor();
|
|
243
|
+
}
|
|
244
|
+
template <typename T>
|
|
245
|
+
[[nodiscard]] const ::std::string& Syntax_Name(T value) {
|
|
246
|
+
static_assert(::std::is_same<T, Syntax>::value ||
|
|
247
|
+
::std::is_integral<T>::value,
|
|
248
|
+
"Incorrect type passed to Syntax_Name().");
|
|
249
|
+
return Syntax_Name(static_cast<Syntax>(value));
|
|
250
|
+
}
|
|
251
|
+
template <>
|
|
252
|
+
[[nodiscard]] inline const ::std::string& Syntax_Name(Syntax value) {
|
|
253
|
+
return ::google::protobuf::internal::NameOfDenseEnum<Syntax_descriptor, 0, 2>(
|
|
254
|
+
static_cast<int>(value));
|
|
255
|
+
}
|
|
256
|
+
[[nodiscard]] inline bool Syntax_Parse(
|
|
257
|
+
::absl::string_view name, Syntax* PROTOBUF_NONNULL value) {
|
|
258
|
+
return ::google::protobuf::internal::ParseNamedEnum<Syntax>(Syntax_descriptor(), name,
|
|
259
|
+
value);
|
|
260
|
+
}
|
|
261
|
+
using ::google::protobuf::internal::generated_enum::AbslParseFlag;
|
|
262
|
+
using ::google::protobuf::internal::generated_enum::AbslUnparseFlag;
|
|
263
|
+
|
|
264
|
+
// ===================================================================
|
|
265
|
+
|
|
266
|
+
|
|
267
|
+
// -------------------------------------------------------------------
|
|
268
|
+
|
|
269
|
+
class PROTOBUF_EXPORT PROTOBUF_FUTURE_ADD_EARLY_WARN_UNUSED Option final : public ::google::protobuf::Message
|
|
270
|
+
/* @@protoc_insertion_point(class_definition:google.protobuf.Option) */ {
|
|
271
|
+
public:
|
|
272
|
+
inline Option() : Option(nullptr) {}
|
|
273
|
+
~Option() PROTOBUF_FINAL;
|
|
274
|
+
|
|
275
|
+
#if defined(PROTOBUF_CUSTOM_VTABLE)
|
|
276
|
+
void operator delete(Option* PROTOBUF_NONNULL msg, ::std::destroying_delete_t) {
|
|
277
|
+
SharedDtor(*msg);
|
|
278
|
+
::google::protobuf::internal::SizedDelete(msg, sizeof(Option));
|
|
279
|
+
}
|
|
280
|
+
#endif
|
|
281
|
+
|
|
282
|
+
template <typename = void>
|
|
283
|
+
explicit constexpr Option(::google::protobuf::internal::ConstantInitialized,
|
|
284
|
+
const ::google::protobuf::internal::ClassData* PROTOBUF_NONNULL
|
|
285
|
+
class_data);
|
|
286
|
+
|
|
287
|
+
inline Option(const Option& from) : Option(nullptr, from) {}
|
|
288
|
+
inline Option(Option&& from) noexcept : Option(nullptr, ::std::move(from)) {}
|
|
289
|
+
inline Option& operator=(const Option& from) {
|
|
290
|
+
CopyFrom(from);
|
|
291
|
+
return *this;
|
|
292
|
+
}
|
|
293
|
+
inline Option& operator=(Option&& from) noexcept {
|
|
294
|
+
if (this == &from) return *this;
|
|
295
|
+
if (::google::protobuf::internal::CanMoveWithInternalSwap(GetArena(), from.GetArena())) {
|
|
296
|
+
InternalSwap(&from);
|
|
297
|
+
} else {
|
|
298
|
+
CopyFrom(from);
|
|
299
|
+
}
|
|
300
|
+
return *this;
|
|
301
|
+
}
|
|
302
|
+
|
|
303
|
+
[[nodiscard]] inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const
|
|
304
|
+
ABSL_ATTRIBUTE_LIFETIME_BOUND {
|
|
305
|
+
return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance);
|
|
306
|
+
}
|
|
307
|
+
[[nodiscard]] inline ::google::protobuf::UnknownFieldSet* PROTOBUF_NONNULL
|
|
308
|
+
mutable_unknown_fields() ABSL_ATTRIBUTE_LIFETIME_BOUND {
|
|
309
|
+
return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>();
|
|
310
|
+
}
|
|
311
|
+
|
|
312
|
+
[[nodiscard]] static const ::google::protobuf::Descriptor* PROTOBUF_NONNULL descriptor() {
|
|
313
|
+
return GetDescriptor();
|
|
314
|
+
}
|
|
315
|
+
[[nodiscard]] static const ::google::protobuf::Descriptor* PROTOBUF_NONNULL
|
|
316
|
+
GetDescriptor() {
|
|
317
|
+
return default_instance().GetMetadata().descriptor;
|
|
318
|
+
}
|
|
319
|
+
[[nodiscard]] static const ::google::protobuf::Reflection* PROTOBUF_NONNULL GetReflection() {
|
|
320
|
+
return default_instance().GetMetadata().reflection;
|
|
321
|
+
}
|
|
322
|
+
[[nodiscard]] static const Option& default_instance() {
|
|
323
|
+
return *::google::protobuf::internal::MessageGlobalsBase::ToDefaultInstance<Option>(&Option_globals_);
|
|
324
|
+
}
|
|
325
|
+
static constexpr int kIndexInFileMessages = 4;
|
|
326
|
+
friend void swap(Option& a, Option& b) { a.Swap(&b); }
|
|
327
|
+
inline void Swap(Option* PROTOBUF_NONNULL other) {
|
|
328
|
+
if (other == this) return;
|
|
329
|
+
if (::google::protobuf::internal::CanUseInternalSwap(GetArena(), other->GetArena())) {
|
|
330
|
+
InternalSwap(other);
|
|
331
|
+
} else {
|
|
332
|
+
::google::protobuf::internal::GenericSwap(this, other);
|
|
333
|
+
}
|
|
334
|
+
}
|
|
335
|
+
void UnsafeArenaSwap(Option* PROTOBUF_NONNULL other) {
|
|
336
|
+
if (other == this) return;
|
|
337
|
+
ABSL_DCHECK(GetArena() == other->GetArena());
|
|
338
|
+
InternalSwap(other);
|
|
339
|
+
}
|
|
340
|
+
|
|
341
|
+
// implements Message ----------------------------------------------
|
|
342
|
+
|
|
343
|
+
[[nodiscard]] Option* PROTOBUF_NONNULL
|
|
344
|
+
New(::google::protobuf::Arena* PROTOBUF_NULLABLE arena = nullptr) const {
|
|
345
|
+
return ::google::protobuf::Message::DefaultConstruct<Option>(arena);
|
|
346
|
+
}
|
|
347
|
+
using ::google::protobuf::Message::CopyFrom;
|
|
348
|
+
void CopyFrom(const Option& from);
|
|
349
|
+
using ::google::protobuf::Message::MergeFrom;
|
|
350
|
+
void MergeFrom(const Option& from) { Option::MergeImpl(*this, from); }
|
|
351
|
+
|
|
352
|
+
private:
|
|
353
|
+
static void MergeImpl(::google::protobuf::MessageLite& to_msg,
|
|
354
|
+
const ::google::protobuf::MessageLite& from_msg);
|
|
355
|
+
|
|
356
|
+
public:
|
|
357
|
+
[[nodiscard]] bool IsInitialized() const {
|
|
358
|
+
return true;
|
|
359
|
+
}
|
|
360
|
+
ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL;
|
|
361
|
+
#if defined(PROTOBUF_CUSTOM_VTABLE)
|
|
362
|
+
private:
|
|
363
|
+
[[nodiscard]] static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg);
|
|
364
|
+
[[nodiscard]] static ::uint8_t* PROTOBUF_NONNULL _InternalSerialize(
|
|
365
|
+
const ::google::protobuf::MessageLite& msg, ::uint8_t* PROTOBUF_NONNULL target,
|
|
366
|
+
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL stream);
|
|
367
|
+
|
|
368
|
+
public:
|
|
369
|
+
[[nodiscard]] ::size_t ByteSizeLong() const { return ByteSizeLong(*this); }
|
|
370
|
+
[[nodiscard]] ::uint8_t* PROTOBUF_NONNULL _InternalSerialize(
|
|
371
|
+
::uint8_t* PROTOBUF_NONNULL target,
|
|
372
|
+
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL stream) const {
|
|
373
|
+
return _InternalSerialize(*this, target, stream);
|
|
374
|
+
}
|
|
375
|
+
#else // PROTOBUF_CUSTOM_VTABLE
|
|
376
|
+
[[nodiscard]] ::size_t ByteSizeLong() const final;
|
|
377
|
+
[[nodiscard]] ::uint8_t* PROTOBUF_NONNULL _InternalSerialize(
|
|
378
|
+
::uint8_t* PROTOBUF_NONNULL target,
|
|
379
|
+
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL stream) const final;
|
|
380
|
+
#endif // PROTOBUF_CUSTOM_VTABLE
|
|
381
|
+
[[nodiscard]] int GetCachedSize() const {
|
|
382
|
+
return _impl_._cached_size_.Get();
|
|
383
|
+
}
|
|
384
|
+
|
|
385
|
+
private:
|
|
386
|
+
void SharedCtor(::google::protobuf::Arena* PROTOBUF_NULLABLE arena);
|
|
387
|
+
static void SharedDtor(MessageLite& self);
|
|
388
|
+
void InternalSwap(Option* PROTOBUF_NONNULL other);
|
|
389
|
+
private:
|
|
390
|
+
template <typename T>
|
|
391
|
+
friend ::absl::string_view(::google::protobuf::internal::GetAnyMessageName)();
|
|
392
|
+
static ::absl::string_view FullMessageName() { return "google.protobuf.Option"; }
|
|
393
|
+
|
|
394
|
+
explicit Option(::google::protobuf::Arena* PROTOBUF_NULLABLE arena);
|
|
395
|
+
Option(::google::protobuf::Arena* PROTOBUF_NULLABLE arena, const Option& from);
|
|
396
|
+
Option(
|
|
397
|
+
::google::protobuf::Arena* PROTOBUF_NULLABLE arena, Option&& from) noexcept
|
|
398
|
+
: Option(arena) {
|
|
399
|
+
*this = ::std::move(from);
|
|
400
|
+
}
|
|
401
|
+
const ::google::protobuf::internal::ClassData* PROTOBUF_NONNULL GetClassData() const PROTOBUF_FINAL;
|
|
402
|
+
static void* PROTOBUF_NONNULL PlacementNew_(
|
|
403
|
+
const void* PROTOBUF_NONNULL, void* PROTOBUF_NONNULL mem,
|
|
404
|
+
::google::protobuf::Arena* PROTOBUF_NULLABLE arena);
|
|
405
|
+
static constexpr auto InternalNewImpl_();
|
|
406
|
+
|
|
407
|
+
public:
|
|
408
|
+
static constexpr auto InternalGenerateClassData_(
|
|
409
|
+
const MessageLite& prototype,
|
|
410
|
+
const ::google::protobuf::internal::TcParseTableBase* PROTOBUF_NULLABLE tc_table = nullptr);
|
|
411
|
+
|
|
412
|
+
[[nodiscard]] ::google::protobuf::Metadata GetMetadata() const;
|
|
413
|
+
// nested types ----------------------------------------------------
|
|
414
|
+
|
|
415
|
+
// accessors -------------------------------------------------------
|
|
416
|
+
enum : int {
|
|
417
|
+
kNameFieldNumber = 1,
|
|
418
|
+
kValueFieldNumber = 2,
|
|
419
|
+
};
|
|
420
|
+
// string name = 1;
|
|
421
|
+
void clear_name() ;
|
|
422
|
+
[[nodiscard]] const ::std::string& name() const;
|
|
423
|
+
template <typename Arg_ = const ::std::string&, typename... Args_>
|
|
424
|
+
void set_name(Arg_&& arg, Args_... args);
|
|
425
|
+
::std::string* PROTOBUF_NONNULL mutable_name();
|
|
426
|
+
[[nodiscard]] ::std::string* PROTOBUF_NULLABLE release_name();
|
|
427
|
+
void set_allocated_name(::std::string* PROTOBUF_NULLABLE value);
|
|
428
|
+
|
|
429
|
+
private:
|
|
430
|
+
const ::std::string& _internal_name() const;
|
|
431
|
+
PROTOBUF_ALWAYS_INLINE void _internal_set_name(const ::std::string& value);
|
|
432
|
+
::std::string* PROTOBUF_NONNULL _internal_mutable_name();
|
|
433
|
+
|
|
434
|
+
public:
|
|
435
|
+
// .google.protobuf.Any value = 2;
|
|
436
|
+
[[nodiscard]] bool has_value()
|
|
437
|
+
const;
|
|
438
|
+
void clear_value() ;
|
|
439
|
+
[[nodiscard]] const ::google::protobuf::Any& value() const;
|
|
440
|
+
[[nodiscard]] ::google::protobuf::Any* PROTOBUF_NULLABLE release_value();
|
|
441
|
+
::google::protobuf::Any* PROTOBUF_NONNULL mutable_value();
|
|
442
|
+
void set_allocated_value(::google::protobuf::Any* PROTOBUF_NULLABLE value);
|
|
443
|
+
void unsafe_arena_set_allocated_value(::google::protobuf::Any* PROTOBUF_NULLABLE value);
|
|
444
|
+
::google::protobuf::Any* PROTOBUF_NULLABLE unsafe_arena_release_value();
|
|
445
|
+
|
|
446
|
+
private:
|
|
447
|
+
const ::google::protobuf::Any& _internal_value() const;
|
|
448
|
+
::google::protobuf::Any* PROTOBUF_NONNULL _internal_mutable_value();
|
|
449
|
+
|
|
450
|
+
public:
|
|
451
|
+
// @@protoc_insertion_point(class_scope:google.protobuf.Option)
|
|
452
|
+
private:
|
|
453
|
+
class _Internal;
|
|
454
|
+
using ParseTableT_ =
|
|
455
|
+
::google::protobuf::internal::TcParseTable<1, 2,
|
|
456
|
+
1, 35,
|
|
457
|
+
2>;
|
|
458
|
+
static constexpr ParseTableT_ InternalGenerateParseTable_(
|
|
459
|
+
const ::google::protobuf::internal::ClassData* PROTOBUF_NONNULL class_data);
|
|
460
|
+
friend class ::google::protobuf::internal::TcParser;
|
|
461
|
+
#ifndef PROTOBUF_MESSAGE_GLOBALS
|
|
462
|
+
static const ParseTableT_ _table_;
|
|
463
|
+
#endif
|
|
464
|
+
|
|
465
|
+
friend class ::google::protobuf::MessageLite;
|
|
466
|
+
friend class ::google::protobuf::Arena;
|
|
467
|
+
friend ::google::protobuf::internal::PrivateAccess;
|
|
468
|
+
template <typename T>
|
|
469
|
+
friend class ::google::protobuf::Arena::InternalHelper;
|
|
470
|
+
using InternalArenaConstructable_ = void;
|
|
471
|
+
using DestructorSkippable_ = void;
|
|
472
|
+
struct Impl_ {
|
|
473
|
+
inline explicit constexpr Impl_(::google::protobuf::internal::InternalVisibility visibility,
|
|
474
|
+
::google::protobuf::internal::ConstantInitialized) noexcept;
|
|
475
|
+
inline explicit Impl_(
|
|
476
|
+
::google::protobuf::internal::InternalVisibility visibility,
|
|
477
|
+
::google::protobuf::Arena* PROTOBUF_NULLABLE arena);
|
|
478
|
+
inline explicit Impl_(
|
|
479
|
+
::google::protobuf::internal::InternalVisibility visibility,
|
|
480
|
+
::google::protobuf::Arena* PROTOBUF_NULLABLE arena, const Impl_& from,
|
|
481
|
+
const Option& from_msg);
|
|
482
|
+
::google::protobuf::internal::HasBits<1> _has_bits_;
|
|
483
|
+
::google::protobuf::internal::CachedSize _cached_size_;
|
|
484
|
+
::google::protobuf::internal::ArenaStringPtr name_;
|
|
485
|
+
::google::protobuf::Any* PROTOBUF_NULLABLE value_;
|
|
486
|
+
PROTOBUF_TSAN_DECLARE_MEMBER
|
|
487
|
+
};
|
|
488
|
+
union { Impl_ _impl_; };
|
|
489
|
+
friend struct ::TableStruct_google_2fprotobuf_2ftype_2eproto;
|
|
490
|
+
};
|
|
491
|
+
// -------------------------------------------------------------------
|
|
492
|
+
|
|
493
|
+
class PROTOBUF_EXPORT PROTOBUF_FUTURE_ADD_EARLY_WARN_UNUSED Field final : public ::google::protobuf::Message
|
|
494
|
+
/* @@protoc_insertion_point(class_definition:google.protobuf.Field) */ {
|
|
495
|
+
public:
|
|
496
|
+
inline Field() : Field(nullptr) {}
|
|
497
|
+
~Field() PROTOBUF_FINAL;
|
|
498
|
+
|
|
499
|
+
#if defined(PROTOBUF_CUSTOM_VTABLE)
|
|
500
|
+
void operator delete(Field* PROTOBUF_NONNULL msg, ::std::destroying_delete_t) {
|
|
501
|
+
SharedDtor(*msg);
|
|
502
|
+
::google::protobuf::internal::SizedDelete(msg, sizeof(Field));
|
|
503
|
+
}
|
|
504
|
+
#endif
|
|
505
|
+
|
|
506
|
+
template <typename = void>
|
|
507
|
+
explicit constexpr Field(::google::protobuf::internal::ConstantInitialized,
|
|
508
|
+
const ::google::protobuf::internal::ClassData* PROTOBUF_NONNULL
|
|
509
|
+
class_data);
|
|
510
|
+
|
|
511
|
+
inline Field(const Field& from) : Field(nullptr, from) {}
|
|
512
|
+
inline Field(Field&& from) noexcept : Field(nullptr, ::std::move(from)) {}
|
|
513
|
+
inline Field& operator=(const Field& from) {
|
|
514
|
+
CopyFrom(from);
|
|
515
|
+
return *this;
|
|
516
|
+
}
|
|
517
|
+
inline Field& operator=(Field&& from) noexcept {
|
|
518
|
+
if (this == &from) return *this;
|
|
519
|
+
if (::google::protobuf::internal::CanMoveWithInternalSwap(GetArena(), from.GetArena())) {
|
|
520
|
+
InternalSwap(&from);
|
|
521
|
+
} else {
|
|
522
|
+
CopyFrom(from);
|
|
523
|
+
}
|
|
524
|
+
return *this;
|
|
525
|
+
}
|
|
526
|
+
|
|
527
|
+
[[nodiscard]] inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const
|
|
528
|
+
ABSL_ATTRIBUTE_LIFETIME_BOUND {
|
|
529
|
+
return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance);
|
|
530
|
+
}
|
|
531
|
+
[[nodiscard]] inline ::google::protobuf::UnknownFieldSet* PROTOBUF_NONNULL
|
|
532
|
+
mutable_unknown_fields() ABSL_ATTRIBUTE_LIFETIME_BOUND {
|
|
533
|
+
return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>();
|
|
534
|
+
}
|
|
535
|
+
|
|
536
|
+
[[nodiscard]] static const ::google::protobuf::Descriptor* PROTOBUF_NONNULL descriptor() {
|
|
537
|
+
return GetDescriptor();
|
|
538
|
+
}
|
|
539
|
+
[[nodiscard]] static const ::google::protobuf::Descriptor* PROTOBUF_NONNULL
|
|
540
|
+
GetDescriptor() {
|
|
541
|
+
return default_instance().GetMetadata().descriptor;
|
|
542
|
+
}
|
|
543
|
+
[[nodiscard]] static const ::google::protobuf::Reflection* PROTOBUF_NONNULL GetReflection() {
|
|
544
|
+
return default_instance().GetMetadata().reflection;
|
|
545
|
+
}
|
|
546
|
+
[[nodiscard]] static const Field& default_instance() {
|
|
547
|
+
return *::google::protobuf::internal::MessageGlobalsBase::ToDefaultInstance<Field>(&Field_globals_);
|
|
548
|
+
}
|
|
549
|
+
static constexpr int kIndexInFileMessages = 1;
|
|
550
|
+
friend void swap(Field& a, Field& b) { a.Swap(&b); }
|
|
551
|
+
inline void Swap(Field* PROTOBUF_NONNULL other) {
|
|
552
|
+
if (other == this) return;
|
|
553
|
+
if (::google::protobuf::internal::CanUseInternalSwap(GetArena(), other->GetArena())) {
|
|
554
|
+
InternalSwap(other);
|
|
555
|
+
} else {
|
|
556
|
+
::google::protobuf::internal::GenericSwap(this, other);
|
|
557
|
+
}
|
|
558
|
+
}
|
|
559
|
+
void UnsafeArenaSwap(Field* PROTOBUF_NONNULL other) {
|
|
560
|
+
if (other == this) return;
|
|
561
|
+
ABSL_DCHECK(GetArena() == other->GetArena());
|
|
562
|
+
InternalSwap(other);
|
|
563
|
+
}
|
|
564
|
+
|
|
565
|
+
// implements Message ----------------------------------------------
|
|
566
|
+
|
|
567
|
+
[[nodiscard]] Field* PROTOBUF_NONNULL
|
|
568
|
+
New(::google::protobuf::Arena* PROTOBUF_NULLABLE arena = nullptr) const {
|
|
569
|
+
return ::google::protobuf::Message::DefaultConstruct<Field>(arena);
|
|
570
|
+
}
|
|
571
|
+
using ::google::protobuf::Message::CopyFrom;
|
|
572
|
+
void CopyFrom(const Field& from);
|
|
573
|
+
using ::google::protobuf::Message::MergeFrom;
|
|
574
|
+
void MergeFrom(const Field& from) { Field::MergeImpl(*this, from); }
|
|
575
|
+
|
|
576
|
+
private:
|
|
577
|
+
static void MergeImpl(::google::protobuf::MessageLite& to_msg,
|
|
578
|
+
const ::google::protobuf::MessageLite& from_msg);
|
|
579
|
+
|
|
580
|
+
public:
|
|
581
|
+
[[nodiscard]] bool IsInitialized() const {
|
|
582
|
+
return true;
|
|
583
|
+
}
|
|
584
|
+
ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL;
|
|
585
|
+
#if defined(PROTOBUF_CUSTOM_VTABLE)
|
|
586
|
+
private:
|
|
587
|
+
[[nodiscard]] static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg);
|
|
588
|
+
[[nodiscard]] static ::uint8_t* PROTOBUF_NONNULL _InternalSerialize(
|
|
589
|
+
const ::google::protobuf::MessageLite& msg, ::uint8_t* PROTOBUF_NONNULL target,
|
|
590
|
+
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL stream);
|
|
591
|
+
|
|
592
|
+
public:
|
|
593
|
+
[[nodiscard]] ::size_t ByteSizeLong() const { return ByteSizeLong(*this); }
|
|
594
|
+
[[nodiscard]] ::uint8_t* PROTOBUF_NONNULL _InternalSerialize(
|
|
595
|
+
::uint8_t* PROTOBUF_NONNULL target,
|
|
596
|
+
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL stream) const {
|
|
597
|
+
return _InternalSerialize(*this, target, stream);
|
|
598
|
+
}
|
|
599
|
+
#else // PROTOBUF_CUSTOM_VTABLE
|
|
600
|
+
[[nodiscard]] ::size_t ByteSizeLong() const final;
|
|
601
|
+
[[nodiscard]] ::uint8_t* PROTOBUF_NONNULL _InternalSerialize(
|
|
602
|
+
::uint8_t* PROTOBUF_NONNULL target,
|
|
603
|
+
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL stream) const final;
|
|
604
|
+
#endif // PROTOBUF_CUSTOM_VTABLE
|
|
605
|
+
[[nodiscard]] int GetCachedSize() const {
|
|
606
|
+
return _impl_._cached_size_.Get();
|
|
607
|
+
}
|
|
608
|
+
|
|
609
|
+
private:
|
|
610
|
+
void SharedCtor(::google::protobuf::Arena* PROTOBUF_NULLABLE arena);
|
|
611
|
+
static void SharedDtor(MessageLite& self);
|
|
612
|
+
void InternalSwap(Field* PROTOBUF_NONNULL other);
|
|
613
|
+
private:
|
|
614
|
+
template <typename T>
|
|
615
|
+
friend ::absl::string_view(::google::protobuf::internal::GetAnyMessageName)();
|
|
616
|
+
static ::absl::string_view FullMessageName() { return "google.protobuf.Field"; }
|
|
617
|
+
|
|
618
|
+
explicit Field(::google::protobuf::Arena* PROTOBUF_NULLABLE arena);
|
|
619
|
+
Field(::google::protobuf::Arena* PROTOBUF_NULLABLE arena, const Field& from);
|
|
620
|
+
Field(
|
|
621
|
+
::google::protobuf::Arena* PROTOBUF_NULLABLE arena, Field&& from) noexcept
|
|
622
|
+
: Field(arena) {
|
|
623
|
+
*this = ::std::move(from);
|
|
624
|
+
}
|
|
625
|
+
const ::google::protobuf::internal::ClassData* PROTOBUF_NONNULL GetClassData() const PROTOBUF_FINAL;
|
|
626
|
+
static void* PROTOBUF_NONNULL PlacementNew_(
|
|
627
|
+
const void* PROTOBUF_NONNULL, void* PROTOBUF_NONNULL mem,
|
|
628
|
+
::google::protobuf::Arena* PROTOBUF_NULLABLE arena);
|
|
629
|
+
static constexpr auto InternalNewImpl_();
|
|
630
|
+
|
|
631
|
+
public:
|
|
632
|
+
static constexpr auto InternalGenerateClassData_(
|
|
633
|
+
const MessageLite& prototype,
|
|
634
|
+
const ::google::protobuf::internal::TcParseTableBase* PROTOBUF_NULLABLE tc_table = nullptr);
|
|
635
|
+
|
|
636
|
+
[[nodiscard]] ::google::protobuf::Metadata GetMetadata() const;
|
|
637
|
+
// nested types ----------------------------------------------------
|
|
638
|
+
using Kind = Field_Kind;
|
|
639
|
+
static constexpr Kind TYPE_UNKNOWN = Field_Kind_TYPE_UNKNOWN;
|
|
640
|
+
static constexpr Kind TYPE_DOUBLE = Field_Kind_TYPE_DOUBLE;
|
|
641
|
+
static constexpr Kind TYPE_FLOAT = Field_Kind_TYPE_FLOAT;
|
|
642
|
+
static constexpr Kind TYPE_INT64 = Field_Kind_TYPE_INT64;
|
|
643
|
+
static constexpr Kind TYPE_UINT64 = Field_Kind_TYPE_UINT64;
|
|
644
|
+
static constexpr Kind TYPE_INT32 = Field_Kind_TYPE_INT32;
|
|
645
|
+
static constexpr Kind TYPE_FIXED64 = Field_Kind_TYPE_FIXED64;
|
|
646
|
+
static constexpr Kind TYPE_FIXED32 = Field_Kind_TYPE_FIXED32;
|
|
647
|
+
static constexpr Kind TYPE_BOOL = Field_Kind_TYPE_BOOL;
|
|
648
|
+
static constexpr Kind TYPE_STRING = Field_Kind_TYPE_STRING;
|
|
649
|
+
static constexpr Kind TYPE_GROUP = Field_Kind_TYPE_GROUP;
|
|
650
|
+
static constexpr Kind TYPE_MESSAGE = Field_Kind_TYPE_MESSAGE;
|
|
651
|
+
static constexpr Kind TYPE_BYTES = Field_Kind_TYPE_BYTES;
|
|
652
|
+
static constexpr Kind TYPE_UINT32 = Field_Kind_TYPE_UINT32;
|
|
653
|
+
static constexpr Kind TYPE_ENUM = Field_Kind_TYPE_ENUM;
|
|
654
|
+
static constexpr Kind TYPE_SFIXED32 = Field_Kind_TYPE_SFIXED32;
|
|
655
|
+
static constexpr Kind TYPE_SFIXED64 = Field_Kind_TYPE_SFIXED64;
|
|
656
|
+
static constexpr Kind TYPE_SINT32 = Field_Kind_TYPE_SINT32;
|
|
657
|
+
static constexpr Kind TYPE_SINT64 = Field_Kind_TYPE_SINT64;
|
|
658
|
+
[[nodiscard]] static inline bool Kind_IsValid(int value) {
|
|
659
|
+
return Field_Kind_IsValid(value);
|
|
660
|
+
}
|
|
661
|
+
static constexpr Kind Kind_MIN = Field_Kind_Kind_MIN;
|
|
662
|
+
static constexpr Kind Kind_MAX = Field_Kind_Kind_MAX;
|
|
663
|
+
static constexpr int Kind_ARRAYSIZE = Field_Kind_Kind_ARRAYSIZE;
|
|
664
|
+
static inline const ::google::protobuf::EnumDescriptor* PROTOBUF_NONNULL Kind_descriptor() {
|
|
665
|
+
return Field_Kind_descriptor();
|
|
666
|
+
}
|
|
667
|
+
template <typename T>
|
|
668
|
+
[[nodiscard]] static inline const ::std::string& Kind_Name(T value) {
|
|
669
|
+
return Field_Kind_Name(value);
|
|
670
|
+
}
|
|
671
|
+
[[nodiscard]] static inline bool Kind_Parse(
|
|
672
|
+
::absl::string_view name, Kind* PROTOBUF_NONNULL value) {
|
|
673
|
+
return Field_Kind_Parse(name, value);
|
|
674
|
+
}
|
|
675
|
+
using Cardinality = Field_Cardinality;
|
|
676
|
+
static constexpr Cardinality CARDINALITY_UNKNOWN = Field_Cardinality_CARDINALITY_UNKNOWN;
|
|
677
|
+
static constexpr Cardinality CARDINALITY_OPTIONAL = Field_Cardinality_CARDINALITY_OPTIONAL;
|
|
678
|
+
static constexpr Cardinality CARDINALITY_REQUIRED = Field_Cardinality_CARDINALITY_REQUIRED;
|
|
679
|
+
static constexpr Cardinality CARDINALITY_REPEATED = Field_Cardinality_CARDINALITY_REPEATED;
|
|
680
|
+
[[nodiscard]] static inline bool Cardinality_IsValid(int value) {
|
|
681
|
+
return Field_Cardinality_IsValid(value);
|
|
682
|
+
}
|
|
683
|
+
static constexpr Cardinality Cardinality_MIN = Field_Cardinality_Cardinality_MIN;
|
|
684
|
+
static constexpr Cardinality Cardinality_MAX = Field_Cardinality_Cardinality_MAX;
|
|
685
|
+
static constexpr int Cardinality_ARRAYSIZE = Field_Cardinality_Cardinality_ARRAYSIZE;
|
|
686
|
+
static inline const ::google::protobuf::EnumDescriptor* PROTOBUF_NONNULL Cardinality_descriptor() {
|
|
687
|
+
return Field_Cardinality_descriptor();
|
|
688
|
+
}
|
|
689
|
+
template <typename T>
|
|
690
|
+
[[nodiscard]] static inline const ::std::string& Cardinality_Name(T value) {
|
|
691
|
+
return Field_Cardinality_Name(value);
|
|
692
|
+
}
|
|
693
|
+
[[nodiscard]] static inline bool Cardinality_Parse(
|
|
694
|
+
::absl::string_view name, Cardinality* PROTOBUF_NONNULL value) {
|
|
695
|
+
return Field_Cardinality_Parse(name, value);
|
|
696
|
+
}
|
|
697
|
+
|
|
698
|
+
// accessors -------------------------------------------------------
|
|
699
|
+
enum : int {
|
|
700
|
+
kOptionsFieldNumber = 9,
|
|
701
|
+
kNameFieldNumber = 4,
|
|
702
|
+
kTypeUrlFieldNumber = 6,
|
|
703
|
+
kJsonNameFieldNumber = 10,
|
|
704
|
+
kDefaultValueFieldNumber = 11,
|
|
705
|
+
kKindFieldNumber = 1,
|
|
706
|
+
kCardinalityFieldNumber = 2,
|
|
707
|
+
kNumberFieldNumber = 3,
|
|
708
|
+
kOneofIndexFieldNumber = 7,
|
|
709
|
+
kPackedFieldNumber = 8,
|
|
710
|
+
};
|
|
711
|
+
// repeated .google.protobuf.Option options = 9;
|
|
712
|
+
[[nodiscard]] int options_size()
|
|
713
|
+
const;
|
|
714
|
+
private:
|
|
715
|
+
int _internal_options_size() const;
|
|
716
|
+
|
|
717
|
+
public:
|
|
718
|
+
void clear_options() ;
|
|
719
|
+
[[nodiscard]] const ::google::protobuf::Option& options(int index) const;
|
|
720
|
+
[[nodiscard]] ::google::protobuf::Option* PROTOBUF_NONNULL mutable_options(int index);
|
|
721
|
+
::google::protobuf::Option* PROTOBUF_NONNULL add_options();
|
|
722
|
+
[[nodiscard]] const ::google::protobuf::RepeatedPtrField<::google::protobuf::Option>&
|
|
723
|
+
options() const;
|
|
724
|
+
[[nodiscard]] ::google::protobuf::RepeatedPtrField<::google::protobuf::Option>* PROTOBUF_NONNULL
|
|
725
|
+
mutable_options();
|
|
726
|
+
|
|
727
|
+
private:
|
|
728
|
+
const ::google::protobuf::RepeatedPtrField<::google::protobuf::Option>& _internal_options() const;
|
|
729
|
+
::google::protobuf::RepeatedPtrField<::google::protobuf::Option>* PROTOBUF_NONNULL _internal_mutable_options();
|
|
730
|
+
|
|
731
|
+
public:
|
|
732
|
+
// string name = 4;
|
|
733
|
+
void clear_name() ;
|
|
734
|
+
[[nodiscard]] const ::std::string& name() const;
|
|
735
|
+
template <typename Arg_ = const ::std::string&, typename... Args_>
|
|
736
|
+
void set_name(Arg_&& arg, Args_... args);
|
|
737
|
+
::std::string* PROTOBUF_NONNULL mutable_name();
|
|
738
|
+
[[nodiscard]] ::std::string* PROTOBUF_NULLABLE release_name();
|
|
739
|
+
void set_allocated_name(::std::string* PROTOBUF_NULLABLE value);
|
|
740
|
+
|
|
741
|
+
private:
|
|
742
|
+
const ::std::string& _internal_name() const;
|
|
743
|
+
PROTOBUF_ALWAYS_INLINE void _internal_set_name(const ::std::string& value);
|
|
744
|
+
::std::string* PROTOBUF_NONNULL _internal_mutable_name();
|
|
745
|
+
|
|
746
|
+
public:
|
|
747
|
+
// string type_url = 6;
|
|
748
|
+
void clear_type_url() ;
|
|
749
|
+
[[nodiscard]] const ::std::string& type_url() const;
|
|
750
|
+
template <typename Arg_ = const ::std::string&, typename... Args_>
|
|
751
|
+
void set_type_url(Arg_&& arg, Args_... args);
|
|
752
|
+
::std::string* PROTOBUF_NONNULL mutable_type_url();
|
|
753
|
+
[[nodiscard]] ::std::string* PROTOBUF_NULLABLE release_type_url();
|
|
754
|
+
void set_allocated_type_url(::std::string* PROTOBUF_NULLABLE value);
|
|
755
|
+
|
|
756
|
+
private:
|
|
757
|
+
const ::std::string& _internal_type_url() const;
|
|
758
|
+
PROTOBUF_ALWAYS_INLINE void _internal_set_type_url(const ::std::string& value);
|
|
759
|
+
::std::string* PROTOBUF_NONNULL _internal_mutable_type_url();
|
|
760
|
+
|
|
761
|
+
public:
|
|
762
|
+
// string json_name = 10;
|
|
763
|
+
void clear_json_name() ;
|
|
764
|
+
[[nodiscard]] const ::std::string& json_name() const;
|
|
765
|
+
template <typename Arg_ = const ::std::string&, typename... Args_>
|
|
766
|
+
void set_json_name(Arg_&& arg, Args_... args);
|
|
767
|
+
::std::string* PROTOBUF_NONNULL mutable_json_name();
|
|
768
|
+
[[nodiscard]] ::std::string* PROTOBUF_NULLABLE release_json_name();
|
|
769
|
+
void set_allocated_json_name(::std::string* PROTOBUF_NULLABLE value);
|
|
770
|
+
|
|
771
|
+
private:
|
|
772
|
+
const ::std::string& _internal_json_name() const;
|
|
773
|
+
PROTOBUF_ALWAYS_INLINE void _internal_set_json_name(const ::std::string& value);
|
|
774
|
+
::std::string* PROTOBUF_NONNULL _internal_mutable_json_name();
|
|
775
|
+
|
|
776
|
+
public:
|
|
777
|
+
// string default_value = 11;
|
|
778
|
+
void clear_default_value() ;
|
|
779
|
+
[[nodiscard]] const ::std::string& default_value() const;
|
|
780
|
+
template <typename Arg_ = const ::std::string&, typename... Args_>
|
|
781
|
+
void set_default_value(Arg_&& arg, Args_... args);
|
|
782
|
+
::std::string* PROTOBUF_NONNULL mutable_default_value();
|
|
783
|
+
[[nodiscard]] ::std::string* PROTOBUF_NULLABLE release_default_value();
|
|
784
|
+
void set_allocated_default_value(::std::string* PROTOBUF_NULLABLE value);
|
|
785
|
+
|
|
786
|
+
private:
|
|
787
|
+
const ::std::string& _internal_default_value() const;
|
|
788
|
+
PROTOBUF_ALWAYS_INLINE void _internal_set_default_value(const ::std::string& value);
|
|
789
|
+
::std::string* PROTOBUF_NONNULL _internal_mutable_default_value();
|
|
790
|
+
|
|
791
|
+
public:
|
|
792
|
+
// .google.protobuf.Field.Kind kind = 1;
|
|
793
|
+
void clear_kind() ;
|
|
794
|
+
[[nodiscard]] ::google::protobuf::Field_Kind kind() const;
|
|
795
|
+
void set_kind(::google::protobuf::Field_Kind value);
|
|
796
|
+
|
|
797
|
+
private:
|
|
798
|
+
::google::protobuf::Field_Kind _internal_kind() const;
|
|
799
|
+
void _internal_set_kind(::google::protobuf::Field_Kind value);
|
|
800
|
+
|
|
801
|
+
public:
|
|
802
|
+
// .google.protobuf.Field.Cardinality cardinality = 2;
|
|
803
|
+
void clear_cardinality() ;
|
|
804
|
+
[[nodiscard]] ::google::protobuf::Field_Cardinality cardinality() const;
|
|
805
|
+
void set_cardinality(::google::protobuf::Field_Cardinality value);
|
|
806
|
+
|
|
807
|
+
private:
|
|
808
|
+
::google::protobuf::Field_Cardinality _internal_cardinality() const;
|
|
809
|
+
void _internal_set_cardinality(::google::protobuf::Field_Cardinality value);
|
|
810
|
+
|
|
811
|
+
public:
|
|
812
|
+
// int32 number = 3;
|
|
813
|
+
void clear_number() ;
|
|
814
|
+
[[nodiscard]] ::int32_t number() const;
|
|
815
|
+
void set_number(::int32_t value);
|
|
816
|
+
|
|
817
|
+
private:
|
|
818
|
+
::int32_t _internal_number() const;
|
|
819
|
+
void _internal_set_number(::int32_t value);
|
|
820
|
+
|
|
821
|
+
public:
|
|
822
|
+
// int32 oneof_index = 7;
|
|
823
|
+
void clear_oneof_index() ;
|
|
824
|
+
[[nodiscard]] ::int32_t oneof_index() const;
|
|
825
|
+
void set_oneof_index(::int32_t value);
|
|
826
|
+
|
|
827
|
+
private:
|
|
828
|
+
::int32_t _internal_oneof_index() const;
|
|
829
|
+
void _internal_set_oneof_index(::int32_t value);
|
|
830
|
+
|
|
831
|
+
public:
|
|
832
|
+
// bool packed = 8;
|
|
833
|
+
void clear_packed() ;
|
|
834
|
+
[[nodiscard]] bool packed() const;
|
|
835
|
+
void set_packed(bool value);
|
|
836
|
+
|
|
837
|
+
private:
|
|
838
|
+
bool _internal_packed() const;
|
|
839
|
+
void _internal_set_packed(bool value);
|
|
840
|
+
|
|
841
|
+
public:
|
|
842
|
+
// @@protoc_insertion_point(class_scope:google.protobuf.Field)
|
|
843
|
+
private:
|
|
844
|
+
class _Internal;
|
|
845
|
+
using ParseTableT_ =
|
|
846
|
+
::google::protobuf::internal::TcParseTable<4, 10,
|
|
847
|
+
1, 72,
|
|
848
|
+
2>;
|
|
849
|
+
static constexpr ParseTableT_ InternalGenerateParseTable_(
|
|
850
|
+
const ::google::protobuf::internal::ClassData* PROTOBUF_NONNULL class_data);
|
|
851
|
+
friend class ::google::protobuf::internal::TcParser;
|
|
852
|
+
#ifndef PROTOBUF_MESSAGE_GLOBALS
|
|
853
|
+
static const ParseTableT_ _table_;
|
|
854
|
+
#endif
|
|
855
|
+
|
|
856
|
+
friend class ::google::protobuf::MessageLite;
|
|
857
|
+
friend class ::google::protobuf::Arena;
|
|
858
|
+
friend ::google::protobuf::internal::PrivateAccess;
|
|
859
|
+
template <typename T>
|
|
860
|
+
friend class ::google::protobuf::Arena::InternalHelper;
|
|
861
|
+
using InternalArenaConstructable_ = void;
|
|
862
|
+
using DestructorSkippable_ = void;
|
|
863
|
+
struct Impl_ {
|
|
864
|
+
inline explicit constexpr Impl_(::google::protobuf::internal::InternalVisibility visibility,
|
|
865
|
+
::google::protobuf::internal::ConstantInitialized) noexcept;
|
|
866
|
+
inline explicit Impl_(
|
|
867
|
+
::google::protobuf::internal::InternalVisibility visibility,
|
|
868
|
+
::google::protobuf::Arena* PROTOBUF_NULLABLE arena);
|
|
869
|
+
inline explicit Impl_(
|
|
870
|
+
::google::protobuf::internal::InternalVisibility visibility,
|
|
871
|
+
::google::protobuf::Arena* PROTOBUF_NULLABLE arena, const Impl_& from,
|
|
872
|
+
const Field& from_msg);
|
|
873
|
+
::google::protobuf::internal::HasBits<1> _has_bits_;
|
|
874
|
+
::google::protobuf::internal::CachedSize _cached_size_;
|
|
875
|
+
::google::protobuf::RepeatedPtrField< ::google::protobuf::Option > options_;
|
|
876
|
+
::google::protobuf::internal::ArenaStringPtr name_;
|
|
877
|
+
::google::protobuf::internal::ArenaStringPtr type_url_;
|
|
878
|
+
::google::protobuf::internal::ArenaStringPtr json_name_;
|
|
879
|
+
::google::protobuf::internal::ArenaStringPtr default_value_;
|
|
880
|
+
int kind_;
|
|
881
|
+
int cardinality_;
|
|
882
|
+
::int32_t number_;
|
|
883
|
+
::int32_t oneof_index_;
|
|
884
|
+
bool packed_;
|
|
885
|
+
PROTOBUF_TSAN_DECLARE_MEMBER
|
|
886
|
+
};
|
|
887
|
+
union { Impl_ _impl_; };
|
|
888
|
+
friend struct ::TableStruct_google_2fprotobuf_2ftype_2eproto;
|
|
889
|
+
};
|
|
890
|
+
// -------------------------------------------------------------------
|
|
891
|
+
|
|
892
|
+
class PROTOBUF_EXPORT PROTOBUF_FUTURE_ADD_EARLY_WARN_UNUSED EnumValue final : public ::google::protobuf::Message
|
|
893
|
+
/* @@protoc_insertion_point(class_definition:google.protobuf.EnumValue) */ {
|
|
894
|
+
public:
|
|
895
|
+
inline EnumValue() : EnumValue(nullptr) {}
|
|
896
|
+
~EnumValue() PROTOBUF_FINAL;
|
|
897
|
+
|
|
898
|
+
#if defined(PROTOBUF_CUSTOM_VTABLE)
|
|
899
|
+
void operator delete(EnumValue* PROTOBUF_NONNULL msg, ::std::destroying_delete_t) {
|
|
900
|
+
SharedDtor(*msg);
|
|
901
|
+
::google::protobuf::internal::SizedDelete(msg, sizeof(EnumValue));
|
|
902
|
+
}
|
|
903
|
+
#endif
|
|
904
|
+
|
|
905
|
+
template <typename = void>
|
|
906
|
+
explicit constexpr EnumValue(::google::protobuf::internal::ConstantInitialized,
|
|
907
|
+
const ::google::protobuf::internal::ClassData* PROTOBUF_NONNULL
|
|
908
|
+
class_data);
|
|
909
|
+
|
|
910
|
+
inline EnumValue(const EnumValue& from) : EnumValue(nullptr, from) {}
|
|
911
|
+
inline EnumValue(EnumValue&& from) noexcept : EnumValue(nullptr, ::std::move(from)) {}
|
|
912
|
+
inline EnumValue& operator=(const EnumValue& from) {
|
|
913
|
+
CopyFrom(from);
|
|
914
|
+
return *this;
|
|
915
|
+
}
|
|
916
|
+
inline EnumValue& operator=(EnumValue&& from) noexcept {
|
|
917
|
+
if (this == &from) return *this;
|
|
918
|
+
if (::google::protobuf::internal::CanMoveWithInternalSwap(GetArena(), from.GetArena())) {
|
|
919
|
+
InternalSwap(&from);
|
|
920
|
+
} else {
|
|
921
|
+
CopyFrom(from);
|
|
922
|
+
}
|
|
923
|
+
return *this;
|
|
924
|
+
}
|
|
925
|
+
|
|
926
|
+
[[nodiscard]] inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const
|
|
927
|
+
ABSL_ATTRIBUTE_LIFETIME_BOUND {
|
|
928
|
+
return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance);
|
|
929
|
+
}
|
|
930
|
+
[[nodiscard]] inline ::google::protobuf::UnknownFieldSet* PROTOBUF_NONNULL
|
|
931
|
+
mutable_unknown_fields() ABSL_ATTRIBUTE_LIFETIME_BOUND {
|
|
932
|
+
return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>();
|
|
933
|
+
}
|
|
934
|
+
|
|
935
|
+
[[nodiscard]] static const ::google::protobuf::Descriptor* PROTOBUF_NONNULL descriptor() {
|
|
936
|
+
return GetDescriptor();
|
|
937
|
+
}
|
|
938
|
+
[[nodiscard]] static const ::google::protobuf::Descriptor* PROTOBUF_NONNULL
|
|
939
|
+
GetDescriptor() {
|
|
940
|
+
return default_instance().GetMetadata().descriptor;
|
|
941
|
+
}
|
|
942
|
+
[[nodiscard]] static const ::google::protobuf::Reflection* PROTOBUF_NONNULL GetReflection() {
|
|
943
|
+
return default_instance().GetMetadata().reflection;
|
|
944
|
+
}
|
|
945
|
+
[[nodiscard]] static const EnumValue& default_instance() {
|
|
946
|
+
return *::google::protobuf::internal::MessageGlobalsBase::ToDefaultInstance<EnumValue>(&EnumValue_globals_);
|
|
947
|
+
}
|
|
948
|
+
static constexpr int kIndexInFileMessages = 3;
|
|
949
|
+
friend void swap(EnumValue& a, EnumValue& b) { a.Swap(&b); }
|
|
950
|
+
inline void Swap(EnumValue* PROTOBUF_NONNULL other) {
|
|
951
|
+
if (other == this) return;
|
|
952
|
+
if (::google::protobuf::internal::CanUseInternalSwap(GetArena(), other->GetArena())) {
|
|
953
|
+
InternalSwap(other);
|
|
954
|
+
} else {
|
|
955
|
+
::google::protobuf::internal::GenericSwap(this, other);
|
|
956
|
+
}
|
|
957
|
+
}
|
|
958
|
+
void UnsafeArenaSwap(EnumValue* PROTOBUF_NONNULL other) {
|
|
959
|
+
if (other == this) return;
|
|
960
|
+
ABSL_DCHECK(GetArena() == other->GetArena());
|
|
961
|
+
InternalSwap(other);
|
|
962
|
+
}
|
|
963
|
+
|
|
964
|
+
// implements Message ----------------------------------------------
|
|
965
|
+
|
|
966
|
+
[[nodiscard]] EnumValue* PROTOBUF_NONNULL
|
|
967
|
+
New(::google::protobuf::Arena* PROTOBUF_NULLABLE arena = nullptr) const {
|
|
968
|
+
return ::google::protobuf::Message::DefaultConstruct<EnumValue>(arena);
|
|
969
|
+
}
|
|
970
|
+
using ::google::protobuf::Message::CopyFrom;
|
|
971
|
+
void CopyFrom(const EnumValue& from);
|
|
972
|
+
using ::google::protobuf::Message::MergeFrom;
|
|
973
|
+
void MergeFrom(const EnumValue& from) { EnumValue::MergeImpl(*this, from); }
|
|
974
|
+
|
|
975
|
+
private:
|
|
976
|
+
static void MergeImpl(::google::protobuf::MessageLite& to_msg,
|
|
977
|
+
const ::google::protobuf::MessageLite& from_msg);
|
|
978
|
+
|
|
979
|
+
public:
|
|
980
|
+
[[nodiscard]] bool IsInitialized() const {
|
|
981
|
+
return true;
|
|
982
|
+
}
|
|
983
|
+
ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL;
|
|
984
|
+
#if defined(PROTOBUF_CUSTOM_VTABLE)
|
|
985
|
+
private:
|
|
986
|
+
[[nodiscard]] static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg);
|
|
987
|
+
[[nodiscard]] static ::uint8_t* PROTOBUF_NONNULL _InternalSerialize(
|
|
988
|
+
const ::google::protobuf::MessageLite& msg, ::uint8_t* PROTOBUF_NONNULL target,
|
|
989
|
+
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL stream);
|
|
990
|
+
|
|
991
|
+
public:
|
|
992
|
+
[[nodiscard]] ::size_t ByteSizeLong() const { return ByteSizeLong(*this); }
|
|
993
|
+
[[nodiscard]] ::uint8_t* PROTOBUF_NONNULL _InternalSerialize(
|
|
994
|
+
::uint8_t* PROTOBUF_NONNULL target,
|
|
995
|
+
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL stream) const {
|
|
996
|
+
return _InternalSerialize(*this, target, stream);
|
|
997
|
+
}
|
|
998
|
+
#else // PROTOBUF_CUSTOM_VTABLE
|
|
999
|
+
[[nodiscard]] ::size_t ByteSizeLong() const final;
|
|
1000
|
+
[[nodiscard]] ::uint8_t* PROTOBUF_NONNULL _InternalSerialize(
|
|
1001
|
+
::uint8_t* PROTOBUF_NONNULL target,
|
|
1002
|
+
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL stream) const final;
|
|
1003
|
+
#endif // PROTOBUF_CUSTOM_VTABLE
|
|
1004
|
+
[[nodiscard]] int GetCachedSize() const {
|
|
1005
|
+
return _impl_._cached_size_.Get();
|
|
1006
|
+
}
|
|
1007
|
+
|
|
1008
|
+
private:
|
|
1009
|
+
void SharedCtor(::google::protobuf::Arena* PROTOBUF_NULLABLE arena);
|
|
1010
|
+
static void SharedDtor(MessageLite& self);
|
|
1011
|
+
void InternalSwap(EnumValue* PROTOBUF_NONNULL other);
|
|
1012
|
+
private:
|
|
1013
|
+
template <typename T>
|
|
1014
|
+
friend ::absl::string_view(::google::protobuf::internal::GetAnyMessageName)();
|
|
1015
|
+
static ::absl::string_view FullMessageName() { return "google.protobuf.EnumValue"; }
|
|
1016
|
+
|
|
1017
|
+
explicit EnumValue(::google::protobuf::Arena* PROTOBUF_NULLABLE arena);
|
|
1018
|
+
EnumValue(::google::protobuf::Arena* PROTOBUF_NULLABLE arena, const EnumValue& from);
|
|
1019
|
+
EnumValue(
|
|
1020
|
+
::google::protobuf::Arena* PROTOBUF_NULLABLE arena, EnumValue&& from) noexcept
|
|
1021
|
+
: EnumValue(arena) {
|
|
1022
|
+
*this = ::std::move(from);
|
|
1023
|
+
}
|
|
1024
|
+
const ::google::protobuf::internal::ClassData* PROTOBUF_NONNULL GetClassData() const PROTOBUF_FINAL;
|
|
1025
|
+
static void* PROTOBUF_NONNULL PlacementNew_(
|
|
1026
|
+
const void* PROTOBUF_NONNULL, void* PROTOBUF_NONNULL mem,
|
|
1027
|
+
::google::protobuf::Arena* PROTOBUF_NULLABLE arena);
|
|
1028
|
+
static constexpr auto InternalNewImpl_();
|
|
1029
|
+
|
|
1030
|
+
public:
|
|
1031
|
+
static constexpr auto InternalGenerateClassData_(
|
|
1032
|
+
const MessageLite& prototype,
|
|
1033
|
+
const ::google::protobuf::internal::TcParseTableBase* PROTOBUF_NULLABLE tc_table = nullptr);
|
|
1034
|
+
|
|
1035
|
+
[[nodiscard]] ::google::protobuf::Metadata GetMetadata() const;
|
|
1036
|
+
// nested types ----------------------------------------------------
|
|
1037
|
+
|
|
1038
|
+
// accessors -------------------------------------------------------
|
|
1039
|
+
enum : int {
|
|
1040
|
+
kOptionsFieldNumber = 3,
|
|
1041
|
+
kNameFieldNumber = 1,
|
|
1042
|
+
kNumberFieldNumber = 2,
|
|
1043
|
+
};
|
|
1044
|
+
// repeated .google.protobuf.Option options = 3;
|
|
1045
|
+
[[nodiscard]] int options_size()
|
|
1046
|
+
const;
|
|
1047
|
+
private:
|
|
1048
|
+
int _internal_options_size() const;
|
|
1049
|
+
|
|
1050
|
+
public:
|
|
1051
|
+
void clear_options() ;
|
|
1052
|
+
[[nodiscard]] const ::google::protobuf::Option& options(int index) const;
|
|
1053
|
+
[[nodiscard]] ::google::protobuf::Option* PROTOBUF_NONNULL mutable_options(int index);
|
|
1054
|
+
::google::protobuf::Option* PROTOBUF_NONNULL add_options();
|
|
1055
|
+
[[nodiscard]] const ::google::protobuf::RepeatedPtrField<::google::protobuf::Option>&
|
|
1056
|
+
options() const;
|
|
1057
|
+
[[nodiscard]] ::google::protobuf::RepeatedPtrField<::google::protobuf::Option>* PROTOBUF_NONNULL
|
|
1058
|
+
mutable_options();
|
|
1059
|
+
|
|
1060
|
+
private:
|
|
1061
|
+
const ::google::protobuf::RepeatedPtrField<::google::protobuf::Option>& _internal_options() const;
|
|
1062
|
+
::google::protobuf::RepeatedPtrField<::google::protobuf::Option>* PROTOBUF_NONNULL _internal_mutable_options();
|
|
1063
|
+
|
|
1064
|
+
public:
|
|
1065
|
+
// string name = 1;
|
|
1066
|
+
void clear_name() ;
|
|
1067
|
+
[[nodiscard]] const ::std::string& name() const;
|
|
1068
|
+
template <typename Arg_ = const ::std::string&, typename... Args_>
|
|
1069
|
+
void set_name(Arg_&& arg, Args_... args);
|
|
1070
|
+
::std::string* PROTOBUF_NONNULL mutable_name();
|
|
1071
|
+
[[nodiscard]] ::std::string* PROTOBUF_NULLABLE release_name();
|
|
1072
|
+
void set_allocated_name(::std::string* PROTOBUF_NULLABLE value);
|
|
1073
|
+
|
|
1074
|
+
private:
|
|
1075
|
+
const ::std::string& _internal_name() const;
|
|
1076
|
+
PROTOBUF_ALWAYS_INLINE void _internal_set_name(const ::std::string& value);
|
|
1077
|
+
::std::string* PROTOBUF_NONNULL _internal_mutable_name();
|
|
1078
|
+
|
|
1079
|
+
public:
|
|
1080
|
+
// int32 number = 2;
|
|
1081
|
+
void clear_number() ;
|
|
1082
|
+
[[nodiscard]] ::int32_t number() const;
|
|
1083
|
+
void set_number(::int32_t value);
|
|
1084
|
+
|
|
1085
|
+
private:
|
|
1086
|
+
::int32_t _internal_number() const;
|
|
1087
|
+
void _internal_set_number(::int32_t value);
|
|
1088
|
+
|
|
1089
|
+
public:
|
|
1090
|
+
// @@protoc_insertion_point(class_scope:google.protobuf.EnumValue)
|
|
1091
|
+
private:
|
|
1092
|
+
class _Internal;
|
|
1093
|
+
using ParseTableT_ =
|
|
1094
|
+
::google::protobuf::internal::TcParseTable<2, 3,
|
|
1095
|
+
1, 38,
|
|
1096
|
+
2>;
|
|
1097
|
+
static constexpr ParseTableT_ InternalGenerateParseTable_(
|
|
1098
|
+
const ::google::protobuf::internal::ClassData* PROTOBUF_NONNULL class_data);
|
|
1099
|
+
friend class ::google::protobuf::internal::TcParser;
|
|
1100
|
+
#ifndef PROTOBUF_MESSAGE_GLOBALS
|
|
1101
|
+
static const ParseTableT_ _table_;
|
|
1102
|
+
#endif
|
|
1103
|
+
|
|
1104
|
+
friend class ::google::protobuf::MessageLite;
|
|
1105
|
+
friend class ::google::protobuf::Arena;
|
|
1106
|
+
friend ::google::protobuf::internal::PrivateAccess;
|
|
1107
|
+
template <typename T>
|
|
1108
|
+
friend class ::google::protobuf::Arena::InternalHelper;
|
|
1109
|
+
using InternalArenaConstructable_ = void;
|
|
1110
|
+
using DestructorSkippable_ = void;
|
|
1111
|
+
struct Impl_ {
|
|
1112
|
+
inline explicit constexpr Impl_(::google::protobuf::internal::InternalVisibility visibility,
|
|
1113
|
+
::google::protobuf::internal::ConstantInitialized) noexcept;
|
|
1114
|
+
inline explicit Impl_(
|
|
1115
|
+
::google::protobuf::internal::InternalVisibility visibility,
|
|
1116
|
+
::google::protobuf::Arena* PROTOBUF_NULLABLE arena);
|
|
1117
|
+
inline explicit Impl_(
|
|
1118
|
+
::google::protobuf::internal::InternalVisibility visibility,
|
|
1119
|
+
::google::protobuf::Arena* PROTOBUF_NULLABLE arena, const Impl_& from,
|
|
1120
|
+
const EnumValue& from_msg);
|
|
1121
|
+
::google::protobuf::internal::HasBits<1> _has_bits_;
|
|
1122
|
+
::google::protobuf::internal::CachedSize _cached_size_;
|
|
1123
|
+
::google::protobuf::RepeatedPtrField< ::google::protobuf::Option > options_;
|
|
1124
|
+
::google::protobuf::internal::ArenaStringPtr name_;
|
|
1125
|
+
::int32_t number_;
|
|
1126
|
+
PROTOBUF_TSAN_DECLARE_MEMBER
|
|
1127
|
+
};
|
|
1128
|
+
union { Impl_ _impl_; };
|
|
1129
|
+
friend struct ::TableStruct_google_2fprotobuf_2ftype_2eproto;
|
|
1130
|
+
};
|
|
1131
|
+
// -------------------------------------------------------------------
|
|
1132
|
+
|
|
1133
|
+
class PROTOBUF_EXPORT PROTOBUF_FUTURE_ADD_EARLY_WARN_UNUSED Type final : public ::google::protobuf::Message
|
|
1134
|
+
/* @@protoc_insertion_point(class_definition:google.protobuf.Type) */ {
|
|
1135
|
+
public:
|
|
1136
|
+
inline Type() : Type(nullptr) {}
|
|
1137
|
+
~Type() PROTOBUF_FINAL;
|
|
1138
|
+
|
|
1139
|
+
#if defined(PROTOBUF_CUSTOM_VTABLE)
|
|
1140
|
+
void operator delete(Type* PROTOBUF_NONNULL msg, ::std::destroying_delete_t) {
|
|
1141
|
+
SharedDtor(*msg);
|
|
1142
|
+
::google::protobuf::internal::SizedDelete(msg, sizeof(Type));
|
|
1143
|
+
}
|
|
1144
|
+
#endif
|
|
1145
|
+
|
|
1146
|
+
template <typename = void>
|
|
1147
|
+
explicit constexpr Type(::google::protobuf::internal::ConstantInitialized,
|
|
1148
|
+
const ::google::protobuf::internal::ClassData* PROTOBUF_NONNULL
|
|
1149
|
+
class_data);
|
|
1150
|
+
|
|
1151
|
+
inline Type(const Type& from) : Type(nullptr, from) {}
|
|
1152
|
+
inline Type(Type&& from) noexcept : Type(nullptr, ::std::move(from)) {}
|
|
1153
|
+
inline Type& operator=(const Type& from) {
|
|
1154
|
+
CopyFrom(from);
|
|
1155
|
+
return *this;
|
|
1156
|
+
}
|
|
1157
|
+
inline Type& operator=(Type&& from) noexcept {
|
|
1158
|
+
if (this == &from) return *this;
|
|
1159
|
+
if (::google::protobuf::internal::CanMoveWithInternalSwap(GetArena(), from.GetArena())) {
|
|
1160
|
+
InternalSwap(&from);
|
|
1161
|
+
} else {
|
|
1162
|
+
CopyFrom(from);
|
|
1163
|
+
}
|
|
1164
|
+
return *this;
|
|
1165
|
+
}
|
|
1166
|
+
|
|
1167
|
+
[[nodiscard]] inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const
|
|
1168
|
+
ABSL_ATTRIBUTE_LIFETIME_BOUND {
|
|
1169
|
+
return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance);
|
|
1170
|
+
}
|
|
1171
|
+
[[nodiscard]] inline ::google::protobuf::UnknownFieldSet* PROTOBUF_NONNULL
|
|
1172
|
+
mutable_unknown_fields() ABSL_ATTRIBUTE_LIFETIME_BOUND {
|
|
1173
|
+
return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>();
|
|
1174
|
+
}
|
|
1175
|
+
|
|
1176
|
+
[[nodiscard]] static const ::google::protobuf::Descriptor* PROTOBUF_NONNULL descriptor() {
|
|
1177
|
+
return GetDescriptor();
|
|
1178
|
+
}
|
|
1179
|
+
[[nodiscard]] static const ::google::protobuf::Descriptor* PROTOBUF_NONNULL
|
|
1180
|
+
GetDescriptor() {
|
|
1181
|
+
return default_instance().GetMetadata().descriptor;
|
|
1182
|
+
}
|
|
1183
|
+
[[nodiscard]] static const ::google::protobuf::Reflection* PROTOBUF_NONNULL GetReflection() {
|
|
1184
|
+
return default_instance().GetMetadata().reflection;
|
|
1185
|
+
}
|
|
1186
|
+
[[nodiscard]] static const Type& default_instance() {
|
|
1187
|
+
return *::google::protobuf::internal::MessageGlobalsBase::ToDefaultInstance<Type>(&Type_globals_);
|
|
1188
|
+
}
|
|
1189
|
+
static constexpr int kIndexInFileMessages = 0;
|
|
1190
|
+
friend void swap(Type& a, Type& b) { a.Swap(&b); }
|
|
1191
|
+
inline void Swap(Type* PROTOBUF_NONNULL other) {
|
|
1192
|
+
if (other == this) return;
|
|
1193
|
+
if (::google::protobuf::internal::CanUseInternalSwap(GetArena(), other->GetArena())) {
|
|
1194
|
+
InternalSwap(other);
|
|
1195
|
+
} else {
|
|
1196
|
+
::google::protobuf::internal::GenericSwap(this, other);
|
|
1197
|
+
}
|
|
1198
|
+
}
|
|
1199
|
+
void UnsafeArenaSwap(Type* PROTOBUF_NONNULL other) {
|
|
1200
|
+
if (other == this) return;
|
|
1201
|
+
ABSL_DCHECK(GetArena() == other->GetArena());
|
|
1202
|
+
InternalSwap(other);
|
|
1203
|
+
}
|
|
1204
|
+
|
|
1205
|
+
// implements Message ----------------------------------------------
|
|
1206
|
+
|
|
1207
|
+
[[nodiscard]] Type* PROTOBUF_NONNULL
|
|
1208
|
+
New(::google::protobuf::Arena* PROTOBUF_NULLABLE arena = nullptr) const {
|
|
1209
|
+
return ::google::protobuf::Message::DefaultConstruct<Type>(arena);
|
|
1210
|
+
}
|
|
1211
|
+
using ::google::protobuf::Message::CopyFrom;
|
|
1212
|
+
void CopyFrom(const Type& from);
|
|
1213
|
+
using ::google::protobuf::Message::MergeFrom;
|
|
1214
|
+
void MergeFrom(const Type& from) { Type::MergeImpl(*this, from); }
|
|
1215
|
+
|
|
1216
|
+
private:
|
|
1217
|
+
static void MergeImpl(::google::protobuf::MessageLite& to_msg,
|
|
1218
|
+
const ::google::protobuf::MessageLite& from_msg);
|
|
1219
|
+
|
|
1220
|
+
public:
|
|
1221
|
+
[[nodiscard]] bool IsInitialized() const {
|
|
1222
|
+
return true;
|
|
1223
|
+
}
|
|
1224
|
+
ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL;
|
|
1225
|
+
#if defined(PROTOBUF_CUSTOM_VTABLE)
|
|
1226
|
+
private:
|
|
1227
|
+
[[nodiscard]] static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg);
|
|
1228
|
+
[[nodiscard]] static ::uint8_t* PROTOBUF_NONNULL _InternalSerialize(
|
|
1229
|
+
const ::google::protobuf::MessageLite& msg, ::uint8_t* PROTOBUF_NONNULL target,
|
|
1230
|
+
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL stream);
|
|
1231
|
+
|
|
1232
|
+
public:
|
|
1233
|
+
[[nodiscard]] ::size_t ByteSizeLong() const { return ByteSizeLong(*this); }
|
|
1234
|
+
[[nodiscard]] ::uint8_t* PROTOBUF_NONNULL _InternalSerialize(
|
|
1235
|
+
::uint8_t* PROTOBUF_NONNULL target,
|
|
1236
|
+
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL stream) const {
|
|
1237
|
+
return _InternalSerialize(*this, target, stream);
|
|
1238
|
+
}
|
|
1239
|
+
#else // PROTOBUF_CUSTOM_VTABLE
|
|
1240
|
+
[[nodiscard]] ::size_t ByteSizeLong() const final;
|
|
1241
|
+
[[nodiscard]] ::uint8_t* PROTOBUF_NONNULL _InternalSerialize(
|
|
1242
|
+
::uint8_t* PROTOBUF_NONNULL target,
|
|
1243
|
+
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL stream) const final;
|
|
1244
|
+
#endif // PROTOBUF_CUSTOM_VTABLE
|
|
1245
|
+
[[nodiscard]] int GetCachedSize() const {
|
|
1246
|
+
return _impl_._cached_size_.Get();
|
|
1247
|
+
}
|
|
1248
|
+
|
|
1249
|
+
private:
|
|
1250
|
+
void SharedCtor(::google::protobuf::Arena* PROTOBUF_NULLABLE arena);
|
|
1251
|
+
static void SharedDtor(MessageLite& self);
|
|
1252
|
+
void InternalSwap(Type* PROTOBUF_NONNULL other);
|
|
1253
|
+
private:
|
|
1254
|
+
template <typename T>
|
|
1255
|
+
friend ::absl::string_view(::google::protobuf::internal::GetAnyMessageName)();
|
|
1256
|
+
static ::absl::string_view FullMessageName() { return "google.protobuf.Type"; }
|
|
1257
|
+
|
|
1258
|
+
explicit Type(::google::protobuf::Arena* PROTOBUF_NULLABLE arena);
|
|
1259
|
+
Type(::google::protobuf::Arena* PROTOBUF_NULLABLE arena, const Type& from);
|
|
1260
|
+
Type(
|
|
1261
|
+
::google::protobuf::Arena* PROTOBUF_NULLABLE arena, Type&& from) noexcept
|
|
1262
|
+
: Type(arena) {
|
|
1263
|
+
*this = ::std::move(from);
|
|
1264
|
+
}
|
|
1265
|
+
const ::google::protobuf::internal::ClassData* PROTOBUF_NONNULL GetClassData() const PROTOBUF_FINAL;
|
|
1266
|
+
static void* PROTOBUF_NONNULL PlacementNew_(
|
|
1267
|
+
const void* PROTOBUF_NONNULL, void* PROTOBUF_NONNULL mem,
|
|
1268
|
+
::google::protobuf::Arena* PROTOBUF_NULLABLE arena);
|
|
1269
|
+
static constexpr auto InternalNewImpl_();
|
|
1270
|
+
|
|
1271
|
+
public:
|
|
1272
|
+
static constexpr auto InternalGenerateClassData_(
|
|
1273
|
+
const MessageLite& prototype,
|
|
1274
|
+
const ::google::protobuf::internal::TcParseTableBase* PROTOBUF_NULLABLE tc_table = nullptr);
|
|
1275
|
+
|
|
1276
|
+
[[nodiscard]] ::google::protobuf::Metadata GetMetadata() const;
|
|
1277
|
+
// nested types ----------------------------------------------------
|
|
1278
|
+
|
|
1279
|
+
// accessors -------------------------------------------------------
|
|
1280
|
+
enum : int {
|
|
1281
|
+
kFieldsFieldNumber = 2,
|
|
1282
|
+
kOneofsFieldNumber = 3,
|
|
1283
|
+
kOptionsFieldNumber = 4,
|
|
1284
|
+
kNameFieldNumber = 1,
|
|
1285
|
+
kEditionFieldNumber = 7,
|
|
1286
|
+
kSourceContextFieldNumber = 5,
|
|
1287
|
+
kSyntaxFieldNumber = 6,
|
|
1288
|
+
};
|
|
1289
|
+
// repeated .google.protobuf.Field fields = 2;
|
|
1290
|
+
[[nodiscard]] int fields_size()
|
|
1291
|
+
const;
|
|
1292
|
+
private:
|
|
1293
|
+
int _internal_fields_size() const;
|
|
1294
|
+
|
|
1295
|
+
public:
|
|
1296
|
+
void clear_fields() ;
|
|
1297
|
+
[[nodiscard]] const ::google::protobuf::Field& fields(int index) const;
|
|
1298
|
+
[[nodiscard]] ::google::protobuf::Field* PROTOBUF_NONNULL mutable_fields(int index);
|
|
1299
|
+
::google::protobuf::Field* PROTOBUF_NONNULL add_fields();
|
|
1300
|
+
[[nodiscard]] const ::google::protobuf::RepeatedPtrField<::google::protobuf::Field>&
|
|
1301
|
+
fields() const;
|
|
1302
|
+
[[nodiscard]] ::google::protobuf::RepeatedPtrField<::google::protobuf::Field>* PROTOBUF_NONNULL
|
|
1303
|
+
mutable_fields();
|
|
1304
|
+
|
|
1305
|
+
private:
|
|
1306
|
+
const ::google::protobuf::RepeatedPtrField<::google::protobuf::Field>& _internal_fields() const;
|
|
1307
|
+
::google::protobuf::RepeatedPtrField<::google::protobuf::Field>* PROTOBUF_NONNULL _internal_mutable_fields();
|
|
1308
|
+
|
|
1309
|
+
public:
|
|
1310
|
+
// repeated string oneofs = 3;
|
|
1311
|
+
[[nodiscard]] int oneofs_size()
|
|
1312
|
+
const;
|
|
1313
|
+
private:
|
|
1314
|
+
int _internal_oneofs_size() const;
|
|
1315
|
+
|
|
1316
|
+
public:
|
|
1317
|
+
void clear_oneofs() ;
|
|
1318
|
+
[[nodiscard]] const ::std::string& oneofs(int index) const;
|
|
1319
|
+
::std::string* PROTOBUF_NONNULL mutable_oneofs(int index);
|
|
1320
|
+
template <typename Arg_ = const ::std::string&, typename... Args_>
|
|
1321
|
+
void set_oneofs(int index, Arg_&& value, Args_... args);
|
|
1322
|
+
::std::string* PROTOBUF_NONNULL add_oneofs();
|
|
1323
|
+
template <typename Arg_ = const ::std::string&, typename... Args_>
|
|
1324
|
+
void add_oneofs(Arg_&& value, Args_... args);
|
|
1325
|
+
[[nodiscard]] const
|
|
1326
|
+
::google::protobuf::RepeatedPtrField<::std::string>&
|
|
1327
|
+
oneofs() const;
|
|
1328
|
+
[[nodiscard]] ::google::protobuf::RepeatedPtrField<::std::string>*
|
|
1329
|
+
PROTOBUF_NONNULL
|
|
1330
|
+
mutable_oneofs();
|
|
1331
|
+
|
|
1332
|
+
private:
|
|
1333
|
+
const ::google::protobuf::RepeatedPtrField<::std::string>& _internal_oneofs() const;
|
|
1334
|
+
::google::protobuf::RepeatedPtrField<::std::string>* PROTOBUF_NONNULL _internal_mutable_oneofs();
|
|
1335
|
+
|
|
1336
|
+
public:
|
|
1337
|
+
// repeated .google.protobuf.Option options = 4;
|
|
1338
|
+
[[nodiscard]] int options_size()
|
|
1339
|
+
const;
|
|
1340
|
+
private:
|
|
1341
|
+
int _internal_options_size() const;
|
|
1342
|
+
|
|
1343
|
+
public:
|
|
1344
|
+
void clear_options() ;
|
|
1345
|
+
[[nodiscard]] const ::google::protobuf::Option& options(int index) const;
|
|
1346
|
+
[[nodiscard]] ::google::protobuf::Option* PROTOBUF_NONNULL mutable_options(int index);
|
|
1347
|
+
::google::protobuf::Option* PROTOBUF_NONNULL add_options();
|
|
1348
|
+
[[nodiscard]] const ::google::protobuf::RepeatedPtrField<::google::protobuf::Option>&
|
|
1349
|
+
options() const;
|
|
1350
|
+
[[nodiscard]] ::google::protobuf::RepeatedPtrField<::google::protobuf::Option>* PROTOBUF_NONNULL
|
|
1351
|
+
mutable_options();
|
|
1352
|
+
|
|
1353
|
+
private:
|
|
1354
|
+
const ::google::protobuf::RepeatedPtrField<::google::protobuf::Option>& _internal_options() const;
|
|
1355
|
+
::google::protobuf::RepeatedPtrField<::google::protobuf::Option>* PROTOBUF_NONNULL _internal_mutable_options();
|
|
1356
|
+
|
|
1357
|
+
public:
|
|
1358
|
+
// string name = 1;
|
|
1359
|
+
void clear_name() ;
|
|
1360
|
+
[[nodiscard]] const ::std::string& name() const;
|
|
1361
|
+
template <typename Arg_ = const ::std::string&, typename... Args_>
|
|
1362
|
+
void set_name(Arg_&& arg, Args_... args);
|
|
1363
|
+
::std::string* PROTOBUF_NONNULL mutable_name();
|
|
1364
|
+
[[nodiscard]] ::std::string* PROTOBUF_NULLABLE release_name();
|
|
1365
|
+
void set_allocated_name(::std::string* PROTOBUF_NULLABLE value);
|
|
1366
|
+
|
|
1367
|
+
private:
|
|
1368
|
+
const ::std::string& _internal_name() const;
|
|
1369
|
+
PROTOBUF_ALWAYS_INLINE void _internal_set_name(const ::std::string& value);
|
|
1370
|
+
::std::string* PROTOBUF_NONNULL _internal_mutable_name();
|
|
1371
|
+
|
|
1372
|
+
public:
|
|
1373
|
+
// string edition = 7;
|
|
1374
|
+
void clear_edition() ;
|
|
1375
|
+
[[nodiscard]] const ::std::string& edition() const;
|
|
1376
|
+
template <typename Arg_ = const ::std::string&, typename... Args_>
|
|
1377
|
+
void set_edition(Arg_&& arg, Args_... args);
|
|
1378
|
+
::std::string* PROTOBUF_NONNULL mutable_edition();
|
|
1379
|
+
[[nodiscard]] ::std::string* PROTOBUF_NULLABLE release_edition();
|
|
1380
|
+
void set_allocated_edition(::std::string* PROTOBUF_NULLABLE value);
|
|
1381
|
+
|
|
1382
|
+
private:
|
|
1383
|
+
const ::std::string& _internal_edition() const;
|
|
1384
|
+
PROTOBUF_ALWAYS_INLINE void _internal_set_edition(const ::std::string& value);
|
|
1385
|
+
::std::string* PROTOBUF_NONNULL _internal_mutable_edition();
|
|
1386
|
+
|
|
1387
|
+
public:
|
|
1388
|
+
// .google.protobuf.SourceContext source_context = 5;
|
|
1389
|
+
[[nodiscard]] bool has_source_context()
|
|
1390
|
+
const;
|
|
1391
|
+
void clear_source_context() ;
|
|
1392
|
+
[[nodiscard]] const ::google::protobuf::SourceContext& source_context() const;
|
|
1393
|
+
[[nodiscard]] ::google::protobuf::SourceContext* PROTOBUF_NULLABLE release_source_context();
|
|
1394
|
+
::google::protobuf::SourceContext* PROTOBUF_NONNULL mutable_source_context();
|
|
1395
|
+
void set_allocated_source_context(::google::protobuf::SourceContext* PROTOBUF_NULLABLE value);
|
|
1396
|
+
void unsafe_arena_set_allocated_source_context(::google::protobuf::SourceContext* PROTOBUF_NULLABLE value);
|
|
1397
|
+
::google::protobuf::SourceContext* PROTOBUF_NULLABLE unsafe_arena_release_source_context();
|
|
1398
|
+
|
|
1399
|
+
private:
|
|
1400
|
+
const ::google::protobuf::SourceContext& _internal_source_context() const;
|
|
1401
|
+
::google::protobuf::SourceContext* PROTOBUF_NONNULL _internal_mutable_source_context();
|
|
1402
|
+
|
|
1403
|
+
public:
|
|
1404
|
+
// .google.protobuf.Syntax syntax = 6;
|
|
1405
|
+
void clear_syntax() ;
|
|
1406
|
+
[[nodiscard]] ::google::protobuf::Syntax syntax() const;
|
|
1407
|
+
void set_syntax(::google::protobuf::Syntax value);
|
|
1408
|
+
|
|
1409
|
+
private:
|
|
1410
|
+
::google::protobuf::Syntax _internal_syntax() const;
|
|
1411
|
+
void _internal_set_syntax(::google::protobuf::Syntax value);
|
|
1412
|
+
|
|
1413
|
+
public:
|
|
1414
|
+
// @@protoc_insertion_point(class_scope:google.protobuf.Type)
|
|
1415
|
+
private:
|
|
1416
|
+
class _Internal;
|
|
1417
|
+
using ParseTableT_ =
|
|
1418
|
+
::google::protobuf::internal::TcParseTable<3, 7,
|
|
1419
|
+
3, 46,
|
|
1420
|
+
2>;
|
|
1421
|
+
static constexpr ParseTableT_ InternalGenerateParseTable_(
|
|
1422
|
+
const ::google::protobuf::internal::ClassData* PROTOBUF_NONNULL class_data);
|
|
1423
|
+
friend class ::google::protobuf::internal::TcParser;
|
|
1424
|
+
#ifndef PROTOBUF_MESSAGE_GLOBALS
|
|
1425
|
+
static const ParseTableT_ _table_;
|
|
1426
|
+
#endif
|
|
1427
|
+
|
|
1428
|
+
friend class ::google::protobuf::MessageLite;
|
|
1429
|
+
friend class ::google::protobuf::Arena;
|
|
1430
|
+
friend ::google::protobuf::internal::PrivateAccess;
|
|
1431
|
+
template <typename T>
|
|
1432
|
+
friend class ::google::protobuf::Arena::InternalHelper;
|
|
1433
|
+
using InternalArenaConstructable_ = void;
|
|
1434
|
+
using DestructorSkippable_ = void;
|
|
1435
|
+
struct Impl_ {
|
|
1436
|
+
inline explicit constexpr Impl_(::google::protobuf::internal::InternalVisibility visibility,
|
|
1437
|
+
::google::protobuf::internal::ConstantInitialized) noexcept;
|
|
1438
|
+
inline explicit Impl_(
|
|
1439
|
+
::google::protobuf::internal::InternalVisibility visibility,
|
|
1440
|
+
::google::protobuf::Arena* PROTOBUF_NULLABLE arena);
|
|
1441
|
+
inline explicit Impl_(
|
|
1442
|
+
::google::protobuf::internal::InternalVisibility visibility,
|
|
1443
|
+
::google::protobuf::Arena* PROTOBUF_NULLABLE arena, const Impl_& from,
|
|
1444
|
+
const Type& from_msg);
|
|
1445
|
+
::google::protobuf::internal::HasBits<1> _has_bits_;
|
|
1446
|
+
::google::protobuf::internal::CachedSize _cached_size_;
|
|
1447
|
+
::google::protobuf::RepeatedPtrField< ::google::protobuf::Field > fields_;
|
|
1448
|
+
::google::protobuf::RepeatedPtrField<::std::string> oneofs_;
|
|
1449
|
+
::google::protobuf::RepeatedPtrField< ::google::protobuf::Option > options_;
|
|
1450
|
+
::google::protobuf::internal::ArenaStringPtr name_;
|
|
1451
|
+
::google::protobuf::internal::ArenaStringPtr edition_;
|
|
1452
|
+
::google::protobuf::SourceContext* PROTOBUF_NULLABLE source_context_;
|
|
1453
|
+
int syntax_;
|
|
1454
|
+
PROTOBUF_TSAN_DECLARE_MEMBER
|
|
1455
|
+
};
|
|
1456
|
+
union { Impl_ _impl_; };
|
|
1457
|
+
friend struct ::TableStruct_google_2fprotobuf_2ftype_2eproto;
|
|
1458
|
+
};
|
|
1459
|
+
// -------------------------------------------------------------------
|
|
1460
|
+
|
|
1461
|
+
class PROTOBUF_EXPORT PROTOBUF_FUTURE_ADD_EARLY_WARN_UNUSED Enum final : public ::google::protobuf::Message
|
|
1462
|
+
/* @@protoc_insertion_point(class_definition:google.protobuf.Enum) */ {
|
|
1463
|
+
public:
|
|
1464
|
+
inline Enum() : Enum(nullptr) {}
|
|
1465
|
+
~Enum() PROTOBUF_FINAL;
|
|
1466
|
+
|
|
1467
|
+
#if defined(PROTOBUF_CUSTOM_VTABLE)
|
|
1468
|
+
void operator delete(Enum* PROTOBUF_NONNULL msg, ::std::destroying_delete_t) {
|
|
1469
|
+
SharedDtor(*msg);
|
|
1470
|
+
::google::protobuf::internal::SizedDelete(msg, sizeof(Enum));
|
|
1471
|
+
}
|
|
1472
|
+
#endif
|
|
1473
|
+
|
|
1474
|
+
template <typename = void>
|
|
1475
|
+
explicit constexpr Enum(::google::protobuf::internal::ConstantInitialized,
|
|
1476
|
+
const ::google::protobuf::internal::ClassData* PROTOBUF_NONNULL
|
|
1477
|
+
class_data);
|
|
1478
|
+
|
|
1479
|
+
inline Enum(const Enum& from) : Enum(nullptr, from) {}
|
|
1480
|
+
inline Enum(Enum&& from) noexcept : Enum(nullptr, ::std::move(from)) {}
|
|
1481
|
+
inline Enum& operator=(const Enum& from) {
|
|
1482
|
+
CopyFrom(from);
|
|
1483
|
+
return *this;
|
|
1484
|
+
}
|
|
1485
|
+
inline Enum& operator=(Enum&& from) noexcept {
|
|
1486
|
+
if (this == &from) return *this;
|
|
1487
|
+
if (::google::protobuf::internal::CanMoveWithInternalSwap(GetArena(), from.GetArena())) {
|
|
1488
|
+
InternalSwap(&from);
|
|
1489
|
+
} else {
|
|
1490
|
+
CopyFrom(from);
|
|
1491
|
+
}
|
|
1492
|
+
return *this;
|
|
1493
|
+
}
|
|
1494
|
+
|
|
1495
|
+
[[nodiscard]] inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const
|
|
1496
|
+
ABSL_ATTRIBUTE_LIFETIME_BOUND {
|
|
1497
|
+
return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance);
|
|
1498
|
+
}
|
|
1499
|
+
[[nodiscard]] inline ::google::protobuf::UnknownFieldSet* PROTOBUF_NONNULL
|
|
1500
|
+
mutable_unknown_fields() ABSL_ATTRIBUTE_LIFETIME_BOUND {
|
|
1501
|
+
return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>();
|
|
1502
|
+
}
|
|
1503
|
+
|
|
1504
|
+
[[nodiscard]] static const ::google::protobuf::Descriptor* PROTOBUF_NONNULL descriptor() {
|
|
1505
|
+
return GetDescriptor();
|
|
1506
|
+
}
|
|
1507
|
+
[[nodiscard]] static const ::google::protobuf::Descriptor* PROTOBUF_NONNULL
|
|
1508
|
+
GetDescriptor() {
|
|
1509
|
+
return default_instance().GetMetadata().descriptor;
|
|
1510
|
+
}
|
|
1511
|
+
[[nodiscard]] static const ::google::protobuf::Reflection* PROTOBUF_NONNULL GetReflection() {
|
|
1512
|
+
return default_instance().GetMetadata().reflection;
|
|
1513
|
+
}
|
|
1514
|
+
[[nodiscard]] static const Enum& default_instance() {
|
|
1515
|
+
return *::google::protobuf::internal::MessageGlobalsBase::ToDefaultInstance<Enum>(&Enum_globals_);
|
|
1516
|
+
}
|
|
1517
|
+
static constexpr int kIndexInFileMessages = 2;
|
|
1518
|
+
friend void swap(Enum& a, Enum& b) { a.Swap(&b); }
|
|
1519
|
+
inline void Swap(Enum* PROTOBUF_NONNULL other) {
|
|
1520
|
+
if (other == this) return;
|
|
1521
|
+
if (::google::protobuf::internal::CanUseInternalSwap(GetArena(), other->GetArena())) {
|
|
1522
|
+
InternalSwap(other);
|
|
1523
|
+
} else {
|
|
1524
|
+
::google::protobuf::internal::GenericSwap(this, other);
|
|
1525
|
+
}
|
|
1526
|
+
}
|
|
1527
|
+
void UnsafeArenaSwap(Enum* PROTOBUF_NONNULL other) {
|
|
1528
|
+
if (other == this) return;
|
|
1529
|
+
ABSL_DCHECK(GetArena() == other->GetArena());
|
|
1530
|
+
InternalSwap(other);
|
|
1531
|
+
}
|
|
1532
|
+
|
|
1533
|
+
// implements Message ----------------------------------------------
|
|
1534
|
+
|
|
1535
|
+
[[nodiscard]] Enum* PROTOBUF_NONNULL
|
|
1536
|
+
New(::google::protobuf::Arena* PROTOBUF_NULLABLE arena = nullptr) const {
|
|
1537
|
+
return ::google::protobuf::Message::DefaultConstruct<Enum>(arena);
|
|
1538
|
+
}
|
|
1539
|
+
using ::google::protobuf::Message::CopyFrom;
|
|
1540
|
+
void CopyFrom(const Enum& from);
|
|
1541
|
+
using ::google::protobuf::Message::MergeFrom;
|
|
1542
|
+
void MergeFrom(const Enum& from) { Enum::MergeImpl(*this, from); }
|
|
1543
|
+
|
|
1544
|
+
private:
|
|
1545
|
+
static void MergeImpl(::google::protobuf::MessageLite& to_msg,
|
|
1546
|
+
const ::google::protobuf::MessageLite& from_msg);
|
|
1547
|
+
|
|
1548
|
+
public:
|
|
1549
|
+
[[nodiscard]] bool IsInitialized() const {
|
|
1550
|
+
return true;
|
|
1551
|
+
}
|
|
1552
|
+
ABSL_ATTRIBUTE_REINITIALIZES void Clear() PROTOBUF_FINAL;
|
|
1553
|
+
#if defined(PROTOBUF_CUSTOM_VTABLE)
|
|
1554
|
+
private:
|
|
1555
|
+
[[nodiscard]] static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg);
|
|
1556
|
+
[[nodiscard]] static ::uint8_t* PROTOBUF_NONNULL _InternalSerialize(
|
|
1557
|
+
const ::google::protobuf::MessageLite& msg, ::uint8_t* PROTOBUF_NONNULL target,
|
|
1558
|
+
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL stream);
|
|
1559
|
+
|
|
1560
|
+
public:
|
|
1561
|
+
[[nodiscard]] ::size_t ByteSizeLong() const { return ByteSizeLong(*this); }
|
|
1562
|
+
[[nodiscard]] ::uint8_t* PROTOBUF_NONNULL _InternalSerialize(
|
|
1563
|
+
::uint8_t* PROTOBUF_NONNULL target,
|
|
1564
|
+
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL stream) const {
|
|
1565
|
+
return _InternalSerialize(*this, target, stream);
|
|
1566
|
+
}
|
|
1567
|
+
#else // PROTOBUF_CUSTOM_VTABLE
|
|
1568
|
+
[[nodiscard]] ::size_t ByteSizeLong() const final;
|
|
1569
|
+
[[nodiscard]] ::uint8_t* PROTOBUF_NONNULL _InternalSerialize(
|
|
1570
|
+
::uint8_t* PROTOBUF_NONNULL target,
|
|
1571
|
+
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL stream) const final;
|
|
1572
|
+
#endif // PROTOBUF_CUSTOM_VTABLE
|
|
1573
|
+
[[nodiscard]] int GetCachedSize() const {
|
|
1574
|
+
return _impl_._cached_size_.Get();
|
|
1575
|
+
}
|
|
1576
|
+
|
|
1577
|
+
private:
|
|
1578
|
+
void SharedCtor(::google::protobuf::Arena* PROTOBUF_NULLABLE arena);
|
|
1579
|
+
static void SharedDtor(MessageLite& self);
|
|
1580
|
+
void InternalSwap(Enum* PROTOBUF_NONNULL other);
|
|
1581
|
+
private:
|
|
1582
|
+
template <typename T>
|
|
1583
|
+
friend ::absl::string_view(::google::protobuf::internal::GetAnyMessageName)();
|
|
1584
|
+
static ::absl::string_view FullMessageName() { return "google.protobuf.Enum"; }
|
|
1585
|
+
|
|
1586
|
+
explicit Enum(::google::protobuf::Arena* PROTOBUF_NULLABLE arena);
|
|
1587
|
+
Enum(::google::protobuf::Arena* PROTOBUF_NULLABLE arena, const Enum& from);
|
|
1588
|
+
Enum(
|
|
1589
|
+
::google::protobuf::Arena* PROTOBUF_NULLABLE arena, Enum&& from) noexcept
|
|
1590
|
+
: Enum(arena) {
|
|
1591
|
+
*this = ::std::move(from);
|
|
1592
|
+
}
|
|
1593
|
+
const ::google::protobuf::internal::ClassData* PROTOBUF_NONNULL GetClassData() const PROTOBUF_FINAL;
|
|
1594
|
+
static void* PROTOBUF_NONNULL PlacementNew_(
|
|
1595
|
+
const void* PROTOBUF_NONNULL, void* PROTOBUF_NONNULL mem,
|
|
1596
|
+
::google::protobuf::Arena* PROTOBUF_NULLABLE arena);
|
|
1597
|
+
static constexpr auto InternalNewImpl_();
|
|
1598
|
+
|
|
1599
|
+
public:
|
|
1600
|
+
static constexpr auto InternalGenerateClassData_(
|
|
1601
|
+
const MessageLite& prototype,
|
|
1602
|
+
const ::google::protobuf::internal::TcParseTableBase* PROTOBUF_NULLABLE tc_table = nullptr);
|
|
1603
|
+
|
|
1604
|
+
[[nodiscard]] ::google::protobuf::Metadata GetMetadata() const;
|
|
1605
|
+
// nested types ----------------------------------------------------
|
|
1606
|
+
|
|
1607
|
+
// accessors -------------------------------------------------------
|
|
1608
|
+
enum : int {
|
|
1609
|
+
kEnumvalueFieldNumber = 2,
|
|
1610
|
+
kOptionsFieldNumber = 3,
|
|
1611
|
+
kNameFieldNumber = 1,
|
|
1612
|
+
kEditionFieldNumber = 6,
|
|
1613
|
+
kSourceContextFieldNumber = 4,
|
|
1614
|
+
kSyntaxFieldNumber = 5,
|
|
1615
|
+
};
|
|
1616
|
+
// repeated .google.protobuf.EnumValue enumvalue = 2;
|
|
1617
|
+
[[nodiscard]] int enumvalue_size()
|
|
1618
|
+
const;
|
|
1619
|
+
private:
|
|
1620
|
+
int _internal_enumvalue_size() const;
|
|
1621
|
+
|
|
1622
|
+
public:
|
|
1623
|
+
void clear_enumvalue() ;
|
|
1624
|
+
[[nodiscard]] const ::google::protobuf::EnumValue& enumvalue(int index) const;
|
|
1625
|
+
[[nodiscard]] ::google::protobuf::EnumValue* PROTOBUF_NONNULL mutable_enumvalue(int index);
|
|
1626
|
+
::google::protobuf::EnumValue* PROTOBUF_NONNULL add_enumvalue();
|
|
1627
|
+
[[nodiscard]] const ::google::protobuf::RepeatedPtrField<::google::protobuf::EnumValue>&
|
|
1628
|
+
enumvalue() const;
|
|
1629
|
+
[[nodiscard]] ::google::protobuf::RepeatedPtrField<::google::protobuf::EnumValue>* PROTOBUF_NONNULL
|
|
1630
|
+
mutable_enumvalue();
|
|
1631
|
+
|
|
1632
|
+
private:
|
|
1633
|
+
const ::google::protobuf::RepeatedPtrField<::google::protobuf::EnumValue>& _internal_enumvalue() const;
|
|
1634
|
+
::google::protobuf::RepeatedPtrField<::google::protobuf::EnumValue>* PROTOBUF_NONNULL _internal_mutable_enumvalue();
|
|
1635
|
+
|
|
1636
|
+
public:
|
|
1637
|
+
// repeated .google.protobuf.Option options = 3;
|
|
1638
|
+
[[nodiscard]] int options_size()
|
|
1639
|
+
const;
|
|
1640
|
+
private:
|
|
1641
|
+
int _internal_options_size() const;
|
|
1642
|
+
|
|
1643
|
+
public:
|
|
1644
|
+
void clear_options() ;
|
|
1645
|
+
[[nodiscard]] const ::google::protobuf::Option& options(int index) const;
|
|
1646
|
+
[[nodiscard]] ::google::protobuf::Option* PROTOBUF_NONNULL mutable_options(int index);
|
|
1647
|
+
::google::protobuf::Option* PROTOBUF_NONNULL add_options();
|
|
1648
|
+
[[nodiscard]] const ::google::protobuf::RepeatedPtrField<::google::protobuf::Option>&
|
|
1649
|
+
options() const;
|
|
1650
|
+
[[nodiscard]] ::google::protobuf::RepeatedPtrField<::google::protobuf::Option>* PROTOBUF_NONNULL
|
|
1651
|
+
mutable_options();
|
|
1652
|
+
|
|
1653
|
+
private:
|
|
1654
|
+
const ::google::protobuf::RepeatedPtrField<::google::protobuf::Option>& _internal_options() const;
|
|
1655
|
+
::google::protobuf::RepeatedPtrField<::google::protobuf::Option>* PROTOBUF_NONNULL _internal_mutable_options();
|
|
1656
|
+
|
|
1657
|
+
public:
|
|
1658
|
+
// string name = 1;
|
|
1659
|
+
void clear_name() ;
|
|
1660
|
+
[[nodiscard]] const ::std::string& name() const;
|
|
1661
|
+
template <typename Arg_ = const ::std::string&, typename... Args_>
|
|
1662
|
+
void set_name(Arg_&& arg, Args_... args);
|
|
1663
|
+
::std::string* PROTOBUF_NONNULL mutable_name();
|
|
1664
|
+
[[nodiscard]] ::std::string* PROTOBUF_NULLABLE release_name();
|
|
1665
|
+
void set_allocated_name(::std::string* PROTOBUF_NULLABLE value);
|
|
1666
|
+
|
|
1667
|
+
private:
|
|
1668
|
+
const ::std::string& _internal_name() const;
|
|
1669
|
+
PROTOBUF_ALWAYS_INLINE void _internal_set_name(const ::std::string& value);
|
|
1670
|
+
::std::string* PROTOBUF_NONNULL _internal_mutable_name();
|
|
1671
|
+
|
|
1672
|
+
public:
|
|
1673
|
+
// string edition = 6;
|
|
1674
|
+
void clear_edition() ;
|
|
1675
|
+
[[nodiscard]] const ::std::string& edition() const;
|
|
1676
|
+
template <typename Arg_ = const ::std::string&, typename... Args_>
|
|
1677
|
+
void set_edition(Arg_&& arg, Args_... args);
|
|
1678
|
+
::std::string* PROTOBUF_NONNULL mutable_edition();
|
|
1679
|
+
[[nodiscard]] ::std::string* PROTOBUF_NULLABLE release_edition();
|
|
1680
|
+
void set_allocated_edition(::std::string* PROTOBUF_NULLABLE value);
|
|
1681
|
+
|
|
1682
|
+
private:
|
|
1683
|
+
const ::std::string& _internal_edition() const;
|
|
1684
|
+
PROTOBUF_ALWAYS_INLINE void _internal_set_edition(const ::std::string& value);
|
|
1685
|
+
::std::string* PROTOBUF_NONNULL _internal_mutable_edition();
|
|
1686
|
+
|
|
1687
|
+
public:
|
|
1688
|
+
// .google.protobuf.SourceContext source_context = 4;
|
|
1689
|
+
[[nodiscard]] bool has_source_context()
|
|
1690
|
+
const;
|
|
1691
|
+
void clear_source_context() ;
|
|
1692
|
+
[[nodiscard]] const ::google::protobuf::SourceContext& source_context() const;
|
|
1693
|
+
[[nodiscard]] ::google::protobuf::SourceContext* PROTOBUF_NULLABLE release_source_context();
|
|
1694
|
+
::google::protobuf::SourceContext* PROTOBUF_NONNULL mutable_source_context();
|
|
1695
|
+
void set_allocated_source_context(::google::protobuf::SourceContext* PROTOBUF_NULLABLE value);
|
|
1696
|
+
void unsafe_arena_set_allocated_source_context(::google::protobuf::SourceContext* PROTOBUF_NULLABLE value);
|
|
1697
|
+
::google::protobuf::SourceContext* PROTOBUF_NULLABLE unsafe_arena_release_source_context();
|
|
1698
|
+
|
|
1699
|
+
private:
|
|
1700
|
+
const ::google::protobuf::SourceContext& _internal_source_context() const;
|
|
1701
|
+
::google::protobuf::SourceContext* PROTOBUF_NONNULL _internal_mutable_source_context();
|
|
1702
|
+
|
|
1703
|
+
public:
|
|
1704
|
+
// .google.protobuf.Syntax syntax = 5;
|
|
1705
|
+
void clear_syntax() ;
|
|
1706
|
+
[[nodiscard]] ::google::protobuf::Syntax syntax() const;
|
|
1707
|
+
void set_syntax(::google::protobuf::Syntax value);
|
|
1708
|
+
|
|
1709
|
+
private:
|
|
1710
|
+
::google::protobuf::Syntax _internal_syntax() const;
|
|
1711
|
+
void _internal_set_syntax(::google::protobuf::Syntax value);
|
|
1712
|
+
|
|
1713
|
+
public:
|
|
1714
|
+
// @@protoc_insertion_point(class_scope:google.protobuf.Enum)
|
|
1715
|
+
private:
|
|
1716
|
+
class _Internal;
|
|
1717
|
+
using ParseTableT_ =
|
|
1718
|
+
::google::protobuf::internal::TcParseTable<3, 6,
|
|
1719
|
+
3, 40,
|
|
1720
|
+
2>;
|
|
1721
|
+
static constexpr ParseTableT_ InternalGenerateParseTable_(
|
|
1722
|
+
const ::google::protobuf::internal::ClassData* PROTOBUF_NONNULL class_data);
|
|
1723
|
+
friend class ::google::protobuf::internal::TcParser;
|
|
1724
|
+
#ifndef PROTOBUF_MESSAGE_GLOBALS
|
|
1725
|
+
static const ParseTableT_ _table_;
|
|
1726
|
+
#endif
|
|
1727
|
+
|
|
1728
|
+
friend class ::google::protobuf::MessageLite;
|
|
1729
|
+
friend class ::google::protobuf::Arena;
|
|
1730
|
+
friend ::google::protobuf::internal::PrivateAccess;
|
|
1731
|
+
template <typename T>
|
|
1732
|
+
friend class ::google::protobuf::Arena::InternalHelper;
|
|
1733
|
+
using InternalArenaConstructable_ = void;
|
|
1734
|
+
using DestructorSkippable_ = void;
|
|
1735
|
+
struct Impl_ {
|
|
1736
|
+
inline explicit constexpr Impl_(::google::protobuf::internal::InternalVisibility visibility,
|
|
1737
|
+
::google::protobuf::internal::ConstantInitialized) noexcept;
|
|
1738
|
+
inline explicit Impl_(
|
|
1739
|
+
::google::protobuf::internal::InternalVisibility visibility,
|
|
1740
|
+
::google::protobuf::Arena* PROTOBUF_NULLABLE arena);
|
|
1741
|
+
inline explicit Impl_(
|
|
1742
|
+
::google::protobuf::internal::InternalVisibility visibility,
|
|
1743
|
+
::google::protobuf::Arena* PROTOBUF_NULLABLE arena, const Impl_& from,
|
|
1744
|
+
const Enum& from_msg);
|
|
1745
|
+
::google::protobuf::internal::HasBits<1> _has_bits_;
|
|
1746
|
+
::google::protobuf::internal::CachedSize _cached_size_;
|
|
1747
|
+
::google::protobuf::RepeatedPtrField< ::google::protobuf::EnumValue > enumvalue_;
|
|
1748
|
+
::google::protobuf::RepeatedPtrField< ::google::protobuf::Option > options_;
|
|
1749
|
+
::google::protobuf::internal::ArenaStringPtr name_;
|
|
1750
|
+
::google::protobuf::internal::ArenaStringPtr edition_;
|
|
1751
|
+
::google::protobuf::SourceContext* PROTOBUF_NULLABLE source_context_;
|
|
1752
|
+
int syntax_;
|
|
1753
|
+
PROTOBUF_TSAN_DECLARE_MEMBER
|
|
1754
|
+
};
|
|
1755
|
+
union { Impl_ _impl_; };
|
|
1756
|
+
friend struct ::TableStruct_google_2fprotobuf_2ftype_2eproto;
|
|
1757
|
+
};
|
|
1758
|
+
|
|
1759
|
+
// ===================================================================
|
|
1760
|
+
|
|
1761
|
+
|
|
1762
|
+
|
|
1763
|
+
|
|
1764
|
+
// ===================================================================
|
|
1765
|
+
|
|
1766
|
+
|
|
1767
|
+
#ifdef __GNUC__
|
|
1768
|
+
#pragma GCC diagnostic push
|
|
1769
|
+
#pragma GCC diagnostic ignored "-Wstrict-aliasing"
|
|
1770
|
+
#endif // __GNUC__
|
|
1771
|
+
// -------------------------------------------------------------------
|
|
1772
|
+
|
|
1773
|
+
// Type
|
|
1774
|
+
|
|
1775
|
+
// string name = 1;
|
|
1776
|
+
inline void Type::clear_name() {
|
|
1777
|
+
::google::protobuf::internal::TSanWrite(&_impl_);
|
|
1778
|
+
_impl_.name_.ClearToEmpty();
|
|
1779
|
+
ClearHasBit(_impl_._has_bits_[0], 0x00000008U);
|
|
1780
|
+
}
|
|
1781
|
+
inline const ::std::string& Type::name() const
|
|
1782
|
+
ABSL_ATTRIBUTE_LIFETIME_BOUND {
|
|
1783
|
+
// @@protoc_insertion_point(field_get:google.protobuf.Type.name)
|
|
1784
|
+
return _internal_name();
|
|
1785
|
+
}
|
|
1786
|
+
template <typename Arg_, typename... Args_>
|
|
1787
|
+
PROTOBUF_ALWAYS_INLINE void Type::set_name(Arg_&& arg, Args_... args) {
|
|
1788
|
+
::google::protobuf::internal::TSanWrite(&_impl_);
|
|
1789
|
+
SetHasBit(_impl_._has_bits_[0], 0x00000008U);
|
|
1790
|
+
_impl_.name_.Set(static_cast<Arg_&&>(arg), args..., GetArena());
|
|
1791
|
+
// @@protoc_insertion_point(field_set:google.protobuf.Type.name)
|
|
1792
|
+
}
|
|
1793
|
+
inline ::std::string* PROTOBUF_NONNULL Type::mutable_name()
|
|
1794
|
+
ABSL_ATTRIBUTE_LIFETIME_BOUND {
|
|
1795
|
+
SetHasBit(_impl_._has_bits_[0], 0x00000008U);
|
|
1796
|
+
::std::string* _s = _internal_mutable_name();
|
|
1797
|
+
// @@protoc_insertion_point(field_mutable:google.protobuf.Type.name)
|
|
1798
|
+
return _s;
|
|
1799
|
+
}
|
|
1800
|
+
inline const ::std::string& Type::_internal_name() const {
|
|
1801
|
+
::google::protobuf::internal::TSanRead(&_impl_);
|
|
1802
|
+
return _impl_.name_.Get();
|
|
1803
|
+
}
|
|
1804
|
+
inline void Type::_internal_set_name(const ::std::string& value) {
|
|
1805
|
+
::google::protobuf::internal::TSanWrite(&_impl_);
|
|
1806
|
+
_impl_.name_.Set(value, GetArena());
|
|
1807
|
+
}
|
|
1808
|
+
inline ::std::string* PROTOBUF_NONNULL Type::_internal_mutable_name() {
|
|
1809
|
+
::google::protobuf::internal::TSanWrite(&_impl_);
|
|
1810
|
+
return _impl_.name_.Mutable( GetArena());
|
|
1811
|
+
}
|
|
1812
|
+
inline ::std::string* PROTOBUF_NULLABLE Type::release_name() {
|
|
1813
|
+
::google::protobuf::internal::TSanWrite(&_impl_);
|
|
1814
|
+
// @@protoc_insertion_point(field_release:google.protobuf.Type.name)
|
|
1815
|
+
if (!CheckHasBit(_impl_._has_bits_[0], 0x00000008U)) {
|
|
1816
|
+
return nullptr;
|
|
1817
|
+
}
|
|
1818
|
+
ClearHasBit(_impl_._has_bits_[0], 0x00000008U);
|
|
1819
|
+
auto* released = _impl_.name_.Release();
|
|
1820
|
+
if (::google::protobuf::internal::DebugHardenForceCopyDefaultString()) {
|
|
1821
|
+
_impl_.name_.Set("", GetArena());
|
|
1822
|
+
}
|
|
1823
|
+
return released;
|
|
1824
|
+
}
|
|
1825
|
+
inline void Type::set_allocated_name(::std::string* PROTOBUF_NULLABLE value) {
|
|
1826
|
+
::google::protobuf::internal::TSanWrite(&_impl_);
|
|
1827
|
+
if (value != nullptr) {
|
|
1828
|
+
SetHasBit(_impl_._has_bits_[0], 0x00000008U);
|
|
1829
|
+
} else {
|
|
1830
|
+
ClearHasBit(_impl_._has_bits_[0], 0x00000008U);
|
|
1831
|
+
}
|
|
1832
|
+
_impl_.name_.SetAllocated(value, GetArena());
|
|
1833
|
+
if (::google::protobuf::internal::DebugHardenForceCopyDefaultString() && _impl_.name_.IsDefault()) {
|
|
1834
|
+
_impl_.name_.Set("", GetArena());
|
|
1835
|
+
}
|
|
1836
|
+
// @@protoc_insertion_point(field_set_allocated:google.protobuf.Type.name)
|
|
1837
|
+
}
|
|
1838
|
+
|
|
1839
|
+
// repeated .google.protobuf.Field fields = 2;
|
|
1840
|
+
inline int Type::_internal_fields_size() const {
|
|
1841
|
+
return _internal_fields().size();
|
|
1842
|
+
}
|
|
1843
|
+
inline int Type::fields_size() const {
|
|
1844
|
+
return _internal_fields_size();
|
|
1845
|
+
}
|
|
1846
|
+
inline void Type::clear_fields() {
|
|
1847
|
+
::google::protobuf::internal::TSanWrite(&_impl_);
|
|
1848
|
+
_impl_.fields_.Clear();
|
|
1849
|
+
ClearHasBit(_impl_._has_bits_[0], 0x00000001U);
|
|
1850
|
+
}
|
|
1851
|
+
inline const ::google::protobuf::Field& Type::fields(int index) const
|
|
1852
|
+
ABSL_ATTRIBUTE_LIFETIME_BOUND {
|
|
1853
|
+
// @@protoc_insertion_point(field_get:google.protobuf.Type.fields)
|
|
1854
|
+
return _internal_fields().Get(index);
|
|
1855
|
+
}
|
|
1856
|
+
inline ::google::protobuf::Field* PROTOBUF_NONNULL Type::mutable_fields(int index)
|
|
1857
|
+
ABSL_ATTRIBUTE_LIFETIME_BOUND {
|
|
1858
|
+
// @@protoc_insertion_point(field_mutable:google.protobuf.Type.fields)
|
|
1859
|
+
return _internal_mutable_fields()->Mutable(index);
|
|
1860
|
+
}
|
|
1861
|
+
inline ::google::protobuf::Field* PROTOBUF_NONNULL Type::add_fields()
|
|
1862
|
+
ABSL_ATTRIBUTE_LIFETIME_BOUND {
|
|
1863
|
+
::google::protobuf::internal::TSanWrite(&_impl_);
|
|
1864
|
+
::google::protobuf::Field* _add =
|
|
1865
|
+
_internal_mutable_fields()->InternalAddWithArena(
|
|
1866
|
+
::google::protobuf::MessageLite::internal_visibility(), GetArena());
|
|
1867
|
+
SetHasBit(_impl_._has_bits_[0], 0x00000001U);
|
|
1868
|
+
// @@protoc_insertion_point(field_add:google.protobuf.Type.fields)
|
|
1869
|
+
return _add;
|
|
1870
|
+
}
|
|
1871
|
+
inline const ::google::protobuf::RepeatedPtrField<::google::protobuf::Field>& Type::fields() const
|
|
1872
|
+
ABSL_ATTRIBUTE_LIFETIME_BOUND {
|
|
1873
|
+
// @@protoc_insertion_point(field_list:google.protobuf.Type.fields)
|
|
1874
|
+
return _internal_fields();
|
|
1875
|
+
}
|
|
1876
|
+
inline ::google::protobuf::RepeatedPtrField<::google::protobuf::Field>* PROTOBUF_NONNULL
|
|
1877
|
+
Type::mutable_fields() ABSL_ATTRIBUTE_LIFETIME_BOUND {
|
|
1878
|
+
SetHasBit(_impl_._has_bits_[0], 0x00000001U);
|
|
1879
|
+
// @@protoc_insertion_point(field_mutable_list:google.protobuf.Type.fields)
|
|
1880
|
+
::google::protobuf::internal::TSanWrite(&_impl_);
|
|
1881
|
+
return _internal_mutable_fields();
|
|
1882
|
+
}
|
|
1883
|
+
inline const ::google::protobuf::RepeatedPtrField<::google::protobuf::Field>&
|
|
1884
|
+
Type::_internal_fields() const {
|
|
1885
|
+
::google::protobuf::internal::TSanRead(&_impl_);
|
|
1886
|
+
return _impl_.fields_;
|
|
1887
|
+
}
|
|
1888
|
+
inline ::google::protobuf::RepeatedPtrField<::google::protobuf::Field>* PROTOBUF_NONNULL
|
|
1889
|
+
Type::_internal_mutable_fields() {
|
|
1890
|
+
::google::protobuf::internal::TSanRead(&_impl_);
|
|
1891
|
+
return &_impl_.fields_;
|
|
1892
|
+
}
|
|
1893
|
+
|
|
1894
|
+
// repeated string oneofs = 3;
|
|
1895
|
+
inline int Type::_internal_oneofs_size() const {
|
|
1896
|
+
return _internal_oneofs().size();
|
|
1897
|
+
}
|
|
1898
|
+
inline int Type::oneofs_size() const {
|
|
1899
|
+
return _internal_oneofs_size();
|
|
1900
|
+
}
|
|
1901
|
+
inline void Type::clear_oneofs() {
|
|
1902
|
+
::google::protobuf::internal::TSanWrite(&_impl_);
|
|
1903
|
+
_impl_.oneofs_.Clear();
|
|
1904
|
+
ClearHasBit(_impl_._has_bits_[0], 0x00000002U);
|
|
1905
|
+
}
|
|
1906
|
+
inline ::std::string* PROTOBUF_NONNULL Type::add_oneofs()
|
|
1907
|
+
ABSL_ATTRIBUTE_LIFETIME_BOUND {
|
|
1908
|
+
::google::protobuf::internal::TSanWrite(&_impl_);
|
|
1909
|
+
::std::string* _s =
|
|
1910
|
+
_internal_mutable_oneofs()->InternalAddWithArena(
|
|
1911
|
+
::google::protobuf::MessageLite::internal_visibility(), GetArena());
|
|
1912
|
+
SetHasBit(_impl_._has_bits_[0], 0x00000002U);
|
|
1913
|
+
// @@protoc_insertion_point(field_add_mutable:google.protobuf.Type.oneofs)
|
|
1914
|
+
return _s;
|
|
1915
|
+
}
|
|
1916
|
+
inline const ::std::string& Type::oneofs(int index) const
|
|
1917
|
+
ABSL_ATTRIBUTE_LIFETIME_BOUND {
|
|
1918
|
+
// @@protoc_insertion_point(field_get:google.protobuf.Type.oneofs)
|
|
1919
|
+
return _internal_oneofs().Get(index);
|
|
1920
|
+
}
|
|
1921
|
+
inline ::std::string* PROTOBUF_NONNULL Type::mutable_oneofs(int index)
|
|
1922
|
+
ABSL_ATTRIBUTE_LIFETIME_BOUND {
|
|
1923
|
+
// @@protoc_insertion_point(field_mutable:google.protobuf.Type.oneofs)
|
|
1924
|
+
return _internal_mutable_oneofs()->Mutable(index);
|
|
1925
|
+
}
|
|
1926
|
+
template <typename Arg_, typename... Args_>
|
|
1927
|
+
inline void Type::set_oneofs(int index, Arg_&& value, Args_... args) {
|
|
1928
|
+
::google::protobuf::internal::AssignToString(
|
|
1929
|
+
*_internal_mutable_oneofs()->Mutable(index),
|
|
1930
|
+
::std::forward<Arg_>(value), args... );
|
|
1931
|
+
// @@protoc_insertion_point(field_set:google.protobuf.Type.oneofs)
|
|
1932
|
+
}
|
|
1933
|
+
template <typename Arg_, typename... Args_>
|
|
1934
|
+
inline void Type::add_oneofs(Arg_&& value, Args_... args) {
|
|
1935
|
+
::google::protobuf::internal::TSanWrite(&_impl_);
|
|
1936
|
+
::google::protobuf::internal::AddToRepeatedPtrField(
|
|
1937
|
+
::google::protobuf::MessageLite::internal_visibility(), GetArena(),
|
|
1938
|
+
*_internal_mutable_oneofs(), ::std::forward<Arg_>(value),
|
|
1939
|
+
args... );
|
|
1940
|
+
SetHasBit(_impl_._has_bits_[0], 0x00000002U);
|
|
1941
|
+
// @@protoc_insertion_point(field_add:google.protobuf.Type.oneofs)
|
|
1942
|
+
}
|
|
1943
|
+
inline const ::google::protobuf::RepeatedPtrField<::std::string>& Type::oneofs()
|
|
1944
|
+
const ABSL_ATTRIBUTE_LIFETIME_BOUND {
|
|
1945
|
+
// @@protoc_insertion_point(field_list:google.protobuf.Type.oneofs)
|
|
1946
|
+
return _internal_oneofs();
|
|
1947
|
+
}
|
|
1948
|
+
inline ::google::protobuf::RepeatedPtrField<::std::string>* PROTOBUF_NONNULL
|
|
1949
|
+
Type::mutable_oneofs() ABSL_ATTRIBUTE_LIFETIME_BOUND {
|
|
1950
|
+
SetHasBit(_impl_._has_bits_[0], 0x00000002U);
|
|
1951
|
+
// @@protoc_insertion_point(field_mutable_list:google.protobuf.Type.oneofs)
|
|
1952
|
+
::google::protobuf::internal::TSanWrite(&_impl_);
|
|
1953
|
+
return _internal_mutable_oneofs();
|
|
1954
|
+
}
|
|
1955
|
+
inline const ::google::protobuf::RepeatedPtrField<::std::string>&
|
|
1956
|
+
Type::_internal_oneofs() const {
|
|
1957
|
+
::google::protobuf::internal::TSanRead(&_impl_);
|
|
1958
|
+
return _impl_.oneofs_;
|
|
1959
|
+
}
|
|
1960
|
+
inline ::google::protobuf::RepeatedPtrField<::std::string>* PROTOBUF_NONNULL
|
|
1961
|
+
Type::_internal_mutable_oneofs() {
|
|
1962
|
+
::google::protobuf::internal::TSanRead(&_impl_);
|
|
1963
|
+
return &_impl_.oneofs_;
|
|
1964
|
+
}
|
|
1965
|
+
|
|
1966
|
+
// repeated .google.protobuf.Option options = 4;
|
|
1967
|
+
inline int Type::_internal_options_size() const {
|
|
1968
|
+
return _internal_options().size();
|
|
1969
|
+
}
|
|
1970
|
+
inline int Type::options_size() const {
|
|
1971
|
+
return _internal_options_size();
|
|
1972
|
+
}
|
|
1973
|
+
inline void Type::clear_options() {
|
|
1974
|
+
::google::protobuf::internal::TSanWrite(&_impl_);
|
|
1975
|
+
_impl_.options_.Clear();
|
|
1976
|
+
ClearHasBit(_impl_._has_bits_[0], 0x00000004U);
|
|
1977
|
+
}
|
|
1978
|
+
inline const ::google::protobuf::Option& Type::options(int index) const
|
|
1979
|
+
ABSL_ATTRIBUTE_LIFETIME_BOUND {
|
|
1980
|
+
// @@protoc_insertion_point(field_get:google.protobuf.Type.options)
|
|
1981
|
+
return _internal_options().Get(index);
|
|
1982
|
+
}
|
|
1983
|
+
inline ::google::protobuf::Option* PROTOBUF_NONNULL Type::mutable_options(int index)
|
|
1984
|
+
ABSL_ATTRIBUTE_LIFETIME_BOUND {
|
|
1985
|
+
// @@protoc_insertion_point(field_mutable:google.protobuf.Type.options)
|
|
1986
|
+
return _internal_mutable_options()->Mutable(index);
|
|
1987
|
+
}
|
|
1988
|
+
inline ::google::protobuf::Option* PROTOBUF_NONNULL Type::add_options()
|
|
1989
|
+
ABSL_ATTRIBUTE_LIFETIME_BOUND {
|
|
1990
|
+
::google::protobuf::internal::TSanWrite(&_impl_);
|
|
1991
|
+
::google::protobuf::Option* _add =
|
|
1992
|
+
_internal_mutable_options()->InternalAddWithArena(
|
|
1993
|
+
::google::protobuf::MessageLite::internal_visibility(), GetArena());
|
|
1994
|
+
SetHasBit(_impl_._has_bits_[0], 0x00000004U);
|
|
1995
|
+
// @@protoc_insertion_point(field_add:google.protobuf.Type.options)
|
|
1996
|
+
return _add;
|
|
1997
|
+
}
|
|
1998
|
+
inline const ::google::protobuf::RepeatedPtrField<::google::protobuf::Option>& Type::options() const
|
|
1999
|
+
ABSL_ATTRIBUTE_LIFETIME_BOUND {
|
|
2000
|
+
// @@protoc_insertion_point(field_list:google.protobuf.Type.options)
|
|
2001
|
+
return _internal_options();
|
|
2002
|
+
}
|
|
2003
|
+
inline ::google::protobuf::RepeatedPtrField<::google::protobuf::Option>* PROTOBUF_NONNULL
|
|
2004
|
+
Type::mutable_options() ABSL_ATTRIBUTE_LIFETIME_BOUND {
|
|
2005
|
+
SetHasBit(_impl_._has_bits_[0], 0x00000004U);
|
|
2006
|
+
// @@protoc_insertion_point(field_mutable_list:google.protobuf.Type.options)
|
|
2007
|
+
::google::protobuf::internal::TSanWrite(&_impl_);
|
|
2008
|
+
return _internal_mutable_options();
|
|
2009
|
+
}
|
|
2010
|
+
inline const ::google::protobuf::RepeatedPtrField<::google::protobuf::Option>&
|
|
2011
|
+
Type::_internal_options() const {
|
|
2012
|
+
::google::protobuf::internal::TSanRead(&_impl_);
|
|
2013
|
+
return _impl_.options_;
|
|
2014
|
+
}
|
|
2015
|
+
inline ::google::protobuf::RepeatedPtrField<::google::protobuf::Option>* PROTOBUF_NONNULL
|
|
2016
|
+
Type::_internal_mutable_options() {
|
|
2017
|
+
::google::protobuf::internal::TSanRead(&_impl_);
|
|
2018
|
+
return &_impl_.options_;
|
|
2019
|
+
}
|
|
2020
|
+
|
|
2021
|
+
// .google.protobuf.SourceContext source_context = 5;
|
|
2022
|
+
inline bool Type::has_source_context() const {
|
|
2023
|
+
bool value = CheckHasBit(_impl_._has_bits_[0], 0x00000020U);
|
|
2024
|
+
PROTOBUF_ASSUME(!value || _impl_.source_context_ != nullptr);
|
|
2025
|
+
return value;
|
|
2026
|
+
}
|
|
2027
|
+
inline const ::google::protobuf::SourceContext& Type::_internal_source_context() const {
|
|
2028
|
+
::google::protobuf::internal::TSanRead(&_impl_);
|
|
2029
|
+
const ::google::protobuf::SourceContext* p = _impl_.source_context_;
|
|
2030
|
+
return p != nullptr ? *p : *::google::protobuf::internal::MessageGlobalsBase::ToDefaultInstance<::google::protobuf::SourceContext>(&::google::protobuf::SourceContext_globals_);
|
|
2031
|
+
}
|
|
2032
|
+
inline const ::google::protobuf::SourceContext& Type::source_context() const ABSL_ATTRIBUTE_LIFETIME_BOUND {
|
|
2033
|
+
// @@protoc_insertion_point(field_get:google.protobuf.Type.source_context)
|
|
2034
|
+
return _internal_source_context();
|
|
2035
|
+
}
|
|
2036
|
+
inline void Type::unsafe_arena_set_allocated_source_context(
|
|
2037
|
+
::google::protobuf::SourceContext* PROTOBUF_NULLABLE value) {
|
|
2038
|
+
::google::protobuf::internal::TSanWrite(&_impl_);
|
|
2039
|
+
if (GetArena() == nullptr) {
|
|
2040
|
+
delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.source_context_);
|
|
2041
|
+
}
|
|
2042
|
+
_impl_.source_context_ = reinterpret_cast<::google::protobuf::SourceContext*>(value);
|
|
2043
|
+
if (value != nullptr) {
|
|
2044
|
+
SetHasBit(_impl_._has_bits_[0], 0x00000020U);
|
|
2045
|
+
} else {
|
|
2046
|
+
ClearHasBit(_impl_._has_bits_[0], 0x00000020U);
|
|
2047
|
+
}
|
|
2048
|
+
// @@protoc_insertion_point(field_unsafe_arena_set_allocated:google.protobuf.Type.source_context)
|
|
2049
|
+
}
|
|
2050
|
+
inline ::google::protobuf::SourceContext* PROTOBUF_NULLABLE Type::release_source_context() {
|
|
2051
|
+
::google::protobuf::internal::TSanWrite(&_impl_);
|
|
2052
|
+
|
|
2053
|
+
ClearHasBit(_impl_._has_bits_[0], 0x00000020U);
|
|
2054
|
+
::google::protobuf::SourceContext* released = _impl_.source_context_;
|
|
2055
|
+
_impl_.source_context_ = nullptr;
|
|
2056
|
+
if (::google::protobuf::internal::DebugHardenForceCopyInRelease()) {
|
|
2057
|
+
auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released);
|
|
2058
|
+
released = ::google::protobuf::internal::DuplicateIfNonNull(released);
|
|
2059
|
+
if (GetArena() == nullptr) {
|
|
2060
|
+
delete old;
|
|
2061
|
+
}
|
|
2062
|
+
} else {
|
|
2063
|
+
if (GetArena() != nullptr) {
|
|
2064
|
+
released = ::google::protobuf::internal::DuplicateIfNonNull(released);
|
|
2065
|
+
}
|
|
2066
|
+
}
|
|
2067
|
+
return released;
|
|
2068
|
+
}
|
|
2069
|
+
inline ::google::protobuf::SourceContext* PROTOBUF_NULLABLE Type::unsafe_arena_release_source_context() {
|
|
2070
|
+
::google::protobuf::internal::TSanWrite(&_impl_);
|
|
2071
|
+
// @@protoc_insertion_point(field_release:google.protobuf.Type.source_context)
|
|
2072
|
+
|
|
2073
|
+
ClearHasBit(_impl_._has_bits_[0], 0x00000020U);
|
|
2074
|
+
::google::protobuf::SourceContext* temp = _impl_.source_context_;
|
|
2075
|
+
_impl_.source_context_ = nullptr;
|
|
2076
|
+
return temp;
|
|
2077
|
+
}
|
|
2078
|
+
inline ::google::protobuf::SourceContext* PROTOBUF_NONNULL Type::_internal_mutable_source_context() {
|
|
2079
|
+
::google::protobuf::internal::TSanWrite(&_impl_);
|
|
2080
|
+
if (_impl_.source_context_ == nullptr) {
|
|
2081
|
+
auto* p = ::google::protobuf::Message::DefaultConstruct<::google::protobuf::SourceContext>(GetArena());
|
|
2082
|
+
_impl_.source_context_ = reinterpret_cast<::google::protobuf::SourceContext*>(p);
|
|
2083
|
+
}
|
|
2084
|
+
return _impl_.source_context_;
|
|
2085
|
+
}
|
|
2086
|
+
inline ::google::protobuf::SourceContext* PROTOBUF_NONNULL Type::mutable_source_context()
|
|
2087
|
+
ABSL_ATTRIBUTE_LIFETIME_BOUND {
|
|
2088
|
+
SetHasBit(_impl_._has_bits_[0], 0x00000020U);
|
|
2089
|
+
::google::protobuf::SourceContext* _msg = _internal_mutable_source_context();
|
|
2090
|
+
// @@protoc_insertion_point(field_mutable:google.protobuf.Type.source_context)
|
|
2091
|
+
return _msg;
|
|
2092
|
+
}
|
|
2093
|
+
inline void Type::set_allocated_source_context(::google::protobuf::SourceContext* PROTOBUF_NULLABLE value) {
|
|
2094
|
+
::google::protobuf::Arena* message_arena = GetArena();
|
|
2095
|
+
::google::protobuf::internal::TSanWrite(&_impl_);
|
|
2096
|
+
if (message_arena == nullptr) {
|
|
2097
|
+
delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.source_context_);
|
|
2098
|
+
}
|
|
2099
|
+
|
|
2100
|
+
if (value != nullptr) {
|
|
2101
|
+
::google::protobuf::Arena* submessage_arena = reinterpret_cast<::google::protobuf::Message*>(value)->GetArena();
|
|
2102
|
+
if (message_arena != submessage_arena) {
|
|
2103
|
+
value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena);
|
|
2104
|
+
}
|
|
2105
|
+
SetHasBit(_impl_._has_bits_[0], 0x00000020U);
|
|
2106
|
+
} else {
|
|
2107
|
+
ClearHasBit(_impl_._has_bits_[0], 0x00000020U);
|
|
2108
|
+
}
|
|
2109
|
+
|
|
2110
|
+
_impl_.source_context_ = reinterpret_cast<::google::protobuf::SourceContext*>(value);
|
|
2111
|
+
// @@protoc_insertion_point(field_set_allocated:google.protobuf.Type.source_context)
|
|
2112
|
+
}
|
|
2113
|
+
|
|
2114
|
+
// .google.protobuf.Syntax syntax = 6;
|
|
2115
|
+
inline void Type::clear_syntax() {
|
|
2116
|
+
::google::protobuf::internal::TSanWrite(&_impl_);
|
|
2117
|
+
_impl_.syntax_ = 0;
|
|
2118
|
+
ClearHasBit(_impl_._has_bits_[0], 0x00000040U);
|
|
2119
|
+
}
|
|
2120
|
+
inline ::google::protobuf::Syntax Type::syntax() const {
|
|
2121
|
+
// @@protoc_insertion_point(field_get:google.protobuf.Type.syntax)
|
|
2122
|
+
return _internal_syntax();
|
|
2123
|
+
}
|
|
2124
|
+
inline void Type::set_syntax(::google::protobuf::Syntax value) {
|
|
2125
|
+
_internal_set_syntax(value);
|
|
2126
|
+
SetHasBit(_impl_._has_bits_[0], 0x00000040U);
|
|
2127
|
+
// @@protoc_insertion_point(field_set:google.protobuf.Type.syntax)
|
|
2128
|
+
}
|
|
2129
|
+
inline ::google::protobuf::Syntax Type::_internal_syntax() const {
|
|
2130
|
+
::google::protobuf::internal::TSanRead(&_impl_);
|
|
2131
|
+
return static_cast<::google::protobuf::Syntax>(_impl_.syntax_);
|
|
2132
|
+
}
|
|
2133
|
+
inline void Type::_internal_set_syntax(::google::protobuf::Syntax value) {
|
|
2134
|
+
::google::protobuf::internal::TSanWrite(&_impl_);
|
|
2135
|
+
_impl_.syntax_ = value;
|
|
2136
|
+
}
|
|
2137
|
+
|
|
2138
|
+
// string edition = 7;
|
|
2139
|
+
inline void Type::clear_edition() {
|
|
2140
|
+
::google::protobuf::internal::TSanWrite(&_impl_);
|
|
2141
|
+
_impl_.edition_.ClearToEmpty();
|
|
2142
|
+
ClearHasBit(_impl_._has_bits_[0], 0x00000010U);
|
|
2143
|
+
}
|
|
2144
|
+
inline const ::std::string& Type::edition() const
|
|
2145
|
+
ABSL_ATTRIBUTE_LIFETIME_BOUND {
|
|
2146
|
+
// @@protoc_insertion_point(field_get:google.protobuf.Type.edition)
|
|
2147
|
+
return _internal_edition();
|
|
2148
|
+
}
|
|
2149
|
+
template <typename Arg_, typename... Args_>
|
|
2150
|
+
PROTOBUF_ALWAYS_INLINE void Type::set_edition(Arg_&& arg, Args_... args) {
|
|
2151
|
+
::google::protobuf::internal::TSanWrite(&_impl_);
|
|
2152
|
+
SetHasBit(_impl_._has_bits_[0], 0x00000010U);
|
|
2153
|
+
_impl_.edition_.Set(static_cast<Arg_&&>(arg), args..., GetArena());
|
|
2154
|
+
// @@protoc_insertion_point(field_set:google.protobuf.Type.edition)
|
|
2155
|
+
}
|
|
2156
|
+
inline ::std::string* PROTOBUF_NONNULL Type::mutable_edition()
|
|
2157
|
+
ABSL_ATTRIBUTE_LIFETIME_BOUND {
|
|
2158
|
+
SetHasBit(_impl_._has_bits_[0], 0x00000010U);
|
|
2159
|
+
::std::string* _s = _internal_mutable_edition();
|
|
2160
|
+
// @@protoc_insertion_point(field_mutable:google.protobuf.Type.edition)
|
|
2161
|
+
return _s;
|
|
2162
|
+
}
|
|
2163
|
+
inline const ::std::string& Type::_internal_edition() const {
|
|
2164
|
+
::google::protobuf::internal::TSanRead(&_impl_);
|
|
2165
|
+
return _impl_.edition_.Get();
|
|
2166
|
+
}
|
|
2167
|
+
inline void Type::_internal_set_edition(const ::std::string& value) {
|
|
2168
|
+
::google::protobuf::internal::TSanWrite(&_impl_);
|
|
2169
|
+
_impl_.edition_.Set(value, GetArena());
|
|
2170
|
+
}
|
|
2171
|
+
inline ::std::string* PROTOBUF_NONNULL Type::_internal_mutable_edition() {
|
|
2172
|
+
::google::protobuf::internal::TSanWrite(&_impl_);
|
|
2173
|
+
return _impl_.edition_.Mutable( GetArena());
|
|
2174
|
+
}
|
|
2175
|
+
inline ::std::string* PROTOBUF_NULLABLE Type::release_edition() {
|
|
2176
|
+
::google::protobuf::internal::TSanWrite(&_impl_);
|
|
2177
|
+
// @@protoc_insertion_point(field_release:google.protobuf.Type.edition)
|
|
2178
|
+
if (!CheckHasBit(_impl_._has_bits_[0], 0x00000010U)) {
|
|
2179
|
+
return nullptr;
|
|
2180
|
+
}
|
|
2181
|
+
ClearHasBit(_impl_._has_bits_[0], 0x00000010U);
|
|
2182
|
+
auto* released = _impl_.edition_.Release();
|
|
2183
|
+
if (::google::protobuf::internal::DebugHardenForceCopyDefaultString()) {
|
|
2184
|
+
_impl_.edition_.Set("", GetArena());
|
|
2185
|
+
}
|
|
2186
|
+
return released;
|
|
2187
|
+
}
|
|
2188
|
+
inline void Type::set_allocated_edition(::std::string* PROTOBUF_NULLABLE value) {
|
|
2189
|
+
::google::protobuf::internal::TSanWrite(&_impl_);
|
|
2190
|
+
if (value != nullptr) {
|
|
2191
|
+
SetHasBit(_impl_._has_bits_[0], 0x00000010U);
|
|
2192
|
+
} else {
|
|
2193
|
+
ClearHasBit(_impl_._has_bits_[0], 0x00000010U);
|
|
2194
|
+
}
|
|
2195
|
+
_impl_.edition_.SetAllocated(value, GetArena());
|
|
2196
|
+
if (::google::protobuf::internal::DebugHardenForceCopyDefaultString() && _impl_.edition_.IsDefault()) {
|
|
2197
|
+
_impl_.edition_.Set("", GetArena());
|
|
2198
|
+
}
|
|
2199
|
+
// @@protoc_insertion_point(field_set_allocated:google.protobuf.Type.edition)
|
|
2200
|
+
}
|
|
2201
|
+
|
|
2202
|
+
// -------------------------------------------------------------------
|
|
2203
|
+
|
|
2204
|
+
// Field
|
|
2205
|
+
|
|
2206
|
+
// .google.protobuf.Field.Kind kind = 1;
|
|
2207
|
+
inline void Field::clear_kind() {
|
|
2208
|
+
::google::protobuf::internal::TSanWrite(&_impl_);
|
|
2209
|
+
_impl_.kind_ = 0;
|
|
2210
|
+
ClearHasBit(_impl_._has_bits_[0], 0x00000020U);
|
|
2211
|
+
}
|
|
2212
|
+
inline ::google::protobuf::Field_Kind Field::kind() const {
|
|
2213
|
+
// @@protoc_insertion_point(field_get:google.protobuf.Field.kind)
|
|
2214
|
+
return _internal_kind();
|
|
2215
|
+
}
|
|
2216
|
+
inline void Field::set_kind(::google::protobuf::Field_Kind value) {
|
|
2217
|
+
_internal_set_kind(value);
|
|
2218
|
+
SetHasBit(_impl_._has_bits_[0], 0x00000020U);
|
|
2219
|
+
// @@protoc_insertion_point(field_set:google.protobuf.Field.kind)
|
|
2220
|
+
}
|
|
2221
|
+
inline ::google::protobuf::Field_Kind Field::_internal_kind() const {
|
|
2222
|
+
::google::protobuf::internal::TSanRead(&_impl_);
|
|
2223
|
+
return static_cast<::google::protobuf::Field_Kind>(_impl_.kind_);
|
|
2224
|
+
}
|
|
2225
|
+
inline void Field::_internal_set_kind(::google::protobuf::Field_Kind value) {
|
|
2226
|
+
::google::protobuf::internal::TSanWrite(&_impl_);
|
|
2227
|
+
_impl_.kind_ = value;
|
|
2228
|
+
}
|
|
2229
|
+
|
|
2230
|
+
// .google.protobuf.Field.Cardinality cardinality = 2;
|
|
2231
|
+
inline void Field::clear_cardinality() {
|
|
2232
|
+
::google::protobuf::internal::TSanWrite(&_impl_);
|
|
2233
|
+
_impl_.cardinality_ = 0;
|
|
2234
|
+
ClearHasBit(_impl_._has_bits_[0], 0x00000040U);
|
|
2235
|
+
}
|
|
2236
|
+
inline ::google::protobuf::Field_Cardinality Field::cardinality() const {
|
|
2237
|
+
// @@protoc_insertion_point(field_get:google.protobuf.Field.cardinality)
|
|
2238
|
+
return _internal_cardinality();
|
|
2239
|
+
}
|
|
2240
|
+
inline void Field::set_cardinality(::google::protobuf::Field_Cardinality value) {
|
|
2241
|
+
_internal_set_cardinality(value);
|
|
2242
|
+
SetHasBit(_impl_._has_bits_[0], 0x00000040U);
|
|
2243
|
+
// @@protoc_insertion_point(field_set:google.protobuf.Field.cardinality)
|
|
2244
|
+
}
|
|
2245
|
+
inline ::google::protobuf::Field_Cardinality Field::_internal_cardinality() const {
|
|
2246
|
+
::google::protobuf::internal::TSanRead(&_impl_);
|
|
2247
|
+
return static_cast<::google::protobuf::Field_Cardinality>(_impl_.cardinality_);
|
|
2248
|
+
}
|
|
2249
|
+
inline void Field::_internal_set_cardinality(::google::protobuf::Field_Cardinality value) {
|
|
2250
|
+
::google::protobuf::internal::TSanWrite(&_impl_);
|
|
2251
|
+
_impl_.cardinality_ = value;
|
|
2252
|
+
}
|
|
2253
|
+
|
|
2254
|
+
// int32 number = 3;
|
|
2255
|
+
inline void Field::clear_number() {
|
|
2256
|
+
::google::protobuf::internal::TSanWrite(&_impl_);
|
|
2257
|
+
_impl_.number_ = 0;
|
|
2258
|
+
ClearHasBit(_impl_._has_bits_[0], 0x00000080U);
|
|
2259
|
+
}
|
|
2260
|
+
inline ::int32_t Field::number() const {
|
|
2261
|
+
// @@protoc_insertion_point(field_get:google.protobuf.Field.number)
|
|
2262
|
+
return _internal_number();
|
|
2263
|
+
}
|
|
2264
|
+
inline void Field::set_number(::int32_t value) {
|
|
2265
|
+
_internal_set_number(value);
|
|
2266
|
+
SetHasBit(_impl_._has_bits_[0], 0x00000080U);
|
|
2267
|
+
// @@protoc_insertion_point(field_set:google.protobuf.Field.number)
|
|
2268
|
+
}
|
|
2269
|
+
inline ::int32_t Field::_internal_number() const {
|
|
2270
|
+
::google::protobuf::internal::TSanRead(&_impl_);
|
|
2271
|
+
return _impl_.number_;
|
|
2272
|
+
}
|
|
2273
|
+
inline void Field::_internal_set_number(::int32_t value) {
|
|
2274
|
+
::google::protobuf::internal::TSanWrite(&_impl_);
|
|
2275
|
+
_impl_.number_ = value;
|
|
2276
|
+
}
|
|
2277
|
+
|
|
2278
|
+
// string name = 4;
|
|
2279
|
+
inline void Field::clear_name() {
|
|
2280
|
+
::google::protobuf::internal::TSanWrite(&_impl_);
|
|
2281
|
+
_impl_.name_.ClearToEmpty();
|
|
2282
|
+
ClearHasBit(_impl_._has_bits_[0], 0x00000002U);
|
|
2283
|
+
}
|
|
2284
|
+
inline const ::std::string& Field::name() const
|
|
2285
|
+
ABSL_ATTRIBUTE_LIFETIME_BOUND {
|
|
2286
|
+
// @@protoc_insertion_point(field_get:google.protobuf.Field.name)
|
|
2287
|
+
return _internal_name();
|
|
2288
|
+
}
|
|
2289
|
+
template <typename Arg_, typename... Args_>
|
|
2290
|
+
PROTOBUF_ALWAYS_INLINE void Field::set_name(Arg_&& arg, Args_... args) {
|
|
2291
|
+
::google::protobuf::internal::TSanWrite(&_impl_);
|
|
2292
|
+
SetHasBit(_impl_._has_bits_[0], 0x00000002U);
|
|
2293
|
+
_impl_.name_.Set(static_cast<Arg_&&>(arg), args..., GetArena());
|
|
2294
|
+
// @@protoc_insertion_point(field_set:google.protobuf.Field.name)
|
|
2295
|
+
}
|
|
2296
|
+
inline ::std::string* PROTOBUF_NONNULL Field::mutable_name()
|
|
2297
|
+
ABSL_ATTRIBUTE_LIFETIME_BOUND {
|
|
2298
|
+
SetHasBit(_impl_._has_bits_[0], 0x00000002U);
|
|
2299
|
+
::std::string* _s = _internal_mutable_name();
|
|
2300
|
+
// @@protoc_insertion_point(field_mutable:google.protobuf.Field.name)
|
|
2301
|
+
return _s;
|
|
2302
|
+
}
|
|
2303
|
+
inline const ::std::string& Field::_internal_name() const {
|
|
2304
|
+
::google::protobuf::internal::TSanRead(&_impl_);
|
|
2305
|
+
return _impl_.name_.Get();
|
|
2306
|
+
}
|
|
2307
|
+
inline void Field::_internal_set_name(const ::std::string& value) {
|
|
2308
|
+
::google::protobuf::internal::TSanWrite(&_impl_);
|
|
2309
|
+
_impl_.name_.Set(value, GetArena());
|
|
2310
|
+
}
|
|
2311
|
+
inline ::std::string* PROTOBUF_NONNULL Field::_internal_mutable_name() {
|
|
2312
|
+
::google::protobuf::internal::TSanWrite(&_impl_);
|
|
2313
|
+
return _impl_.name_.Mutable( GetArena());
|
|
2314
|
+
}
|
|
2315
|
+
inline ::std::string* PROTOBUF_NULLABLE Field::release_name() {
|
|
2316
|
+
::google::protobuf::internal::TSanWrite(&_impl_);
|
|
2317
|
+
// @@protoc_insertion_point(field_release:google.protobuf.Field.name)
|
|
2318
|
+
if (!CheckHasBit(_impl_._has_bits_[0], 0x00000002U)) {
|
|
2319
|
+
return nullptr;
|
|
2320
|
+
}
|
|
2321
|
+
ClearHasBit(_impl_._has_bits_[0], 0x00000002U);
|
|
2322
|
+
auto* released = _impl_.name_.Release();
|
|
2323
|
+
if (::google::protobuf::internal::DebugHardenForceCopyDefaultString()) {
|
|
2324
|
+
_impl_.name_.Set("", GetArena());
|
|
2325
|
+
}
|
|
2326
|
+
return released;
|
|
2327
|
+
}
|
|
2328
|
+
inline void Field::set_allocated_name(::std::string* PROTOBUF_NULLABLE value) {
|
|
2329
|
+
::google::protobuf::internal::TSanWrite(&_impl_);
|
|
2330
|
+
if (value != nullptr) {
|
|
2331
|
+
SetHasBit(_impl_._has_bits_[0], 0x00000002U);
|
|
2332
|
+
} else {
|
|
2333
|
+
ClearHasBit(_impl_._has_bits_[0], 0x00000002U);
|
|
2334
|
+
}
|
|
2335
|
+
_impl_.name_.SetAllocated(value, GetArena());
|
|
2336
|
+
if (::google::protobuf::internal::DebugHardenForceCopyDefaultString() && _impl_.name_.IsDefault()) {
|
|
2337
|
+
_impl_.name_.Set("", GetArena());
|
|
2338
|
+
}
|
|
2339
|
+
// @@protoc_insertion_point(field_set_allocated:google.protobuf.Field.name)
|
|
2340
|
+
}
|
|
2341
|
+
|
|
2342
|
+
// string type_url = 6;
|
|
2343
|
+
inline void Field::clear_type_url() {
|
|
2344
|
+
::google::protobuf::internal::TSanWrite(&_impl_);
|
|
2345
|
+
_impl_.type_url_.ClearToEmpty();
|
|
2346
|
+
ClearHasBit(_impl_._has_bits_[0], 0x00000004U);
|
|
2347
|
+
}
|
|
2348
|
+
inline const ::std::string& Field::type_url() const
|
|
2349
|
+
ABSL_ATTRIBUTE_LIFETIME_BOUND {
|
|
2350
|
+
// @@protoc_insertion_point(field_get:google.protobuf.Field.type_url)
|
|
2351
|
+
return _internal_type_url();
|
|
2352
|
+
}
|
|
2353
|
+
template <typename Arg_, typename... Args_>
|
|
2354
|
+
PROTOBUF_ALWAYS_INLINE void Field::set_type_url(Arg_&& arg, Args_... args) {
|
|
2355
|
+
::google::protobuf::internal::TSanWrite(&_impl_);
|
|
2356
|
+
SetHasBit(_impl_._has_bits_[0], 0x00000004U);
|
|
2357
|
+
_impl_.type_url_.Set(static_cast<Arg_&&>(arg), args..., GetArena());
|
|
2358
|
+
// @@protoc_insertion_point(field_set:google.protobuf.Field.type_url)
|
|
2359
|
+
}
|
|
2360
|
+
inline ::std::string* PROTOBUF_NONNULL Field::mutable_type_url()
|
|
2361
|
+
ABSL_ATTRIBUTE_LIFETIME_BOUND {
|
|
2362
|
+
SetHasBit(_impl_._has_bits_[0], 0x00000004U);
|
|
2363
|
+
::std::string* _s = _internal_mutable_type_url();
|
|
2364
|
+
// @@protoc_insertion_point(field_mutable:google.protobuf.Field.type_url)
|
|
2365
|
+
return _s;
|
|
2366
|
+
}
|
|
2367
|
+
inline const ::std::string& Field::_internal_type_url() const {
|
|
2368
|
+
::google::protobuf::internal::TSanRead(&_impl_);
|
|
2369
|
+
return _impl_.type_url_.Get();
|
|
2370
|
+
}
|
|
2371
|
+
inline void Field::_internal_set_type_url(const ::std::string& value) {
|
|
2372
|
+
::google::protobuf::internal::TSanWrite(&_impl_);
|
|
2373
|
+
_impl_.type_url_.Set(value, GetArena());
|
|
2374
|
+
}
|
|
2375
|
+
inline ::std::string* PROTOBUF_NONNULL Field::_internal_mutable_type_url() {
|
|
2376
|
+
::google::protobuf::internal::TSanWrite(&_impl_);
|
|
2377
|
+
return _impl_.type_url_.Mutable( GetArena());
|
|
2378
|
+
}
|
|
2379
|
+
inline ::std::string* PROTOBUF_NULLABLE Field::release_type_url() {
|
|
2380
|
+
::google::protobuf::internal::TSanWrite(&_impl_);
|
|
2381
|
+
// @@protoc_insertion_point(field_release:google.protobuf.Field.type_url)
|
|
2382
|
+
if (!CheckHasBit(_impl_._has_bits_[0], 0x00000004U)) {
|
|
2383
|
+
return nullptr;
|
|
2384
|
+
}
|
|
2385
|
+
ClearHasBit(_impl_._has_bits_[0], 0x00000004U);
|
|
2386
|
+
auto* released = _impl_.type_url_.Release();
|
|
2387
|
+
if (::google::protobuf::internal::DebugHardenForceCopyDefaultString()) {
|
|
2388
|
+
_impl_.type_url_.Set("", GetArena());
|
|
2389
|
+
}
|
|
2390
|
+
return released;
|
|
2391
|
+
}
|
|
2392
|
+
inline void Field::set_allocated_type_url(::std::string* PROTOBUF_NULLABLE value) {
|
|
2393
|
+
::google::protobuf::internal::TSanWrite(&_impl_);
|
|
2394
|
+
if (value != nullptr) {
|
|
2395
|
+
SetHasBit(_impl_._has_bits_[0], 0x00000004U);
|
|
2396
|
+
} else {
|
|
2397
|
+
ClearHasBit(_impl_._has_bits_[0], 0x00000004U);
|
|
2398
|
+
}
|
|
2399
|
+
_impl_.type_url_.SetAllocated(value, GetArena());
|
|
2400
|
+
if (::google::protobuf::internal::DebugHardenForceCopyDefaultString() && _impl_.type_url_.IsDefault()) {
|
|
2401
|
+
_impl_.type_url_.Set("", GetArena());
|
|
2402
|
+
}
|
|
2403
|
+
// @@protoc_insertion_point(field_set_allocated:google.protobuf.Field.type_url)
|
|
2404
|
+
}
|
|
2405
|
+
|
|
2406
|
+
// int32 oneof_index = 7;
|
|
2407
|
+
inline void Field::clear_oneof_index() {
|
|
2408
|
+
::google::protobuf::internal::TSanWrite(&_impl_);
|
|
2409
|
+
_impl_.oneof_index_ = 0;
|
|
2410
|
+
ClearHasBit(_impl_._has_bits_[0], 0x00000100U);
|
|
2411
|
+
}
|
|
2412
|
+
inline ::int32_t Field::oneof_index() const {
|
|
2413
|
+
// @@protoc_insertion_point(field_get:google.protobuf.Field.oneof_index)
|
|
2414
|
+
return _internal_oneof_index();
|
|
2415
|
+
}
|
|
2416
|
+
inline void Field::set_oneof_index(::int32_t value) {
|
|
2417
|
+
_internal_set_oneof_index(value);
|
|
2418
|
+
SetHasBit(_impl_._has_bits_[0], 0x00000100U);
|
|
2419
|
+
// @@protoc_insertion_point(field_set:google.protobuf.Field.oneof_index)
|
|
2420
|
+
}
|
|
2421
|
+
inline ::int32_t Field::_internal_oneof_index() const {
|
|
2422
|
+
::google::protobuf::internal::TSanRead(&_impl_);
|
|
2423
|
+
return _impl_.oneof_index_;
|
|
2424
|
+
}
|
|
2425
|
+
inline void Field::_internal_set_oneof_index(::int32_t value) {
|
|
2426
|
+
::google::protobuf::internal::TSanWrite(&_impl_);
|
|
2427
|
+
_impl_.oneof_index_ = value;
|
|
2428
|
+
}
|
|
2429
|
+
|
|
2430
|
+
// bool packed = 8;
|
|
2431
|
+
inline void Field::clear_packed() {
|
|
2432
|
+
::google::protobuf::internal::TSanWrite(&_impl_);
|
|
2433
|
+
_impl_.packed_ = false;
|
|
2434
|
+
ClearHasBit(_impl_._has_bits_[0], 0x00000200U);
|
|
2435
|
+
}
|
|
2436
|
+
inline bool Field::packed() const {
|
|
2437
|
+
// @@protoc_insertion_point(field_get:google.protobuf.Field.packed)
|
|
2438
|
+
return _internal_packed();
|
|
2439
|
+
}
|
|
2440
|
+
inline void Field::set_packed(bool value) {
|
|
2441
|
+
_internal_set_packed(value);
|
|
2442
|
+
SetHasBit(_impl_._has_bits_[0], 0x00000200U);
|
|
2443
|
+
// @@protoc_insertion_point(field_set:google.protobuf.Field.packed)
|
|
2444
|
+
}
|
|
2445
|
+
inline bool Field::_internal_packed() const {
|
|
2446
|
+
::google::protobuf::internal::TSanRead(&_impl_);
|
|
2447
|
+
return _impl_.packed_;
|
|
2448
|
+
}
|
|
2449
|
+
inline void Field::_internal_set_packed(bool value) {
|
|
2450
|
+
::google::protobuf::internal::TSanWrite(&_impl_);
|
|
2451
|
+
_impl_.packed_ = value;
|
|
2452
|
+
}
|
|
2453
|
+
|
|
2454
|
+
// repeated .google.protobuf.Option options = 9;
|
|
2455
|
+
inline int Field::_internal_options_size() const {
|
|
2456
|
+
return _internal_options().size();
|
|
2457
|
+
}
|
|
2458
|
+
inline int Field::options_size() const {
|
|
2459
|
+
return _internal_options_size();
|
|
2460
|
+
}
|
|
2461
|
+
inline void Field::clear_options() {
|
|
2462
|
+
::google::protobuf::internal::TSanWrite(&_impl_);
|
|
2463
|
+
_impl_.options_.Clear();
|
|
2464
|
+
ClearHasBit(_impl_._has_bits_[0], 0x00000001U);
|
|
2465
|
+
}
|
|
2466
|
+
inline const ::google::protobuf::Option& Field::options(int index) const
|
|
2467
|
+
ABSL_ATTRIBUTE_LIFETIME_BOUND {
|
|
2468
|
+
// @@protoc_insertion_point(field_get:google.protobuf.Field.options)
|
|
2469
|
+
return _internal_options().Get(index);
|
|
2470
|
+
}
|
|
2471
|
+
inline ::google::protobuf::Option* PROTOBUF_NONNULL Field::mutable_options(int index)
|
|
2472
|
+
ABSL_ATTRIBUTE_LIFETIME_BOUND {
|
|
2473
|
+
// @@protoc_insertion_point(field_mutable:google.protobuf.Field.options)
|
|
2474
|
+
return _internal_mutable_options()->Mutable(index);
|
|
2475
|
+
}
|
|
2476
|
+
inline ::google::protobuf::Option* PROTOBUF_NONNULL Field::add_options()
|
|
2477
|
+
ABSL_ATTRIBUTE_LIFETIME_BOUND {
|
|
2478
|
+
::google::protobuf::internal::TSanWrite(&_impl_);
|
|
2479
|
+
::google::protobuf::Option* _add =
|
|
2480
|
+
_internal_mutable_options()->InternalAddWithArena(
|
|
2481
|
+
::google::protobuf::MessageLite::internal_visibility(), GetArena());
|
|
2482
|
+
SetHasBit(_impl_._has_bits_[0], 0x00000001U);
|
|
2483
|
+
// @@protoc_insertion_point(field_add:google.protobuf.Field.options)
|
|
2484
|
+
return _add;
|
|
2485
|
+
}
|
|
2486
|
+
inline const ::google::protobuf::RepeatedPtrField<::google::protobuf::Option>& Field::options() const
|
|
2487
|
+
ABSL_ATTRIBUTE_LIFETIME_BOUND {
|
|
2488
|
+
// @@protoc_insertion_point(field_list:google.protobuf.Field.options)
|
|
2489
|
+
return _internal_options();
|
|
2490
|
+
}
|
|
2491
|
+
inline ::google::protobuf::RepeatedPtrField<::google::protobuf::Option>* PROTOBUF_NONNULL
|
|
2492
|
+
Field::mutable_options() ABSL_ATTRIBUTE_LIFETIME_BOUND {
|
|
2493
|
+
SetHasBit(_impl_._has_bits_[0], 0x00000001U);
|
|
2494
|
+
// @@protoc_insertion_point(field_mutable_list:google.protobuf.Field.options)
|
|
2495
|
+
::google::protobuf::internal::TSanWrite(&_impl_);
|
|
2496
|
+
return _internal_mutable_options();
|
|
2497
|
+
}
|
|
2498
|
+
inline const ::google::protobuf::RepeatedPtrField<::google::protobuf::Option>&
|
|
2499
|
+
Field::_internal_options() const {
|
|
2500
|
+
::google::protobuf::internal::TSanRead(&_impl_);
|
|
2501
|
+
return _impl_.options_;
|
|
2502
|
+
}
|
|
2503
|
+
inline ::google::protobuf::RepeatedPtrField<::google::protobuf::Option>* PROTOBUF_NONNULL
|
|
2504
|
+
Field::_internal_mutable_options() {
|
|
2505
|
+
::google::protobuf::internal::TSanRead(&_impl_);
|
|
2506
|
+
return &_impl_.options_;
|
|
2507
|
+
}
|
|
2508
|
+
|
|
2509
|
+
// string json_name = 10;
|
|
2510
|
+
inline void Field::clear_json_name() {
|
|
2511
|
+
::google::protobuf::internal::TSanWrite(&_impl_);
|
|
2512
|
+
_impl_.json_name_.ClearToEmpty();
|
|
2513
|
+
ClearHasBit(_impl_._has_bits_[0], 0x00000008U);
|
|
2514
|
+
}
|
|
2515
|
+
inline const ::std::string& Field::json_name() const
|
|
2516
|
+
ABSL_ATTRIBUTE_LIFETIME_BOUND {
|
|
2517
|
+
// @@protoc_insertion_point(field_get:google.protobuf.Field.json_name)
|
|
2518
|
+
return _internal_json_name();
|
|
2519
|
+
}
|
|
2520
|
+
template <typename Arg_, typename... Args_>
|
|
2521
|
+
PROTOBUF_ALWAYS_INLINE void Field::set_json_name(Arg_&& arg, Args_... args) {
|
|
2522
|
+
::google::protobuf::internal::TSanWrite(&_impl_);
|
|
2523
|
+
SetHasBit(_impl_._has_bits_[0], 0x00000008U);
|
|
2524
|
+
_impl_.json_name_.Set(static_cast<Arg_&&>(arg), args..., GetArena());
|
|
2525
|
+
// @@protoc_insertion_point(field_set:google.protobuf.Field.json_name)
|
|
2526
|
+
}
|
|
2527
|
+
inline ::std::string* PROTOBUF_NONNULL Field::mutable_json_name()
|
|
2528
|
+
ABSL_ATTRIBUTE_LIFETIME_BOUND {
|
|
2529
|
+
SetHasBit(_impl_._has_bits_[0], 0x00000008U);
|
|
2530
|
+
::std::string* _s = _internal_mutable_json_name();
|
|
2531
|
+
// @@protoc_insertion_point(field_mutable:google.protobuf.Field.json_name)
|
|
2532
|
+
return _s;
|
|
2533
|
+
}
|
|
2534
|
+
inline const ::std::string& Field::_internal_json_name() const {
|
|
2535
|
+
::google::protobuf::internal::TSanRead(&_impl_);
|
|
2536
|
+
return _impl_.json_name_.Get();
|
|
2537
|
+
}
|
|
2538
|
+
inline void Field::_internal_set_json_name(const ::std::string& value) {
|
|
2539
|
+
::google::protobuf::internal::TSanWrite(&_impl_);
|
|
2540
|
+
_impl_.json_name_.Set(value, GetArena());
|
|
2541
|
+
}
|
|
2542
|
+
inline ::std::string* PROTOBUF_NONNULL Field::_internal_mutable_json_name() {
|
|
2543
|
+
::google::protobuf::internal::TSanWrite(&_impl_);
|
|
2544
|
+
return _impl_.json_name_.Mutable( GetArena());
|
|
2545
|
+
}
|
|
2546
|
+
inline ::std::string* PROTOBUF_NULLABLE Field::release_json_name() {
|
|
2547
|
+
::google::protobuf::internal::TSanWrite(&_impl_);
|
|
2548
|
+
// @@protoc_insertion_point(field_release:google.protobuf.Field.json_name)
|
|
2549
|
+
if (!CheckHasBit(_impl_._has_bits_[0], 0x00000008U)) {
|
|
2550
|
+
return nullptr;
|
|
2551
|
+
}
|
|
2552
|
+
ClearHasBit(_impl_._has_bits_[0], 0x00000008U);
|
|
2553
|
+
auto* released = _impl_.json_name_.Release();
|
|
2554
|
+
if (::google::protobuf::internal::DebugHardenForceCopyDefaultString()) {
|
|
2555
|
+
_impl_.json_name_.Set("", GetArena());
|
|
2556
|
+
}
|
|
2557
|
+
return released;
|
|
2558
|
+
}
|
|
2559
|
+
inline void Field::set_allocated_json_name(::std::string* PROTOBUF_NULLABLE value) {
|
|
2560
|
+
::google::protobuf::internal::TSanWrite(&_impl_);
|
|
2561
|
+
if (value != nullptr) {
|
|
2562
|
+
SetHasBit(_impl_._has_bits_[0], 0x00000008U);
|
|
2563
|
+
} else {
|
|
2564
|
+
ClearHasBit(_impl_._has_bits_[0], 0x00000008U);
|
|
2565
|
+
}
|
|
2566
|
+
_impl_.json_name_.SetAllocated(value, GetArena());
|
|
2567
|
+
if (::google::protobuf::internal::DebugHardenForceCopyDefaultString() && _impl_.json_name_.IsDefault()) {
|
|
2568
|
+
_impl_.json_name_.Set("", GetArena());
|
|
2569
|
+
}
|
|
2570
|
+
// @@protoc_insertion_point(field_set_allocated:google.protobuf.Field.json_name)
|
|
2571
|
+
}
|
|
2572
|
+
|
|
2573
|
+
// string default_value = 11;
|
|
2574
|
+
inline void Field::clear_default_value() {
|
|
2575
|
+
::google::protobuf::internal::TSanWrite(&_impl_);
|
|
2576
|
+
_impl_.default_value_.ClearToEmpty();
|
|
2577
|
+
ClearHasBit(_impl_._has_bits_[0], 0x00000010U);
|
|
2578
|
+
}
|
|
2579
|
+
inline const ::std::string& Field::default_value() const
|
|
2580
|
+
ABSL_ATTRIBUTE_LIFETIME_BOUND {
|
|
2581
|
+
// @@protoc_insertion_point(field_get:google.protobuf.Field.default_value)
|
|
2582
|
+
return _internal_default_value();
|
|
2583
|
+
}
|
|
2584
|
+
template <typename Arg_, typename... Args_>
|
|
2585
|
+
PROTOBUF_ALWAYS_INLINE void Field::set_default_value(Arg_&& arg, Args_... args) {
|
|
2586
|
+
::google::protobuf::internal::TSanWrite(&_impl_);
|
|
2587
|
+
SetHasBit(_impl_._has_bits_[0], 0x00000010U);
|
|
2588
|
+
_impl_.default_value_.Set(static_cast<Arg_&&>(arg), args..., GetArena());
|
|
2589
|
+
// @@protoc_insertion_point(field_set:google.protobuf.Field.default_value)
|
|
2590
|
+
}
|
|
2591
|
+
inline ::std::string* PROTOBUF_NONNULL Field::mutable_default_value()
|
|
2592
|
+
ABSL_ATTRIBUTE_LIFETIME_BOUND {
|
|
2593
|
+
SetHasBit(_impl_._has_bits_[0], 0x00000010U);
|
|
2594
|
+
::std::string* _s = _internal_mutable_default_value();
|
|
2595
|
+
// @@protoc_insertion_point(field_mutable:google.protobuf.Field.default_value)
|
|
2596
|
+
return _s;
|
|
2597
|
+
}
|
|
2598
|
+
inline const ::std::string& Field::_internal_default_value() const {
|
|
2599
|
+
::google::protobuf::internal::TSanRead(&_impl_);
|
|
2600
|
+
return _impl_.default_value_.Get();
|
|
2601
|
+
}
|
|
2602
|
+
inline void Field::_internal_set_default_value(const ::std::string& value) {
|
|
2603
|
+
::google::protobuf::internal::TSanWrite(&_impl_);
|
|
2604
|
+
_impl_.default_value_.Set(value, GetArena());
|
|
2605
|
+
}
|
|
2606
|
+
inline ::std::string* PROTOBUF_NONNULL Field::_internal_mutable_default_value() {
|
|
2607
|
+
::google::protobuf::internal::TSanWrite(&_impl_);
|
|
2608
|
+
return _impl_.default_value_.Mutable( GetArena());
|
|
2609
|
+
}
|
|
2610
|
+
inline ::std::string* PROTOBUF_NULLABLE Field::release_default_value() {
|
|
2611
|
+
::google::protobuf::internal::TSanWrite(&_impl_);
|
|
2612
|
+
// @@protoc_insertion_point(field_release:google.protobuf.Field.default_value)
|
|
2613
|
+
if (!CheckHasBit(_impl_._has_bits_[0], 0x00000010U)) {
|
|
2614
|
+
return nullptr;
|
|
2615
|
+
}
|
|
2616
|
+
ClearHasBit(_impl_._has_bits_[0], 0x00000010U);
|
|
2617
|
+
auto* released = _impl_.default_value_.Release();
|
|
2618
|
+
if (::google::protobuf::internal::DebugHardenForceCopyDefaultString()) {
|
|
2619
|
+
_impl_.default_value_.Set("", GetArena());
|
|
2620
|
+
}
|
|
2621
|
+
return released;
|
|
2622
|
+
}
|
|
2623
|
+
inline void Field::set_allocated_default_value(::std::string* PROTOBUF_NULLABLE value) {
|
|
2624
|
+
::google::protobuf::internal::TSanWrite(&_impl_);
|
|
2625
|
+
if (value != nullptr) {
|
|
2626
|
+
SetHasBit(_impl_._has_bits_[0], 0x00000010U);
|
|
2627
|
+
} else {
|
|
2628
|
+
ClearHasBit(_impl_._has_bits_[0], 0x00000010U);
|
|
2629
|
+
}
|
|
2630
|
+
_impl_.default_value_.SetAllocated(value, GetArena());
|
|
2631
|
+
if (::google::protobuf::internal::DebugHardenForceCopyDefaultString() && _impl_.default_value_.IsDefault()) {
|
|
2632
|
+
_impl_.default_value_.Set("", GetArena());
|
|
2633
|
+
}
|
|
2634
|
+
// @@protoc_insertion_point(field_set_allocated:google.protobuf.Field.default_value)
|
|
2635
|
+
}
|
|
2636
|
+
|
|
2637
|
+
// -------------------------------------------------------------------
|
|
2638
|
+
|
|
2639
|
+
// Enum
|
|
2640
|
+
|
|
2641
|
+
// string name = 1;
|
|
2642
|
+
inline void Enum::clear_name() {
|
|
2643
|
+
::google::protobuf::internal::TSanWrite(&_impl_);
|
|
2644
|
+
_impl_.name_.ClearToEmpty();
|
|
2645
|
+
ClearHasBit(_impl_._has_bits_[0], 0x00000004U);
|
|
2646
|
+
}
|
|
2647
|
+
inline const ::std::string& Enum::name() const
|
|
2648
|
+
ABSL_ATTRIBUTE_LIFETIME_BOUND {
|
|
2649
|
+
// @@protoc_insertion_point(field_get:google.protobuf.Enum.name)
|
|
2650
|
+
return _internal_name();
|
|
2651
|
+
}
|
|
2652
|
+
template <typename Arg_, typename... Args_>
|
|
2653
|
+
PROTOBUF_ALWAYS_INLINE void Enum::set_name(Arg_&& arg, Args_... args) {
|
|
2654
|
+
::google::protobuf::internal::TSanWrite(&_impl_);
|
|
2655
|
+
SetHasBit(_impl_._has_bits_[0], 0x00000004U);
|
|
2656
|
+
_impl_.name_.Set(static_cast<Arg_&&>(arg), args..., GetArena());
|
|
2657
|
+
// @@protoc_insertion_point(field_set:google.protobuf.Enum.name)
|
|
2658
|
+
}
|
|
2659
|
+
inline ::std::string* PROTOBUF_NONNULL Enum::mutable_name()
|
|
2660
|
+
ABSL_ATTRIBUTE_LIFETIME_BOUND {
|
|
2661
|
+
SetHasBit(_impl_._has_bits_[0], 0x00000004U);
|
|
2662
|
+
::std::string* _s = _internal_mutable_name();
|
|
2663
|
+
// @@protoc_insertion_point(field_mutable:google.protobuf.Enum.name)
|
|
2664
|
+
return _s;
|
|
2665
|
+
}
|
|
2666
|
+
inline const ::std::string& Enum::_internal_name() const {
|
|
2667
|
+
::google::protobuf::internal::TSanRead(&_impl_);
|
|
2668
|
+
return _impl_.name_.Get();
|
|
2669
|
+
}
|
|
2670
|
+
inline void Enum::_internal_set_name(const ::std::string& value) {
|
|
2671
|
+
::google::protobuf::internal::TSanWrite(&_impl_);
|
|
2672
|
+
_impl_.name_.Set(value, GetArena());
|
|
2673
|
+
}
|
|
2674
|
+
inline ::std::string* PROTOBUF_NONNULL Enum::_internal_mutable_name() {
|
|
2675
|
+
::google::protobuf::internal::TSanWrite(&_impl_);
|
|
2676
|
+
return _impl_.name_.Mutable( GetArena());
|
|
2677
|
+
}
|
|
2678
|
+
inline ::std::string* PROTOBUF_NULLABLE Enum::release_name() {
|
|
2679
|
+
::google::protobuf::internal::TSanWrite(&_impl_);
|
|
2680
|
+
// @@protoc_insertion_point(field_release:google.protobuf.Enum.name)
|
|
2681
|
+
if (!CheckHasBit(_impl_._has_bits_[0], 0x00000004U)) {
|
|
2682
|
+
return nullptr;
|
|
2683
|
+
}
|
|
2684
|
+
ClearHasBit(_impl_._has_bits_[0], 0x00000004U);
|
|
2685
|
+
auto* released = _impl_.name_.Release();
|
|
2686
|
+
if (::google::protobuf::internal::DebugHardenForceCopyDefaultString()) {
|
|
2687
|
+
_impl_.name_.Set("", GetArena());
|
|
2688
|
+
}
|
|
2689
|
+
return released;
|
|
2690
|
+
}
|
|
2691
|
+
inline void Enum::set_allocated_name(::std::string* PROTOBUF_NULLABLE value) {
|
|
2692
|
+
::google::protobuf::internal::TSanWrite(&_impl_);
|
|
2693
|
+
if (value != nullptr) {
|
|
2694
|
+
SetHasBit(_impl_._has_bits_[0], 0x00000004U);
|
|
2695
|
+
} else {
|
|
2696
|
+
ClearHasBit(_impl_._has_bits_[0], 0x00000004U);
|
|
2697
|
+
}
|
|
2698
|
+
_impl_.name_.SetAllocated(value, GetArena());
|
|
2699
|
+
if (::google::protobuf::internal::DebugHardenForceCopyDefaultString() && _impl_.name_.IsDefault()) {
|
|
2700
|
+
_impl_.name_.Set("", GetArena());
|
|
2701
|
+
}
|
|
2702
|
+
// @@protoc_insertion_point(field_set_allocated:google.protobuf.Enum.name)
|
|
2703
|
+
}
|
|
2704
|
+
|
|
2705
|
+
// repeated .google.protobuf.EnumValue enumvalue = 2;
|
|
2706
|
+
inline int Enum::_internal_enumvalue_size() const {
|
|
2707
|
+
return _internal_enumvalue().size();
|
|
2708
|
+
}
|
|
2709
|
+
inline int Enum::enumvalue_size() const {
|
|
2710
|
+
return _internal_enumvalue_size();
|
|
2711
|
+
}
|
|
2712
|
+
inline void Enum::clear_enumvalue() {
|
|
2713
|
+
::google::protobuf::internal::TSanWrite(&_impl_);
|
|
2714
|
+
_impl_.enumvalue_.Clear();
|
|
2715
|
+
ClearHasBit(_impl_._has_bits_[0], 0x00000001U);
|
|
2716
|
+
}
|
|
2717
|
+
inline const ::google::protobuf::EnumValue& Enum::enumvalue(int index) const
|
|
2718
|
+
ABSL_ATTRIBUTE_LIFETIME_BOUND {
|
|
2719
|
+
// @@protoc_insertion_point(field_get:google.protobuf.Enum.enumvalue)
|
|
2720
|
+
return _internal_enumvalue().Get(index);
|
|
2721
|
+
}
|
|
2722
|
+
inline ::google::protobuf::EnumValue* PROTOBUF_NONNULL Enum::mutable_enumvalue(int index)
|
|
2723
|
+
ABSL_ATTRIBUTE_LIFETIME_BOUND {
|
|
2724
|
+
// @@protoc_insertion_point(field_mutable:google.protobuf.Enum.enumvalue)
|
|
2725
|
+
return _internal_mutable_enumvalue()->Mutable(index);
|
|
2726
|
+
}
|
|
2727
|
+
inline ::google::protobuf::EnumValue* PROTOBUF_NONNULL Enum::add_enumvalue()
|
|
2728
|
+
ABSL_ATTRIBUTE_LIFETIME_BOUND {
|
|
2729
|
+
::google::protobuf::internal::TSanWrite(&_impl_);
|
|
2730
|
+
::google::protobuf::EnumValue* _add =
|
|
2731
|
+
_internal_mutable_enumvalue()->InternalAddWithArena(
|
|
2732
|
+
::google::protobuf::MessageLite::internal_visibility(), GetArena());
|
|
2733
|
+
SetHasBit(_impl_._has_bits_[0], 0x00000001U);
|
|
2734
|
+
// @@protoc_insertion_point(field_add:google.protobuf.Enum.enumvalue)
|
|
2735
|
+
return _add;
|
|
2736
|
+
}
|
|
2737
|
+
inline const ::google::protobuf::RepeatedPtrField<::google::protobuf::EnumValue>& Enum::enumvalue() const
|
|
2738
|
+
ABSL_ATTRIBUTE_LIFETIME_BOUND {
|
|
2739
|
+
// @@protoc_insertion_point(field_list:google.protobuf.Enum.enumvalue)
|
|
2740
|
+
return _internal_enumvalue();
|
|
2741
|
+
}
|
|
2742
|
+
inline ::google::protobuf::RepeatedPtrField<::google::protobuf::EnumValue>* PROTOBUF_NONNULL
|
|
2743
|
+
Enum::mutable_enumvalue() ABSL_ATTRIBUTE_LIFETIME_BOUND {
|
|
2744
|
+
SetHasBit(_impl_._has_bits_[0], 0x00000001U);
|
|
2745
|
+
// @@protoc_insertion_point(field_mutable_list:google.protobuf.Enum.enumvalue)
|
|
2746
|
+
::google::protobuf::internal::TSanWrite(&_impl_);
|
|
2747
|
+
return _internal_mutable_enumvalue();
|
|
2748
|
+
}
|
|
2749
|
+
inline const ::google::protobuf::RepeatedPtrField<::google::protobuf::EnumValue>&
|
|
2750
|
+
Enum::_internal_enumvalue() const {
|
|
2751
|
+
::google::protobuf::internal::TSanRead(&_impl_);
|
|
2752
|
+
return _impl_.enumvalue_;
|
|
2753
|
+
}
|
|
2754
|
+
inline ::google::protobuf::RepeatedPtrField<::google::protobuf::EnumValue>* PROTOBUF_NONNULL
|
|
2755
|
+
Enum::_internal_mutable_enumvalue() {
|
|
2756
|
+
::google::protobuf::internal::TSanRead(&_impl_);
|
|
2757
|
+
return &_impl_.enumvalue_;
|
|
2758
|
+
}
|
|
2759
|
+
|
|
2760
|
+
// repeated .google.protobuf.Option options = 3;
|
|
2761
|
+
inline int Enum::_internal_options_size() const {
|
|
2762
|
+
return _internal_options().size();
|
|
2763
|
+
}
|
|
2764
|
+
inline int Enum::options_size() const {
|
|
2765
|
+
return _internal_options_size();
|
|
2766
|
+
}
|
|
2767
|
+
inline void Enum::clear_options() {
|
|
2768
|
+
::google::protobuf::internal::TSanWrite(&_impl_);
|
|
2769
|
+
_impl_.options_.Clear();
|
|
2770
|
+
ClearHasBit(_impl_._has_bits_[0], 0x00000002U);
|
|
2771
|
+
}
|
|
2772
|
+
inline const ::google::protobuf::Option& Enum::options(int index) const
|
|
2773
|
+
ABSL_ATTRIBUTE_LIFETIME_BOUND {
|
|
2774
|
+
// @@protoc_insertion_point(field_get:google.protobuf.Enum.options)
|
|
2775
|
+
return _internal_options().Get(index);
|
|
2776
|
+
}
|
|
2777
|
+
inline ::google::protobuf::Option* PROTOBUF_NONNULL Enum::mutable_options(int index)
|
|
2778
|
+
ABSL_ATTRIBUTE_LIFETIME_BOUND {
|
|
2779
|
+
// @@protoc_insertion_point(field_mutable:google.protobuf.Enum.options)
|
|
2780
|
+
return _internal_mutable_options()->Mutable(index);
|
|
2781
|
+
}
|
|
2782
|
+
inline ::google::protobuf::Option* PROTOBUF_NONNULL Enum::add_options()
|
|
2783
|
+
ABSL_ATTRIBUTE_LIFETIME_BOUND {
|
|
2784
|
+
::google::protobuf::internal::TSanWrite(&_impl_);
|
|
2785
|
+
::google::protobuf::Option* _add =
|
|
2786
|
+
_internal_mutable_options()->InternalAddWithArena(
|
|
2787
|
+
::google::protobuf::MessageLite::internal_visibility(), GetArena());
|
|
2788
|
+
SetHasBit(_impl_._has_bits_[0], 0x00000002U);
|
|
2789
|
+
// @@protoc_insertion_point(field_add:google.protobuf.Enum.options)
|
|
2790
|
+
return _add;
|
|
2791
|
+
}
|
|
2792
|
+
inline const ::google::protobuf::RepeatedPtrField<::google::protobuf::Option>& Enum::options() const
|
|
2793
|
+
ABSL_ATTRIBUTE_LIFETIME_BOUND {
|
|
2794
|
+
// @@protoc_insertion_point(field_list:google.protobuf.Enum.options)
|
|
2795
|
+
return _internal_options();
|
|
2796
|
+
}
|
|
2797
|
+
inline ::google::protobuf::RepeatedPtrField<::google::protobuf::Option>* PROTOBUF_NONNULL
|
|
2798
|
+
Enum::mutable_options() ABSL_ATTRIBUTE_LIFETIME_BOUND {
|
|
2799
|
+
SetHasBit(_impl_._has_bits_[0], 0x00000002U);
|
|
2800
|
+
// @@protoc_insertion_point(field_mutable_list:google.protobuf.Enum.options)
|
|
2801
|
+
::google::protobuf::internal::TSanWrite(&_impl_);
|
|
2802
|
+
return _internal_mutable_options();
|
|
2803
|
+
}
|
|
2804
|
+
inline const ::google::protobuf::RepeatedPtrField<::google::protobuf::Option>&
|
|
2805
|
+
Enum::_internal_options() const {
|
|
2806
|
+
::google::protobuf::internal::TSanRead(&_impl_);
|
|
2807
|
+
return _impl_.options_;
|
|
2808
|
+
}
|
|
2809
|
+
inline ::google::protobuf::RepeatedPtrField<::google::protobuf::Option>* PROTOBUF_NONNULL
|
|
2810
|
+
Enum::_internal_mutable_options() {
|
|
2811
|
+
::google::protobuf::internal::TSanRead(&_impl_);
|
|
2812
|
+
return &_impl_.options_;
|
|
2813
|
+
}
|
|
2814
|
+
|
|
2815
|
+
// .google.protobuf.SourceContext source_context = 4;
|
|
2816
|
+
inline bool Enum::has_source_context() const {
|
|
2817
|
+
bool value = CheckHasBit(_impl_._has_bits_[0], 0x00000010U);
|
|
2818
|
+
PROTOBUF_ASSUME(!value || _impl_.source_context_ != nullptr);
|
|
2819
|
+
return value;
|
|
2820
|
+
}
|
|
2821
|
+
inline const ::google::protobuf::SourceContext& Enum::_internal_source_context() const {
|
|
2822
|
+
::google::protobuf::internal::TSanRead(&_impl_);
|
|
2823
|
+
const ::google::protobuf::SourceContext* p = _impl_.source_context_;
|
|
2824
|
+
return p != nullptr ? *p : *::google::protobuf::internal::MessageGlobalsBase::ToDefaultInstance<::google::protobuf::SourceContext>(&::google::protobuf::SourceContext_globals_);
|
|
2825
|
+
}
|
|
2826
|
+
inline const ::google::protobuf::SourceContext& Enum::source_context() const ABSL_ATTRIBUTE_LIFETIME_BOUND {
|
|
2827
|
+
// @@protoc_insertion_point(field_get:google.protobuf.Enum.source_context)
|
|
2828
|
+
return _internal_source_context();
|
|
2829
|
+
}
|
|
2830
|
+
inline void Enum::unsafe_arena_set_allocated_source_context(
|
|
2831
|
+
::google::protobuf::SourceContext* PROTOBUF_NULLABLE value) {
|
|
2832
|
+
::google::protobuf::internal::TSanWrite(&_impl_);
|
|
2833
|
+
if (GetArena() == nullptr) {
|
|
2834
|
+
delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.source_context_);
|
|
2835
|
+
}
|
|
2836
|
+
_impl_.source_context_ = reinterpret_cast<::google::protobuf::SourceContext*>(value);
|
|
2837
|
+
if (value != nullptr) {
|
|
2838
|
+
SetHasBit(_impl_._has_bits_[0], 0x00000010U);
|
|
2839
|
+
} else {
|
|
2840
|
+
ClearHasBit(_impl_._has_bits_[0], 0x00000010U);
|
|
2841
|
+
}
|
|
2842
|
+
// @@protoc_insertion_point(field_unsafe_arena_set_allocated:google.protobuf.Enum.source_context)
|
|
2843
|
+
}
|
|
2844
|
+
inline ::google::protobuf::SourceContext* PROTOBUF_NULLABLE Enum::release_source_context() {
|
|
2845
|
+
::google::protobuf::internal::TSanWrite(&_impl_);
|
|
2846
|
+
|
|
2847
|
+
ClearHasBit(_impl_._has_bits_[0], 0x00000010U);
|
|
2848
|
+
::google::protobuf::SourceContext* released = _impl_.source_context_;
|
|
2849
|
+
_impl_.source_context_ = nullptr;
|
|
2850
|
+
if (::google::protobuf::internal::DebugHardenForceCopyInRelease()) {
|
|
2851
|
+
auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released);
|
|
2852
|
+
released = ::google::protobuf::internal::DuplicateIfNonNull(released);
|
|
2853
|
+
if (GetArena() == nullptr) {
|
|
2854
|
+
delete old;
|
|
2855
|
+
}
|
|
2856
|
+
} else {
|
|
2857
|
+
if (GetArena() != nullptr) {
|
|
2858
|
+
released = ::google::protobuf::internal::DuplicateIfNonNull(released);
|
|
2859
|
+
}
|
|
2860
|
+
}
|
|
2861
|
+
return released;
|
|
2862
|
+
}
|
|
2863
|
+
inline ::google::protobuf::SourceContext* PROTOBUF_NULLABLE Enum::unsafe_arena_release_source_context() {
|
|
2864
|
+
::google::protobuf::internal::TSanWrite(&_impl_);
|
|
2865
|
+
// @@protoc_insertion_point(field_release:google.protobuf.Enum.source_context)
|
|
2866
|
+
|
|
2867
|
+
ClearHasBit(_impl_._has_bits_[0], 0x00000010U);
|
|
2868
|
+
::google::protobuf::SourceContext* temp = _impl_.source_context_;
|
|
2869
|
+
_impl_.source_context_ = nullptr;
|
|
2870
|
+
return temp;
|
|
2871
|
+
}
|
|
2872
|
+
inline ::google::protobuf::SourceContext* PROTOBUF_NONNULL Enum::_internal_mutable_source_context() {
|
|
2873
|
+
::google::protobuf::internal::TSanWrite(&_impl_);
|
|
2874
|
+
if (_impl_.source_context_ == nullptr) {
|
|
2875
|
+
auto* p = ::google::protobuf::Message::DefaultConstruct<::google::protobuf::SourceContext>(GetArena());
|
|
2876
|
+
_impl_.source_context_ = reinterpret_cast<::google::protobuf::SourceContext*>(p);
|
|
2877
|
+
}
|
|
2878
|
+
return _impl_.source_context_;
|
|
2879
|
+
}
|
|
2880
|
+
inline ::google::protobuf::SourceContext* PROTOBUF_NONNULL Enum::mutable_source_context()
|
|
2881
|
+
ABSL_ATTRIBUTE_LIFETIME_BOUND {
|
|
2882
|
+
SetHasBit(_impl_._has_bits_[0], 0x00000010U);
|
|
2883
|
+
::google::protobuf::SourceContext* _msg = _internal_mutable_source_context();
|
|
2884
|
+
// @@protoc_insertion_point(field_mutable:google.protobuf.Enum.source_context)
|
|
2885
|
+
return _msg;
|
|
2886
|
+
}
|
|
2887
|
+
inline void Enum::set_allocated_source_context(::google::protobuf::SourceContext* PROTOBUF_NULLABLE value) {
|
|
2888
|
+
::google::protobuf::Arena* message_arena = GetArena();
|
|
2889
|
+
::google::protobuf::internal::TSanWrite(&_impl_);
|
|
2890
|
+
if (message_arena == nullptr) {
|
|
2891
|
+
delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.source_context_);
|
|
2892
|
+
}
|
|
2893
|
+
|
|
2894
|
+
if (value != nullptr) {
|
|
2895
|
+
::google::protobuf::Arena* submessage_arena = reinterpret_cast<::google::protobuf::Message*>(value)->GetArena();
|
|
2896
|
+
if (message_arena != submessage_arena) {
|
|
2897
|
+
value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena);
|
|
2898
|
+
}
|
|
2899
|
+
SetHasBit(_impl_._has_bits_[0], 0x00000010U);
|
|
2900
|
+
} else {
|
|
2901
|
+
ClearHasBit(_impl_._has_bits_[0], 0x00000010U);
|
|
2902
|
+
}
|
|
2903
|
+
|
|
2904
|
+
_impl_.source_context_ = reinterpret_cast<::google::protobuf::SourceContext*>(value);
|
|
2905
|
+
// @@protoc_insertion_point(field_set_allocated:google.protobuf.Enum.source_context)
|
|
2906
|
+
}
|
|
2907
|
+
|
|
2908
|
+
// .google.protobuf.Syntax syntax = 5;
|
|
2909
|
+
inline void Enum::clear_syntax() {
|
|
2910
|
+
::google::protobuf::internal::TSanWrite(&_impl_);
|
|
2911
|
+
_impl_.syntax_ = 0;
|
|
2912
|
+
ClearHasBit(_impl_._has_bits_[0], 0x00000020U);
|
|
2913
|
+
}
|
|
2914
|
+
inline ::google::protobuf::Syntax Enum::syntax() const {
|
|
2915
|
+
// @@protoc_insertion_point(field_get:google.protobuf.Enum.syntax)
|
|
2916
|
+
return _internal_syntax();
|
|
2917
|
+
}
|
|
2918
|
+
inline void Enum::set_syntax(::google::protobuf::Syntax value) {
|
|
2919
|
+
_internal_set_syntax(value);
|
|
2920
|
+
SetHasBit(_impl_._has_bits_[0], 0x00000020U);
|
|
2921
|
+
// @@protoc_insertion_point(field_set:google.protobuf.Enum.syntax)
|
|
2922
|
+
}
|
|
2923
|
+
inline ::google::protobuf::Syntax Enum::_internal_syntax() const {
|
|
2924
|
+
::google::protobuf::internal::TSanRead(&_impl_);
|
|
2925
|
+
return static_cast<::google::protobuf::Syntax>(_impl_.syntax_);
|
|
2926
|
+
}
|
|
2927
|
+
inline void Enum::_internal_set_syntax(::google::protobuf::Syntax value) {
|
|
2928
|
+
::google::protobuf::internal::TSanWrite(&_impl_);
|
|
2929
|
+
_impl_.syntax_ = value;
|
|
2930
|
+
}
|
|
2931
|
+
|
|
2932
|
+
// string edition = 6;
|
|
2933
|
+
inline void Enum::clear_edition() {
|
|
2934
|
+
::google::protobuf::internal::TSanWrite(&_impl_);
|
|
2935
|
+
_impl_.edition_.ClearToEmpty();
|
|
2936
|
+
ClearHasBit(_impl_._has_bits_[0], 0x00000008U);
|
|
2937
|
+
}
|
|
2938
|
+
inline const ::std::string& Enum::edition() const
|
|
2939
|
+
ABSL_ATTRIBUTE_LIFETIME_BOUND {
|
|
2940
|
+
// @@protoc_insertion_point(field_get:google.protobuf.Enum.edition)
|
|
2941
|
+
return _internal_edition();
|
|
2942
|
+
}
|
|
2943
|
+
template <typename Arg_, typename... Args_>
|
|
2944
|
+
PROTOBUF_ALWAYS_INLINE void Enum::set_edition(Arg_&& arg, Args_... args) {
|
|
2945
|
+
::google::protobuf::internal::TSanWrite(&_impl_);
|
|
2946
|
+
SetHasBit(_impl_._has_bits_[0], 0x00000008U);
|
|
2947
|
+
_impl_.edition_.Set(static_cast<Arg_&&>(arg), args..., GetArena());
|
|
2948
|
+
// @@protoc_insertion_point(field_set:google.protobuf.Enum.edition)
|
|
2949
|
+
}
|
|
2950
|
+
inline ::std::string* PROTOBUF_NONNULL Enum::mutable_edition()
|
|
2951
|
+
ABSL_ATTRIBUTE_LIFETIME_BOUND {
|
|
2952
|
+
SetHasBit(_impl_._has_bits_[0], 0x00000008U);
|
|
2953
|
+
::std::string* _s = _internal_mutable_edition();
|
|
2954
|
+
// @@protoc_insertion_point(field_mutable:google.protobuf.Enum.edition)
|
|
2955
|
+
return _s;
|
|
2956
|
+
}
|
|
2957
|
+
inline const ::std::string& Enum::_internal_edition() const {
|
|
2958
|
+
::google::protobuf::internal::TSanRead(&_impl_);
|
|
2959
|
+
return _impl_.edition_.Get();
|
|
2960
|
+
}
|
|
2961
|
+
inline void Enum::_internal_set_edition(const ::std::string& value) {
|
|
2962
|
+
::google::protobuf::internal::TSanWrite(&_impl_);
|
|
2963
|
+
_impl_.edition_.Set(value, GetArena());
|
|
2964
|
+
}
|
|
2965
|
+
inline ::std::string* PROTOBUF_NONNULL Enum::_internal_mutable_edition() {
|
|
2966
|
+
::google::protobuf::internal::TSanWrite(&_impl_);
|
|
2967
|
+
return _impl_.edition_.Mutable( GetArena());
|
|
2968
|
+
}
|
|
2969
|
+
inline ::std::string* PROTOBUF_NULLABLE Enum::release_edition() {
|
|
2970
|
+
::google::protobuf::internal::TSanWrite(&_impl_);
|
|
2971
|
+
// @@protoc_insertion_point(field_release:google.protobuf.Enum.edition)
|
|
2972
|
+
if (!CheckHasBit(_impl_._has_bits_[0], 0x00000008U)) {
|
|
2973
|
+
return nullptr;
|
|
2974
|
+
}
|
|
2975
|
+
ClearHasBit(_impl_._has_bits_[0], 0x00000008U);
|
|
2976
|
+
auto* released = _impl_.edition_.Release();
|
|
2977
|
+
if (::google::protobuf::internal::DebugHardenForceCopyDefaultString()) {
|
|
2978
|
+
_impl_.edition_.Set("", GetArena());
|
|
2979
|
+
}
|
|
2980
|
+
return released;
|
|
2981
|
+
}
|
|
2982
|
+
inline void Enum::set_allocated_edition(::std::string* PROTOBUF_NULLABLE value) {
|
|
2983
|
+
::google::protobuf::internal::TSanWrite(&_impl_);
|
|
2984
|
+
if (value != nullptr) {
|
|
2985
|
+
SetHasBit(_impl_._has_bits_[0], 0x00000008U);
|
|
2986
|
+
} else {
|
|
2987
|
+
ClearHasBit(_impl_._has_bits_[0], 0x00000008U);
|
|
2988
|
+
}
|
|
2989
|
+
_impl_.edition_.SetAllocated(value, GetArena());
|
|
2990
|
+
if (::google::protobuf::internal::DebugHardenForceCopyDefaultString() && _impl_.edition_.IsDefault()) {
|
|
2991
|
+
_impl_.edition_.Set("", GetArena());
|
|
2992
|
+
}
|
|
2993
|
+
// @@protoc_insertion_point(field_set_allocated:google.protobuf.Enum.edition)
|
|
2994
|
+
}
|
|
2995
|
+
|
|
2996
|
+
// -------------------------------------------------------------------
|
|
2997
|
+
|
|
2998
|
+
// EnumValue
|
|
2999
|
+
|
|
3000
|
+
// string name = 1;
|
|
3001
|
+
inline void EnumValue::clear_name() {
|
|
3002
|
+
::google::protobuf::internal::TSanWrite(&_impl_);
|
|
3003
|
+
_impl_.name_.ClearToEmpty();
|
|
3004
|
+
ClearHasBit(_impl_._has_bits_[0], 0x00000002U);
|
|
3005
|
+
}
|
|
3006
|
+
inline const ::std::string& EnumValue::name() const
|
|
3007
|
+
ABSL_ATTRIBUTE_LIFETIME_BOUND {
|
|
3008
|
+
// @@protoc_insertion_point(field_get:google.protobuf.EnumValue.name)
|
|
3009
|
+
return _internal_name();
|
|
3010
|
+
}
|
|
3011
|
+
template <typename Arg_, typename... Args_>
|
|
3012
|
+
PROTOBUF_ALWAYS_INLINE void EnumValue::set_name(Arg_&& arg, Args_... args) {
|
|
3013
|
+
::google::protobuf::internal::TSanWrite(&_impl_);
|
|
3014
|
+
SetHasBit(_impl_._has_bits_[0], 0x00000002U);
|
|
3015
|
+
_impl_.name_.Set(static_cast<Arg_&&>(arg), args..., GetArena());
|
|
3016
|
+
// @@protoc_insertion_point(field_set:google.protobuf.EnumValue.name)
|
|
3017
|
+
}
|
|
3018
|
+
inline ::std::string* PROTOBUF_NONNULL EnumValue::mutable_name()
|
|
3019
|
+
ABSL_ATTRIBUTE_LIFETIME_BOUND {
|
|
3020
|
+
SetHasBit(_impl_._has_bits_[0], 0x00000002U);
|
|
3021
|
+
::std::string* _s = _internal_mutable_name();
|
|
3022
|
+
// @@protoc_insertion_point(field_mutable:google.protobuf.EnumValue.name)
|
|
3023
|
+
return _s;
|
|
3024
|
+
}
|
|
3025
|
+
inline const ::std::string& EnumValue::_internal_name() const {
|
|
3026
|
+
::google::protobuf::internal::TSanRead(&_impl_);
|
|
3027
|
+
return _impl_.name_.Get();
|
|
3028
|
+
}
|
|
3029
|
+
inline void EnumValue::_internal_set_name(const ::std::string& value) {
|
|
3030
|
+
::google::protobuf::internal::TSanWrite(&_impl_);
|
|
3031
|
+
_impl_.name_.Set(value, GetArena());
|
|
3032
|
+
}
|
|
3033
|
+
inline ::std::string* PROTOBUF_NONNULL EnumValue::_internal_mutable_name() {
|
|
3034
|
+
::google::protobuf::internal::TSanWrite(&_impl_);
|
|
3035
|
+
return _impl_.name_.Mutable( GetArena());
|
|
3036
|
+
}
|
|
3037
|
+
inline ::std::string* PROTOBUF_NULLABLE EnumValue::release_name() {
|
|
3038
|
+
::google::protobuf::internal::TSanWrite(&_impl_);
|
|
3039
|
+
// @@protoc_insertion_point(field_release:google.protobuf.EnumValue.name)
|
|
3040
|
+
if (!CheckHasBit(_impl_._has_bits_[0], 0x00000002U)) {
|
|
3041
|
+
return nullptr;
|
|
3042
|
+
}
|
|
3043
|
+
ClearHasBit(_impl_._has_bits_[0], 0x00000002U);
|
|
3044
|
+
auto* released = _impl_.name_.Release();
|
|
3045
|
+
if (::google::protobuf::internal::DebugHardenForceCopyDefaultString()) {
|
|
3046
|
+
_impl_.name_.Set("", GetArena());
|
|
3047
|
+
}
|
|
3048
|
+
return released;
|
|
3049
|
+
}
|
|
3050
|
+
inline void EnumValue::set_allocated_name(::std::string* PROTOBUF_NULLABLE value) {
|
|
3051
|
+
::google::protobuf::internal::TSanWrite(&_impl_);
|
|
3052
|
+
if (value != nullptr) {
|
|
3053
|
+
SetHasBit(_impl_._has_bits_[0], 0x00000002U);
|
|
3054
|
+
} else {
|
|
3055
|
+
ClearHasBit(_impl_._has_bits_[0], 0x00000002U);
|
|
3056
|
+
}
|
|
3057
|
+
_impl_.name_.SetAllocated(value, GetArena());
|
|
3058
|
+
if (::google::protobuf::internal::DebugHardenForceCopyDefaultString() && _impl_.name_.IsDefault()) {
|
|
3059
|
+
_impl_.name_.Set("", GetArena());
|
|
3060
|
+
}
|
|
3061
|
+
// @@protoc_insertion_point(field_set_allocated:google.protobuf.EnumValue.name)
|
|
3062
|
+
}
|
|
3063
|
+
|
|
3064
|
+
// int32 number = 2;
|
|
3065
|
+
inline void EnumValue::clear_number() {
|
|
3066
|
+
::google::protobuf::internal::TSanWrite(&_impl_);
|
|
3067
|
+
_impl_.number_ = 0;
|
|
3068
|
+
ClearHasBit(_impl_._has_bits_[0], 0x00000004U);
|
|
3069
|
+
}
|
|
3070
|
+
inline ::int32_t EnumValue::number() const {
|
|
3071
|
+
// @@protoc_insertion_point(field_get:google.protobuf.EnumValue.number)
|
|
3072
|
+
return _internal_number();
|
|
3073
|
+
}
|
|
3074
|
+
inline void EnumValue::set_number(::int32_t value) {
|
|
3075
|
+
_internal_set_number(value);
|
|
3076
|
+
SetHasBit(_impl_._has_bits_[0], 0x00000004U);
|
|
3077
|
+
// @@protoc_insertion_point(field_set:google.protobuf.EnumValue.number)
|
|
3078
|
+
}
|
|
3079
|
+
inline ::int32_t EnumValue::_internal_number() const {
|
|
3080
|
+
::google::protobuf::internal::TSanRead(&_impl_);
|
|
3081
|
+
return _impl_.number_;
|
|
3082
|
+
}
|
|
3083
|
+
inline void EnumValue::_internal_set_number(::int32_t value) {
|
|
3084
|
+
::google::protobuf::internal::TSanWrite(&_impl_);
|
|
3085
|
+
_impl_.number_ = value;
|
|
3086
|
+
}
|
|
3087
|
+
|
|
3088
|
+
// repeated .google.protobuf.Option options = 3;
|
|
3089
|
+
inline int EnumValue::_internal_options_size() const {
|
|
3090
|
+
return _internal_options().size();
|
|
3091
|
+
}
|
|
3092
|
+
inline int EnumValue::options_size() const {
|
|
3093
|
+
return _internal_options_size();
|
|
3094
|
+
}
|
|
3095
|
+
inline void EnumValue::clear_options() {
|
|
3096
|
+
::google::protobuf::internal::TSanWrite(&_impl_);
|
|
3097
|
+
_impl_.options_.Clear();
|
|
3098
|
+
ClearHasBit(_impl_._has_bits_[0], 0x00000001U);
|
|
3099
|
+
}
|
|
3100
|
+
inline const ::google::protobuf::Option& EnumValue::options(int index) const
|
|
3101
|
+
ABSL_ATTRIBUTE_LIFETIME_BOUND {
|
|
3102
|
+
// @@protoc_insertion_point(field_get:google.protobuf.EnumValue.options)
|
|
3103
|
+
return _internal_options().Get(index);
|
|
3104
|
+
}
|
|
3105
|
+
inline ::google::protobuf::Option* PROTOBUF_NONNULL EnumValue::mutable_options(int index)
|
|
3106
|
+
ABSL_ATTRIBUTE_LIFETIME_BOUND {
|
|
3107
|
+
// @@protoc_insertion_point(field_mutable:google.protobuf.EnumValue.options)
|
|
3108
|
+
return _internal_mutable_options()->Mutable(index);
|
|
3109
|
+
}
|
|
3110
|
+
inline ::google::protobuf::Option* PROTOBUF_NONNULL EnumValue::add_options()
|
|
3111
|
+
ABSL_ATTRIBUTE_LIFETIME_BOUND {
|
|
3112
|
+
::google::protobuf::internal::TSanWrite(&_impl_);
|
|
3113
|
+
::google::protobuf::Option* _add =
|
|
3114
|
+
_internal_mutable_options()->InternalAddWithArena(
|
|
3115
|
+
::google::protobuf::MessageLite::internal_visibility(), GetArena());
|
|
3116
|
+
SetHasBit(_impl_._has_bits_[0], 0x00000001U);
|
|
3117
|
+
// @@protoc_insertion_point(field_add:google.protobuf.EnumValue.options)
|
|
3118
|
+
return _add;
|
|
3119
|
+
}
|
|
3120
|
+
inline const ::google::protobuf::RepeatedPtrField<::google::protobuf::Option>& EnumValue::options() const
|
|
3121
|
+
ABSL_ATTRIBUTE_LIFETIME_BOUND {
|
|
3122
|
+
// @@protoc_insertion_point(field_list:google.protobuf.EnumValue.options)
|
|
3123
|
+
return _internal_options();
|
|
3124
|
+
}
|
|
3125
|
+
inline ::google::protobuf::RepeatedPtrField<::google::protobuf::Option>* PROTOBUF_NONNULL
|
|
3126
|
+
EnumValue::mutable_options() ABSL_ATTRIBUTE_LIFETIME_BOUND {
|
|
3127
|
+
SetHasBit(_impl_._has_bits_[0], 0x00000001U);
|
|
3128
|
+
// @@protoc_insertion_point(field_mutable_list:google.protobuf.EnumValue.options)
|
|
3129
|
+
::google::protobuf::internal::TSanWrite(&_impl_);
|
|
3130
|
+
return _internal_mutable_options();
|
|
3131
|
+
}
|
|
3132
|
+
inline const ::google::protobuf::RepeatedPtrField<::google::protobuf::Option>&
|
|
3133
|
+
EnumValue::_internal_options() const {
|
|
3134
|
+
::google::protobuf::internal::TSanRead(&_impl_);
|
|
3135
|
+
return _impl_.options_;
|
|
3136
|
+
}
|
|
3137
|
+
inline ::google::protobuf::RepeatedPtrField<::google::protobuf::Option>* PROTOBUF_NONNULL
|
|
3138
|
+
EnumValue::_internal_mutable_options() {
|
|
3139
|
+
::google::protobuf::internal::TSanRead(&_impl_);
|
|
3140
|
+
return &_impl_.options_;
|
|
3141
|
+
}
|
|
3142
|
+
|
|
3143
|
+
// -------------------------------------------------------------------
|
|
3144
|
+
|
|
3145
|
+
// Option
|
|
3146
|
+
|
|
3147
|
+
// string name = 1;
|
|
3148
|
+
inline void Option::clear_name() {
|
|
3149
|
+
::google::protobuf::internal::TSanWrite(&_impl_);
|
|
3150
|
+
_impl_.name_.ClearToEmpty();
|
|
3151
|
+
ClearHasBit(_impl_._has_bits_[0], 0x00000001U);
|
|
3152
|
+
}
|
|
3153
|
+
inline const ::std::string& Option::name() const
|
|
3154
|
+
ABSL_ATTRIBUTE_LIFETIME_BOUND {
|
|
3155
|
+
// @@protoc_insertion_point(field_get:google.protobuf.Option.name)
|
|
3156
|
+
return _internal_name();
|
|
3157
|
+
}
|
|
3158
|
+
template <typename Arg_, typename... Args_>
|
|
3159
|
+
PROTOBUF_ALWAYS_INLINE void Option::set_name(Arg_&& arg, Args_... args) {
|
|
3160
|
+
::google::protobuf::internal::TSanWrite(&_impl_);
|
|
3161
|
+
SetHasBit(_impl_._has_bits_[0], 0x00000001U);
|
|
3162
|
+
_impl_.name_.Set(static_cast<Arg_&&>(arg), args..., GetArena());
|
|
3163
|
+
// @@protoc_insertion_point(field_set:google.protobuf.Option.name)
|
|
3164
|
+
}
|
|
3165
|
+
inline ::std::string* PROTOBUF_NONNULL Option::mutable_name()
|
|
3166
|
+
ABSL_ATTRIBUTE_LIFETIME_BOUND {
|
|
3167
|
+
SetHasBit(_impl_._has_bits_[0], 0x00000001U);
|
|
3168
|
+
::std::string* _s = _internal_mutable_name();
|
|
3169
|
+
// @@protoc_insertion_point(field_mutable:google.protobuf.Option.name)
|
|
3170
|
+
return _s;
|
|
3171
|
+
}
|
|
3172
|
+
inline const ::std::string& Option::_internal_name() const {
|
|
3173
|
+
::google::protobuf::internal::TSanRead(&_impl_);
|
|
3174
|
+
return _impl_.name_.Get();
|
|
3175
|
+
}
|
|
3176
|
+
inline void Option::_internal_set_name(const ::std::string& value) {
|
|
3177
|
+
::google::protobuf::internal::TSanWrite(&_impl_);
|
|
3178
|
+
_impl_.name_.Set(value, GetArena());
|
|
3179
|
+
}
|
|
3180
|
+
inline ::std::string* PROTOBUF_NONNULL Option::_internal_mutable_name() {
|
|
3181
|
+
::google::protobuf::internal::TSanWrite(&_impl_);
|
|
3182
|
+
return _impl_.name_.Mutable( GetArena());
|
|
3183
|
+
}
|
|
3184
|
+
inline ::std::string* PROTOBUF_NULLABLE Option::release_name() {
|
|
3185
|
+
::google::protobuf::internal::TSanWrite(&_impl_);
|
|
3186
|
+
// @@protoc_insertion_point(field_release:google.protobuf.Option.name)
|
|
3187
|
+
if (!CheckHasBit(_impl_._has_bits_[0], 0x00000001U)) {
|
|
3188
|
+
return nullptr;
|
|
3189
|
+
}
|
|
3190
|
+
ClearHasBit(_impl_._has_bits_[0], 0x00000001U);
|
|
3191
|
+
auto* released = _impl_.name_.Release();
|
|
3192
|
+
if (::google::protobuf::internal::DebugHardenForceCopyDefaultString()) {
|
|
3193
|
+
_impl_.name_.Set("", GetArena());
|
|
3194
|
+
}
|
|
3195
|
+
return released;
|
|
3196
|
+
}
|
|
3197
|
+
inline void Option::set_allocated_name(::std::string* PROTOBUF_NULLABLE value) {
|
|
3198
|
+
::google::protobuf::internal::TSanWrite(&_impl_);
|
|
3199
|
+
if (value != nullptr) {
|
|
3200
|
+
SetHasBit(_impl_._has_bits_[0], 0x00000001U);
|
|
3201
|
+
} else {
|
|
3202
|
+
ClearHasBit(_impl_._has_bits_[0], 0x00000001U);
|
|
3203
|
+
}
|
|
3204
|
+
_impl_.name_.SetAllocated(value, GetArena());
|
|
3205
|
+
if (::google::protobuf::internal::DebugHardenForceCopyDefaultString() && _impl_.name_.IsDefault()) {
|
|
3206
|
+
_impl_.name_.Set("", GetArena());
|
|
3207
|
+
}
|
|
3208
|
+
// @@protoc_insertion_point(field_set_allocated:google.protobuf.Option.name)
|
|
3209
|
+
}
|
|
3210
|
+
|
|
3211
|
+
// .google.protobuf.Any value = 2;
|
|
3212
|
+
inline bool Option::has_value() const {
|
|
3213
|
+
bool value = CheckHasBit(_impl_._has_bits_[0], 0x00000002U);
|
|
3214
|
+
PROTOBUF_ASSUME(!value || _impl_.value_ != nullptr);
|
|
3215
|
+
return value;
|
|
3216
|
+
}
|
|
3217
|
+
inline const ::google::protobuf::Any& Option::_internal_value() const {
|
|
3218
|
+
::google::protobuf::internal::TSanRead(&_impl_);
|
|
3219
|
+
const ::google::protobuf::Any* p = _impl_.value_;
|
|
3220
|
+
return p != nullptr ? *p : *::google::protobuf::internal::MessageGlobalsBase::ToDefaultInstance<::google::protobuf::Any>(&::google::protobuf::Any_globals_);
|
|
3221
|
+
}
|
|
3222
|
+
inline const ::google::protobuf::Any& Option::value() const ABSL_ATTRIBUTE_LIFETIME_BOUND {
|
|
3223
|
+
// @@protoc_insertion_point(field_get:google.protobuf.Option.value)
|
|
3224
|
+
return _internal_value();
|
|
3225
|
+
}
|
|
3226
|
+
inline void Option::unsafe_arena_set_allocated_value(
|
|
3227
|
+
::google::protobuf::Any* PROTOBUF_NULLABLE value) {
|
|
3228
|
+
::google::protobuf::internal::TSanWrite(&_impl_);
|
|
3229
|
+
if (GetArena() == nullptr) {
|
|
3230
|
+
delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.value_);
|
|
3231
|
+
}
|
|
3232
|
+
_impl_.value_ = reinterpret_cast<::google::protobuf::Any*>(value);
|
|
3233
|
+
if (value != nullptr) {
|
|
3234
|
+
SetHasBit(_impl_._has_bits_[0], 0x00000002U);
|
|
3235
|
+
} else {
|
|
3236
|
+
ClearHasBit(_impl_._has_bits_[0], 0x00000002U);
|
|
3237
|
+
}
|
|
3238
|
+
// @@protoc_insertion_point(field_unsafe_arena_set_allocated:google.protobuf.Option.value)
|
|
3239
|
+
}
|
|
3240
|
+
inline ::google::protobuf::Any* PROTOBUF_NULLABLE Option::release_value() {
|
|
3241
|
+
::google::protobuf::internal::TSanWrite(&_impl_);
|
|
3242
|
+
|
|
3243
|
+
ClearHasBit(_impl_._has_bits_[0], 0x00000002U);
|
|
3244
|
+
::google::protobuf::Any* released = _impl_.value_;
|
|
3245
|
+
_impl_.value_ = nullptr;
|
|
3246
|
+
if (::google::protobuf::internal::DebugHardenForceCopyInRelease()) {
|
|
3247
|
+
auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released);
|
|
3248
|
+
released = ::google::protobuf::internal::DuplicateIfNonNull(released);
|
|
3249
|
+
if (GetArena() == nullptr) {
|
|
3250
|
+
delete old;
|
|
3251
|
+
}
|
|
3252
|
+
} else {
|
|
3253
|
+
if (GetArena() != nullptr) {
|
|
3254
|
+
released = ::google::protobuf::internal::DuplicateIfNonNull(released);
|
|
3255
|
+
}
|
|
3256
|
+
}
|
|
3257
|
+
return released;
|
|
3258
|
+
}
|
|
3259
|
+
inline ::google::protobuf::Any* PROTOBUF_NULLABLE Option::unsafe_arena_release_value() {
|
|
3260
|
+
::google::protobuf::internal::TSanWrite(&_impl_);
|
|
3261
|
+
// @@protoc_insertion_point(field_release:google.protobuf.Option.value)
|
|
3262
|
+
|
|
3263
|
+
ClearHasBit(_impl_._has_bits_[0], 0x00000002U);
|
|
3264
|
+
::google::protobuf::Any* temp = _impl_.value_;
|
|
3265
|
+
_impl_.value_ = nullptr;
|
|
3266
|
+
return temp;
|
|
3267
|
+
}
|
|
3268
|
+
inline ::google::protobuf::Any* PROTOBUF_NONNULL Option::_internal_mutable_value() {
|
|
3269
|
+
::google::protobuf::internal::TSanWrite(&_impl_);
|
|
3270
|
+
if (_impl_.value_ == nullptr) {
|
|
3271
|
+
auto* p = ::google::protobuf::Message::DefaultConstruct<::google::protobuf::Any>(GetArena());
|
|
3272
|
+
_impl_.value_ = reinterpret_cast<::google::protobuf::Any*>(p);
|
|
3273
|
+
}
|
|
3274
|
+
return _impl_.value_;
|
|
3275
|
+
}
|
|
3276
|
+
inline ::google::protobuf::Any* PROTOBUF_NONNULL Option::mutable_value()
|
|
3277
|
+
ABSL_ATTRIBUTE_LIFETIME_BOUND {
|
|
3278
|
+
SetHasBit(_impl_._has_bits_[0], 0x00000002U);
|
|
3279
|
+
::google::protobuf::Any* _msg = _internal_mutable_value();
|
|
3280
|
+
// @@protoc_insertion_point(field_mutable:google.protobuf.Option.value)
|
|
3281
|
+
return _msg;
|
|
3282
|
+
}
|
|
3283
|
+
inline void Option::set_allocated_value(::google::protobuf::Any* PROTOBUF_NULLABLE value) {
|
|
3284
|
+
::google::protobuf::Arena* message_arena = GetArena();
|
|
3285
|
+
::google::protobuf::internal::TSanWrite(&_impl_);
|
|
3286
|
+
if (message_arena == nullptr) {
|
|
3287
|
+
delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.value_);
|
|
3288
|
+
}
|
|
3289
|
+
|
|
3290
|
+
if (value != nullptr) {
|
|
3291
|
+
::google::protobuf::Arena* submessage_arena = reinterpret_cast<::google::protobuf::Message*>(value)->GetArena();
|
|
3292
|
+
if (message_arena != submessage_arena) {
|
|
3293
|
+
value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena);
|
|
3294
|
+
}
|
|
3295
|
+
SetHasBit(_impl_._has_bits_[0], 0x00000002U);
|
|
3296
|
+
} else {
|
|
3297
|
+
ClearHasBit(_impl_._has_bits_[0], 0x00000002U);
|
|
3298
|
+
}
|
|
3299
|
+
|
|
3300
|
+
_impl_.value_ = reinterpret_cast<::google::protobuf::Any*>(value);
|
|
3301
|
+
// @@protoc_insertion_point(field_set_allocated:google.protobuf.Option.value)
|
|
3302
|
+
}
|
|
3303
|
+
|
|
3304
|
+
#ifdef __GNUC__
|
|
3305
|
+
#pragma GCC diagnostic pop
|
|
3306
|
+
#endif // __GNUC__
|
|
3307
|
+
|
|
3308
|
+
// @@protoc_insertion_point(namespace_scope)
|
|
3309
|
+
} // namespace protobuf
|
|
3310
|
+
} // namespace google
|
|
3311
|
+
|
|
3312
|
+
|
|
3313
|
+
namespace google {
|
|
3314
|
+
namespace protobuf {
|
|
3315
|
+
|
|
3316
|
+
template <>
|
|
3317
|
+
struct is_proto_enum<::google::protobuf::Field_Kind> : std::true_type {};
|
|
3318
|
+
template <>
|
|
3319
|
+
inline const EnumDescriptor* PROTOBUF_NONNULL GetEnumDescriptor<::google::protobuf::Field_Kind>() {
|
|
3320
|
+
return ::google::protobuf::Field_Kind_descriptor();
|
|
3321
|
+
}
|
|
3322
|
+
template <>
|
|
3323
|
+
struct is_proto_enum<::google::protobuf::Field_Cardinality> : std::true_type {};
|
|
3324
|
+
template <>
|
|
3325
|
+
inline const EnumDescriptor* PROTOBUF_NONNULL GetEnumDescriptor<::google::protobuf::Field_Cardinality>() {
|
|
3326
|
+
return ::google::protobuf::Field_Cardinality_descriptor();
|
|
3327
|
+
}
|
|
3328
|
+
template <>
|
|
3329
|
+
struct is_proto_enum<::google::protobuf::Syntax> : std::true_type {};
|
|
3330
|
+
template <>
|
|
3331
|
+
inline const EnumDescriptor* PROTOBUF_NONNULL GetEnumDescriptor<::google::protobuf::Syntax>() {
|
|
3332
|
+
return ::google::protobuf::Syntax_descriptor();
|
|
3333
|
+
}
|
|
3334
|
+
|
|
3335
|
+
} // namespace protobuf
|
|
3336
|
+
} // namespace google
|
|
3337
|
+
|
|
3338
|
+
// @@protoc_insertion_point(global_scope)
|
|
3339
|
+
|
|
3340
|
+
#include "google/protobuf/port_undef.inc"
|
|
3341
|
+
// clang-format on
|
|
3342
|
+
|
|
3343
|
+
#endif // google_2fprotobuf_2ftype_2eproto_2epb_2eh
|