├── .gitattributes ├── .github ├── FUNDING.yml └── workflows │ ├── go.yml │ └── release.yml ├── .gitignore ├── .gitmodules ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── analyzer.go ├── analyzer_test.go ├── ast ├── kind.go ├── link.go ├── node.go └── walk.go ├── catalog_test.go ├── enum.go ├── error.go ├── go.mod ├── go.sum ├── internal ├── ccall │ ├── absl │ │ ├── BUILD.bazel │ │ ├── algorithm │ │ │ ├── BUILD.bazel │ │ │ ├── algorithm.h │ │ │ ├── algorithm_test.cc │ │ │ ├── container.h │ │ │ ├── container_test.cc │ │ │ ├── dummy.go │ │ │ └── equal_benchmark.cc │ │ ├── base │ │ │ ├── BUILD.bazel │ │ │ ├── attributes.h │ │ │ ├── bit_cast_test.cc │ │ │ ├── call_once.h │ │ │ ├── call_once_test.cc │ │ │ ├── casts.h │ │ │ ├── config.h │ │ │ ├── config │ │ │ │ └── dummy.go │ │ │ ├── config_test.cc │ │ │ ├── const_init.h │ │ │ ├── dummy.go │ │ │ ├── dynamic_annotations.h │ │ │ ├── exception_safety_testing_test.cc │ │ │ ├── inline_variable_test.cc │ │ │ ├── inline_variable_test_a.cc │ │ │ ├── inline_variable_test_b.cc │ │ │ ├── internal │ │ │ │ ├── atomic_hook.h │ │ │ │ ├── atomic_hook_test.cc │ │ │ │ ├── atomic_hook_test_helper.cc │ │ │ │ ├── atomic_hook_test_helper.h │ │ │ │ ├── cmake_thread_test.cc │ │ │ │ ├── cycleclock.cc │ │ │ │ ├── cycleclock.h │ │ │ │ ├── direct_mmap.h │ │ │ │ ├── dummy.go │ │ │ │ ├── dynamic_annotations.h │ │ │ │ ├── endian.h │ │ │ │ ├── endian_test.cc │ │ │ │ ├── errno_saver.h │ │ │ │ ├── errno_saver_test.cc │ │ │ │ ├── exception_safety_testing.cc │ │ │ │ ├── exception_safety_testing.h │ │ │ │ ├── exception_testing.h │ │ │ │ ├── fast_type_id.h │ │ │ │ ├── fast_type_id_test.cc │ │ │ │ ├── hide_ptr.h │ │ │ │ ├── identity.h │ │ │ │ ├── inline_variable.h │ │ │ │ ├── inline_variable_testing.h │ │ │ │ ├── invoke.h │ │ │ │ ├── low_level_alloc.cc │ │ │ │ ├── low_level_alloc.h │ │ │ │ ├── low_level_alloc_test.cc │ │ │ │ ├── low_level_scheduling.h │ │ │ │ ├── per_thread_tls.h │ │ │ │ ├── pretty_function.h │ │ │ │ ├── raw_logging.cc │ │ │ │ ├── raw_logging.h │ │ │ │ ├── scheduling_mode.h │ │ │ │ ├── scoped_set_env.cc │ │ │ │ ├── scoped_set_env.h │ │ │ │ ├── scoped_set_env_test.cc │ │ │ │ ├── spinlock.cc │ │ │ │ ├── spinlock.h │ │ │ │ ├── spinlock_akaros.inc │ │ │ │ ├── spinlock_benchmark.cc │ │ │ │ ├── spinlock_linux.inc │ │ │ │ ├── spinlock_posix.inc │ │ │ │ ├── spinlock_wait.cc │ │ │ │ ├── spinlock_wait.h │ │ │ │ ├── spinlock_win32.inc │ │ │ │ ├── strerror.cc │ │ │ │ ├── strerror.h │ │ │ │ ├── strerror_benchmark.cc │ │ │ │ ├── strerror_test.cc │ │ │ │ ├── sysinfo.cc │ │ │ │ ├── sysinfo.h │ │ │ │ ├── sysinfo_test.cc │ │ │ │ ├── thread_annotations.h │ │ │ │ ├── thread_identity.cc │ │ │ │ ├── thread_identity.h │ │ │ │ ├── thread_identity_benchmark.cc │ │ │ │ ├── thread_identity_test.cc │ │ │ │ ├── throw_delegate.cc │ │ │ │ ├── throw_delegate.h │ │ │ │ ├── tsan_mutex_interface.h │ │ │ │ ├── unaligned_access.h │ │ │ │ ├── unique_small_name_test.cc │ │ │ │ ├── unscaledcycleclock.cc │ │ │ │ └── unscaledcycleclock.h │ │ │ ├── invoke_test.cc │ │ │ ├── log_severity.cc │ │ │ ├── log_severity.h │ │ │ ├── log_severity_test.cc │ │ │ ├── macros.h │ │ │ ├── optimization.h │ │ │ ├── optimization_test.cc │ │ │ ├── options.h │ │ │ ├── policy_checks.h │ │ │ ├── port.h │ │ │ ├── raw_logging_test.cc │ │ │ ├── spinlock_test_common.cc │ │ │ ├── thread_annotations.h │ │ │ └── throw_delegate_test.cc │ │ ├── cleanup │ │ │ ├── BUILD.bazel │ │ │ ├── cleanup.h │ │ │ ├── cleanup_test.cc │ │ │ ├── dummy.go │ │ │ └── internal │ │ │ │ ├── cleanup.h │ │ │ │ └── dummy.go │ │ ├── container │ │ │ ├── BUILD.bazel │ │ │ ├── btree_benchmark.cc │ │ │ ├── btree_map.h │ │ │ ├── btree_set.h │ │ │ ├── btree_test.cc │ │ │ ├── btree_test.h │ │ │ ├── dummy.go │ │ │ ├── fixed_array.h │ │ │ ├── fixed_array_benchmark.cc │ │ │ ├── fixed_array_exception_safety_test.cc │ │ │ ├── fixed_array_test.cc │ │ │ ├── flat_hash_map.h │ │ │ ├── flat_hash_map_test.cc │ │ │ ├── flat_hash_set.h │ │ │ ├── flat_hash_set_test.cc │ │ │ ├── inlined_vector.h │ │ │ ├── inlined_vector_benchmark.cc │ │ │ ├── inlined_vector_exception_safety_test.cc │ │ │ ├── inlined_vector_test.cc │ │ │ ├── internal │ │ │ │ ├── btree.h │ │ │ │ ├── btree_container.h │ │ │ │ ├── common.h │ │ │ │ ├── compressed_tuple.h │ │ │ │ ├── compressed_tuple_test.cc │ │ │ │ ├── container_memory.h │ │ │ │ ├── container_memory_test.cc │ │ │ │ ├── counting_allocator.h │ │ │ │ ├── dummy.go │ │ │ │ ├── hash_function_defaults.h │ │ │ │ ├── hash_function_defaults_test.cc │ │ │ │ ├── hash_generator_testing.cc │ │ │ │ ├── hash_generator_testing.h │ │ │ │ ├── hash_policy_testing.h │ │ │ │ ├── hash_policy_testing_test.cc │ │ │ │ ├── hash_policy_traits.h │ │ │ │ ├── hash_policy_traits_test.cc │ │ │ │ ├── hashtable_debug.h │ │ │ │ ├── hashtable_debug_hooks.h │ │ │ │ ├── hashtablez_sampler.cc │ │ │ │ ├── hashtablez_sampler.h │ │ │ │ ├── hashtablez_sampler_force_weak_definition.cc │ │ │ │ ├── hashtablez_sampler_test.cc │ │ │ │ ├── have_sse.h │ │ │ │ ├── inlined_vector.h │ │ │ │ ├── layout.h │ │ │ │ ├── layout_benchmark.cc │ │ │ │ ├── layout_test.cc │ │ │ │ ├── node_slot_policy.h │ │ │ │ ├── node_slot_policy_test.cc │ │ │ │ ├── raw_hash_map.h │ │ │ │ ├── raw_hash_set.cc │ │ │ │ ├── raw_hash_set.h │ │ │ │ ├── raw_hash_set_allocator_test.cc │ │ │ │ ├── raw_hash_set_benchmark.cc │ │ │ │ ├── raw_hash_set_probe_benchmark.cc │ │ │ │ ├── raw_hash_set_test.cc │ │ │ │ ├── test_instance_tracker.cc │ │ │ │ ├── test_instance_tracker.h │ │ │ │ ├── test_instance_tracker_test.cc │ │ │ │ ├── tracked.h │ │ │ │ ├── unordered_map_constructor_test.h │ │ │ │ ├── unordered_map_lookup_test.h │ │ │ │ ├── unordered_map_members_test.h │ │ │ │ ├── unordered_map_modifiers_test.h │ │ │ │ ├── unordered_map_test.cc │ │ │ │ ├── unordered_set_constructor_test.h │ │ │ │ ├── unordered_set_lookup_test.h │ │ │ │ ├── unordered_set_members_test.h │ │ │ │ ├── unordered_set_modifiers_test.h │ │ │ │ └── unordered_set_test.cc │ │ │ ├── node_hash_map.h │ │ │ ├── node_hash_map_test.cc │ │ │ ├── node_hash_set.h │ │ │ ├── node_hash_set_test.cc │ │ │ └── sample_element_size_test.cc │ │ ├── copts │ │ │ └── dummy.go │ │ ├── debugging │ │ │ ├── BUILD.bazel │ │ │ ├── dummy.go │ │ │ ├── failure_signal_handler.cc │ │ │ ├── failure_signal_handler.h │ │ │ ├── failure_signal_handler_test.cc │ │ │ ├── internal │ │ │ │ ├── address_is_readable.cc │ │ │ │ ├── address_is_readable.h │ │ │ │ ├── demangle.cc │ │ │ │ ├── demangle.h │ │ │ │ ├── demangle_test.cc │ │ │ │ ├── dummy.go │ │ │ │ ├── elf_mem_image.cc │ │ │ │ ├── elf_mem_image.h │ │ │ │ ├── examine_stack.cc │ │ │ │ ├── examine_stack.h │ │ │ │ ├── stack_consumption.cc │ │ │ │ ├── stack_consumption.h │ │ │ │ ├── stack_consumption_test.cc │ │ │ │ ├── stacktrace_aarch64-inl.inc │ │ │ │ ├── stacktrace_arm-inl.inc │ │ │ │ ├── stacktrace_config.h │ │ │ │ ├── stacktrace_emscripten-inl.inc │ │ │ │ ├── stacktrace_generic-inl.inc │ │ │ │ ├── stacktrace_powerpc-inl.inc │ │ │ │ ├── stacktrace_riscv-inl.inc │ │ │ │ ├── stacktrace_unimplemented-inl.inc │ │ │ │ ├── stacktrace_win32-inl.inc │ │ │ │ ├── stacktrace_x86-inl.inc │ │ │ │ ├── symbolize.h │ │ │ │ ├── vdso_support.cc │ │ │ │ └── vdso_support.h │ │ │ ├── leak_check.cc │ │ │ ├── leak_check.h │ │ │ ├── leak_check_disable.cc │ │ │ ├── leak_check_fail_test.cc │ │ │ ├── leak_check_test.cc │ │ │ ├── stacktrace.cc │ │ │ ├── stacktrace.h │ │ │ ├── symbolize.cc │ │ │ ├── symbolize.h │ │ │ ├── symbolize_darwin.inc │ │ │ ├── symbolize_elf.inc │ │ │ ├── symbolize_emscripten.inc │ │ │ ├── symbolize_test.cc │ │ │ ├── symbolize_unimplemented.inc │ │ │ └── symbolize_win32.inc │ │ ├── dummy.go │ │ ├── flags │ │ │ ├── BUILD.bazel │ │ │ ├── commandlineflag.cc │ │ │ ├── commandlineflag.h │ │ │ ├── commandlineflag_test.cc │ │ │ ├── config.h │ │ │ ├── config_test.cc │ │ │ ├── declare.h │ │ │ ├── dummy.go │ │ │ ├── flag.cc │ │ │ ├── flag.h │ │ │ ├── flag_benchmark.cc │ │ │ ├── flag_test.cc │ │ │ ├── flag_test_defs.cc │ │ │ ├── internal │ │ │ │ ├── commandlineflag.cc │ │ │ │ ├── commandlineflag.h │ │ │ │ ├── dummy.go │ │ │ │ ├── flag.cc │ │ │ │ ├── flag.h │ │ │ │ ├── flag_msvc.inc │ │ │ │ ├── parse.h │ │ │ │ ├── path_util.h │ │ │ │ ├── path_util_test.cc │ │ │ │ ├── private_handle_accessor.cc │ │ │ │ ├── private_handle_accessor.h │ │ │ │ ├── program_name.cc │ │ │ │ ├── program_name.h │ │ │ │ ├── program_name_test.cc │ │ │ │ ├── registry.h │ │ │ │ ├── sequence_lock.h │ │ │ │ ├── sequence_lock_test.cc │ │ │ │ ├── usage.cc │ │ │ │ ├── usage.h │ │ │ │ └── usage_test.cc │ │ │ ├── marshalling.cc │ │ │ ├── marshalling.h │ │ │ ├── marshalling_test.cc │ │ │ ├── parse.cc │ │ │ ├── parse.h │ │ │ ├── parse_test.cc │ │ │ ├── reflection.cc │ │ │ ├── reflection.h │ │ │ ├── reflection_test.cc │ │ │ ├── usage.cc │ │ │ ├── usage.h │ │ │ ├── usage_config.cc │ │ │ ├── usage_config.h │ │ │ └── usage_config_test.cc │ │ ├── functional │ │ │ ├── BUILD.bazel │ │ │ ├── bind_front.h │ │ │ ├── bind_front_test.cc │ │ │ ├── dummy.go │ │ │ ├── function_ref.h │ │ │ ├── function_ref_benchmark.cc │ │ │ ├── function_ref_test.cc │ │ │ └── internal │ │ │ │ ├── dummy.go │ │ │ │ ├── front_binder.h │ │ │ │ └── function_ref.h │ │ ├── hash │ │ │ ├── BUILD.bazel │ │ │ ├── dummy.go │ │ │ ├── hash.h │ │ │ ├── hash_benchmark.cc │ │ │ ├── hash_test.cc │ │ │ ├── hash_testing.h │ │ │ └── internal │ │ │ │ ├── city.cc │ │ │ │ ├── city.h │ │ │ │ ├── city_test.cc │ │ │ │ ├── dummy.go │ │ │ │ ├── hash.cc │ │ │ │ ├── hash.h │ │ │ │ ├── low_level_hash.cc │ │ │ │ ├── low_level_hash.h │ │ │ │ ├── low_level_hash_test.cc │ │ │ │ ├── print_hash_of.cc │ │ │ │ └── spy_hash_state.h │ │ ├── memory │ │ │ ├── BUILD.bazel │ │ │ ├── dummy.go │ │ │ ├── memory.h │ │ │ ├── memory_exception_safety_test.cc │ │ │ └── memory_test.cc │ │ ├── meta │ │ │ ├── BUILD.bazel │ │ │ ├── dummy.go │ │ │ ├── type_traits.h │ │ │ └── type_traits_test.cc │ │ ├── numeric │ │ │ ├── BUILD.bazel │ │ │ ├── bits.h │ │ │ ├── bits_benchmark.cc │ │ │ ├── bits_test.cc │ │ │ ├── dummy.go │ │ │ ├── int128.cc │ │ │ ├── int128.h │ │ │ ├── int128_benchmark.cc │ │ │ ├── int128_have_intrinsic.inc │ │ │ ├── int128_no_intrinsic.inc │ │ │ ├── int128_stream_test.cc │ │ │ ├── int128_test.cc │ │ │ └── internal │ │ │ │ ├── bits.h │ │ │ │ ├── dummy.go │ │ │ │ └── representation.h │ │ ├── profiling │ │ │ ├── BUILD.bazel │ │ │ ├── dummy.go │ │ │ └── internal │ │ │ │ ├── dummy.go │ │ │ │ ├── exponential_biased.cc │ │ │ │ ├── exponential_biased.h │ │ │ │ ├── exponential_biased_test.cc │ │ │ │ ├── periodic_sampler.cc │ │ │ │ ├── periodic_sampler.h │ │ │ │ ├── periodic_sampler_benchmark.cc │ │ │ │ ├── periodic_sampler_test.cc │ │ │ │ ├── sample_recorder.h │ │ │ │ └── sample_recorder_test.cc │ │ ├── random │ │ │ ├── BUILD.bazel │ │ │ ├── benchmarks.cc │ │ │ ├── bernoulli_distribution.h │ │ │ ├── bernoulli_distribution_test.cc │ │ │ ├── beta_distribution.h │ │ │ ├── beta_distribution_test.cc │ │ │ ├── bit_gen_ref.h │ │ │ ├── bit_gen_ref_test.cc │ │ │ ├── discrete_distribution.cc │ │ │ ├── discrete_distribution.h │ │ │ ├── discrete_distribution_test.cc │ │ │ ├── distributions.h │ │ │ ├── distributions_test.cc │ │ │ ├── dummy.go │ │ │ ├── examples_test.cc │ │ │ ├── exponential_distribution.h │ │ │ ├── exponential_distribution_test.cc │ │ │ ├── gaussian_distribution.cc │ │ │ ├── gaussian_distribution.h │ │ │ ├── gaussian_distribution_test.cc │ │ │ ├── generators_test.cc │ │ │ ├── internal │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── chi_square.cc │ │ │ │ ├── chi_square.h │ │ │ │ ├── chi_square_test.cc │ │ │ │ ├── distribution_caller.h │ │ │ │ ├── distribution_test_util.cc │ │ │ │ ├── distribution_test_util.h │ │ │ │ ├── distribution_test_util_test.cc │ │ │ │ ├── dummy.go │ │ │ │ ├── explicit_seed_seq.h │ │ │ │ ├── explicit_seed_seq_test.cc │ │ │ │ ├── fast_uniform_bits.h │ │ │ │ ├── fast_uniform_bits_test.cc │ │ │ │ ├── fastmath.h │ │ │ │ ├── fastmath_test.cc │ │ │ │ ├── gaussian_distribution_gentables.cc │ │ │ │ ├── generate_real.h │ │ │ │ ├── generate_real_test.cc │ │ │ │ ├── iostream_state_saver.h │ │ │ │ ├── iostream_state_saver_test.cc │ │ │ │ ├── mock_helpers.h │ │ │ │ ├── mock_overload_set.h │ │ │ │ ├── nanobenchmark.cc │ │ │ │ ├── nanobenchmark.h │ │ │ │ ├── nanobenchmark_test.cc │ │ │ │ ├── nonsecure_base.h │ │ │ │ ├── nonsecure_base_test.cc │ │ │ │ ├── pcg_engine.h │ │ │ │ ├── pcg_engine_test.cc │ │ │ │ ├── platform.h │ │ │ │ ├── pool_urbg.cc │ │ │ │ ├── pool_urbg.h │ │ │ │ ├── pool_urbg_test.cc │ │ │ │ ├── randen.cc │ │ │ │ ├── randen.h │ │ │ │ ├── randen_benchmarks.cc │ │ │ │ ├── randen_detect.cc │ │ │ │ ├── randen_detect.h │ │ │ │ ├── randen_engine.h │ │ │ │ ├── randen_engine_test.cc │ │ │ │ ├── randen_hwaes.cc │ │ │ │ ├── randen_hwaes.h │ │ │ │ ├── randen_hwaes_test.cc │ │ │ │ ├── randen_round_keys.cc │ │ │ │ ├── randen_slow.cc │ │ │ │ ├── randen_slow.h │ │ │ │ ├── randen_slow_test.cc │ │ │ │ ├── randen_test.cc │ │ │ │ ├── randen_traits.h │ │ │ │ ├── salted_seed_seq.h │ │ │ │ ├── salted_seed_seq_test.cc │ │ │ │ ├── seed_material.cc │ │ │ │ ├── seed_material.h │ │ │ │ ├── seed_material_test.cc │ │ │ │ ├── sequence_urbg.h │ │ │ │ ├── traits.h │ │ │ │ ├── traits_test.cc │ │ │ │ ├── uniform_helper.h │ │ │ │ ├── uniform_helper_test.cc │ │ │ │ ├── wide_multiply.h │ │ │ │ └── wide_multiply_test.cc │ │ │ ├── log_uniform_int_distribution.h │ │ │ ├── log_uniform_int_distribution_test.cc │ │ │ ├── mock_distributions.h │ │ │ ├── mock_distributions_test.cc │ │ │ ├── mocking_bit_gen.h │ │ │ ├── mocking_bit_gen_test.cc │ │ │ ├── poisson_distribution.h │ │ │ ├── poisson_distribution_test.cc │ │ │ ├── random.h │ │ │ ├── seed_gen_exception.cc │ │ │ ├── seed_gen_exception.h │ │ │ ├── seed_sequences.cc │ │ │ ├── seed_sequences.h │ │ │ ├── seed_sequences_test.cc │ │ │ ├── uniform_int_distribution.h │ │ │ ├── uniform_int_distribution_test.cc │ │ │ ├── uniform_real_distribution.h │ │ │ ├── uniform_real_distribution_test.cc │ │ │ ├── zipf_distribution.h │ │ │ └── zipf_distribution_test.cc │ │ ├── status │ │ │ ├── BUILD.bazel │ │ │ ├── dummy.go │ │ │ ├── internal │ │ │ │ ├── dummy.go │ │ │ │ ├── status_internal.h │ │ │ │ └── statusor_internal.h │ │ │ ├── status.cc │ │ │ ├── status.h │ │ │ ├── status_payload_printer.cc │ │ │ ├── status_payload_printer.h │ │ │ ├── status_test.cc │ │ │ ├── statusor.cc │ │ │ ├── statusor.h │ │ │ └── statusor_test.cc │ │ ├── strings │ │ │ ├── BUILD.bazel │ │ │ ├── ascii.cc │ │ │ ├── ascii.h │ │ │ ├── ascii_benchmark.cc │ │ │ ├── ascii_test.cc │ │ │ ├── charconv.cc │ │ │ ├── charconv.h │ │ │ ├── charconv_benchmark.cc │ │ │ ├── charconv_test.cc │ │ │ ├── cord.cc │ │ │ ├── cord.h │ │ │ ├── cord_analysis.cc │ │ │ ├── cord_analysis.h │ │ │ ├── cord_ring_reader_test.cc │ │ │ ├── cord_ring_test.cc │ │ │ ├── cord_test.cc │ │ │ ├── cord_test_helpers.h │ │ │ ├── cordz_test.cc │ │ │ ├── cordz_test_helpers.h │ │ │ ├── dummy.go │ │ │ ├── escaping.cc │ │ │ ├── escaping.h │ │ │ ├── escaping_benchmark.cc │ │ │ ├── escaping_test.cc │ │ │ ├── internal │ │ │ │ ├── char_map.h │ │ │ │ ├── char_map_benchmark.cc │ │ │ │ ├── char_map_test.cc │ │ │ │ ├── charconv_bigint.cc │ │ │ │ ├── charconv_bigint.h │ │ │ │ ├── charconv_bigint_test.cc │ │ │ │ ├── charconv_parse.cc │ │ │ │ ├── charconv_parse.h │ │ │ │ ├── charconv_parse_test.cc │ │ │ │ ├── cord_internal.cc │ │ │ │ ├── cord_internal.h │ │ │ │ ├── cord_rep_btree.cc │ │ │ │ ├── cord_rep_btree.h │ │ │ │ ├── cord_rep_btree_navigator.cc │ │ │ │ ├── cord_rep_btree_navigator.h │ │ │ │ ├── cord_rep_btree_navigator_test.cc │ │ │ │ ├── cord_rep_btree_reader.cc │ │ │ │ ├── cord_rep_btree_reader.h │ │ │ │ ├── cord_rep_btree_reader_test.cc │ │ │ │ ├── cord_rep_btree_test.cc │ │ │ │ ├── cord_rep_concat.cc │ │ │ │ ├── cord_rep_concat_test.cc │ │ │ │ ├── cord_rep_consume.cc │ │ │ │ ├── cord_rep_consume.h │ │ │ │ ├── cord_rep_consume_test.cc │ │ │ │ ├── cord_rep_crc.cc │ │ │ │ ├── cord_rep_crc.h │ │ │ │ ├── cord_rep_crc_test.cc │ │ │ │ ├── cord_rep_flat.h │ │ │ │ ├── cord_rep_ring.cc │ │ │ │ ├── cord_rep_ring.h │ │ │ │ ├── cord_rep_ring_reader.h │ │ │ │ ├── cord_rep_test_util.h │ │ │ │ ├── cordz_functions.cc │ │ │ │ ├── cordz_functions.h │ │ │ │ ├── cordz_functions_test.cc │ │ │ │ ├── cordz_handle.cc │ │ │ │ ├── cordz_handle.h │ │ │ │ ├── cordz_handle_test.cc │ │ │ │ ├── cordz_info.cc │ │ │ │ ├── cordz_info.h │ │ │ │ ├── cordz_info_statistics_test.cc │ │ │ │ ├── cordz_info_test.cc │ │ │ │ ├── cordz_sample_token.cc │ │ │ │ ├── cordz_sample_token.h │ │ │ │ ├── cordz_sample_token_test.cc │ │ │ │ ├── cordz_statistics.h │ │ │ │ ├── cordz_update_scope.h │ │ │ │ ├── cordz_update_scope_test.cc │ │ │ │ ├── cordz_update_tracker.h │ │ │ │ ├── cordz_update_tracker_test.cc │ │ │ │ ├── dummy.go │ │ │ │ ├── escaping.cc │ │ │ │ ├── escaping.h │ │ │ │ ├── escaping_test_common.h │ │ │ │ ├── memutil.cc │ │ │ │ ├── memutil.h │ │ │ │ ├── memutil_benchmark.cc │ │ │ │ ├── memutil_test.cc │ │ │ │ ├── numbers_test_common.h │ │ │ │ ├── ostringstream.cc │ │ │ │ ├── ostringstream.h │ │ │ │ ├── ostringstream_benchmark.cc │ │ │ │ ├── ostringstream_test.cc │ │ │ │ ├── pow10_helper.cc │ │ │ │ ├── pow10_helper.h │ │ │ │ ├── pow10_helper_test.cc │ │ │ │ ├── resize_uninitialized.h │ │ │ │ ├── resize_uninitialized_test.cc │ │ │ │ ├── stl_type_traits.h │ │ │ │ ├── str_format │ │ │ │ │ ├── arg.cc │ │ │ │ │ ├── arg.h │ │ │ │ │ ├── arg_test.cc │ │ │ │ │ ├── bind.cc │ │ │ │ │ ├── bind.h │ │ │ │ │ ├── bind_test.cc │ │ │ │ │ ├── checker.h │ │ │ │ │ ├── checker_test.cc │ │ │ │ │ ├── convert_test.cc │ │ │ │ │ ├── dummy.go │ │ │ │ │ ├── extension.cc │ │ │ │ │ ├── extension.h │ │ │ │ │ ├── extension_test.cc │ │ │ │ │ ├── float_conversion.cc │ │ │ │ │ ├── float_conversion.h │ │ │ │ │ ├── output.cc │ │ │ │ │ ├── output.h │ │ │ │ │ ├── output_test.cc │ │ │ │ │ ├── parser.cc │ │ │ │ │ ├── parser.h │ │ │ │ │ └── parser_test.cc │ │ │ │ ├── str_join_internal.h │ │ │ │ ├── str_split_internal.h │ │ │ │ ├── string_constant.h │ │ │ │ ├── string_constant_test.cc │ │ │ │ ├── utf8.cc │ │ │ │ ├── utf8.h │ │ │ │ └── utf8_test.cc │ │ │ ├── match.cc │ │ │ ├── match.h │ │ │ ├── match_test.cc │ │ │ ├── numbers.cc │ │ │ ├── numbers.h │ │ │ ├── numbers_benchmark.cc │ │ │ ├── numbers_test.cc │ │ │ ├── str_cat.cc │ │ │ ├── str_cat.h │ │ │ ├── str_cat_benchmark.cc │ │ │ ├── str_cat_test.cc │ │ │ ├── str_format.h │ │ │ ├── str_format_test.cc │ │ │ ├── str_join.h │ │ │ ├── str_join_benchmark.cc │ │ │ ├── str_join_test.cc │ │ │ ├── str_replace.cc │ │ │ ├── str_replace.h │ │ │ ├── str_replace_benchmark.cc │ │ │ ├── str_replace_test.cc │ │ │ ├── str_split.cc │ │ │ ├── str_split.h │ │ │ ├── str_split_benchmark.cc │ │ │ ├── str_split_test.cc │ │ │ ├── string_view.cc │ │ │ ├── string_view.h │ │ │ ├── string_view_benchmark.cc │ │ │ ├── string_view_test.cc │ │ │ ├── strings.go │ │ │ ├── strip.h │ │ │ ├── strip_test.cc │ │ │ ├── substitute.cc │ │ │ ├── substitute.h │ │ │ └── substitute_test.cc │ │ ├── synchronization │ │ │ ├── BUILD.bazel │ │ │ ├── barrier.cc │ │ │ ├── barrier.h │ │ │ ├── barrier_test.cc │ │ │ ├── blocking_counter.cc │ │ │ ├── blocking_counter.h │ │ │ ├── blocking_counter_benchmark.cc │ │ │ ├── blocking_counter_test.cc │ │ │ ├── dummy.go │ │ │ ├── internal │ │ │ │ ├── create_thread_identity.cc │ │ │ │ ├── create_thread_identity.h │ │ │ │ ├── dummy.go │ │ │ │ ├── futex.h │ │ │ │ ├── graphcycles.cc │ │ │ │ ├── graphcycles.h │ │ │ │ ├── graphcycles_benchmark.cc │ │ │ │ ├── graphcycles_test.cc │ │ │ │ ├── kernel_timeout.h │ │ │ │ ├── per_thread_sem.cc │ │ │ │ ├── per_thread_sem.h │ │ │ │ ├── per_thread_sem_test.cc │ │ │ │ ├── thread_pool.h │ │ │ │ ├── waiter.cc │ │ │ │ └── waiter.h │ │ │ ├── lifetime_test.cc │ │ │ ├── mutex.cc │ │ │ ├── mutex.h │ │ │ ├── mutex_benchmark.cc │ │ │ ├── mutex_test.cc │ │ │ ├── notification.cc │ │ │ ├── notification.h │ │ │ └── notification_test.cc │ │ ├── time │ │ │ ├── BUILD.bazel │ │ │ ├── civil_time.cc │ │ │ ├── civil_time.h │ │ │ ├── civil_time_benchmark.cc │ │ │ ├── civil_time_test.cc │ │ │ ├── clock.cc │ │ │ ├── clock.h │ │ │ ├── clock_benchmark.cc │ │ │ ├── clock_test.cc │ │ │ ├── dummy.go │ │ │ ├── duration.cc │ │ │ ├── duration_benchmark.cc │ │ │ ├── duration_test.cc │ │ │ ├── format.cc │ │ │ ├── format_benchmark.cc │ │ │ ├── format_test.cc │ │ │ ├── internal │ │ │ │ ├── cctz │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ ├── dummy.go │ │ │ │ │ ├── include │ │ │ │ │ │ ├── cctz │ │ │ │ │ │ │ ├── civil_time.h │ │ │ │ │ │ │ ├── civil_time_detail.h │ │ │ │ │ │ │ ├── dummy.go │ │ │ │ │ │ │ ├── time_zone.h │ │ │ │ │ │ │ └── zone_info_source.h │ │ │ │ │ │ └── dummy.go │ │ │ │ │ └── src │ │ │ │ │ │ ├── cctz_benchmark.cc │ │ │ │ │ │ ├── civil_time_detail.cc │ │ │ │ │ │ ├── civil_time_test.cc │ │ │ │ │ │ ├── dummy.go │ │ │ │ │ │ ├── time_zone_fixed.cc │ │ │ │ │ │ ├── time_zone_fixed.h │ │ │ │ │ │ ├── time_zone_format.cc │ │ │ │ │ │ ├── time_zone_format_test.cc │ │ │ │ │ │ ├── time_zone_if.cc │ │ │ │ │ │ ├── time_zone_if.h │ │ │ │ │ │ ├── time_zone_impl.cc │ │ │ │ │ │ ├── time_zone_impl.h │ │ │ │ │ │ ├── time_zone_info.cc │ │ │ │ │ │ ├── time_zone_info.h │ │ │ │ │ │ ├── time_zone_libc.cc │ │ │ │ │ │ ├── time_zone_libc.h │ │ │ │ │ │ ├── time_zone_lookup.cc │ │ │ │ │ │ ├── time_zone_lookup_test.cc │ │ │ │ │ │ ├── time_zone_posix.cc │ │ │ │ │ │ ├── time_zone_posix.h │ │ │ │ │ │ ├── tzfile.h │ │ │ │ │ │ └── zone_info_source.cc │ │ │ │ ├── dummy.go │ │ │ │ ├── get_current_time_chrono.inc │ │ │ │ ├── get_current_time_posix.inc │ │ │ │ ├── test_util.cc │ │ │ │ ├── test_util.h │ │ │ │ └── zoneinfo.inc │ │ │ ├── time.cc │ │ │ ├── time.h │ │ │ ├── time_benchmark.cc │ │ │ ├── time_test.cc │ │ │ └── time_zone_test.cc │ │ ├── types │ │ │ ├── BUILD.bazel │ │ │ ├── any.h │ │ │ ├── any_exception_safety_test.cc │ │ │ ├── any_test.cc │ │ │ ├── bad_any_cast.cc │ │ │ ├── bad_any_cast.h │ │ │ ├── bad_optional_access.cc │ │ │ ├── bad_optional_access.h │ │ │ ├── bad_variant_access.cc │ │ │ ├── bad_variant_access.h │ │ │ ├── compare.h │ │ │ ├── compare_test.cc │ │ │ ├── dummy.go │ │ │ ├── internal │ │ │ │ ├── conformance_aliases.h │ │ │ │ ├── conformance_archetype.h │ │ │ │ ├── conformance_profile.h │ │ │ │ ├── conformance_testing.h │ │ │ │ ├── conformance_testing_helpers.h │ │ │ │ ├── conformance_testing_test.cc │ │ │ │ ├── dummy.go │ │ │ │ ├── optional.h │ │ │ │ ├── parentheses.h │ │ │ │ ├── span.h │ │ │ │ ├── transform_args.h │ │ │ │ └── variant.h │ │ │ ├── optional.h │ │ │ ├── optional_exception_safety_test.cc │ │ │ ├── optional_test.cc │ │ │ ├── span.h │ │ │ ├── span_test.cc │ │ │ ├── variant.h │ │ │ ├── variant_benchmark.cc │ │ │ ├── variant_exception_safety_test.cc │ │ │ └── variant_test.cc │ │ └── utility │ │ │ ├── BUILD.bazel │ │ │ ├── dummy.go │ │ │ ├── utility.h │ │ │ └── utility_test.cc │ ├── boringssl │ │ └── openssl │ │ │ ├── aead.h │ │ │ ├── aes.h │ │ │ ├── arm_arch.h │ │ │ ├── asn1.h │ │ │ ├── asn1_mac.h │ │ │ ├── asn1t.h │ │ │ ├── base.h │ │ │ ├── base64.h │ │ │ ├── bio.h │ │ │ ├── blake2.h │ │ │ ├── blowfish.h │ │ │ ├── bn.h │ │ │ ├── buf.h │ │ │ ├── buffer.h │ │ │ ├── bytestring.h │ │ │ ├── cast.h │ │ │ ├── chacha.h │ │ │ ├── cipher.h │ │ │ ├── cmac.h │ │ │ ├── conf.h │ │ │ ├── cpu.h │ │ │ ├── crypto.h │ │ │ ├── curve25519.h │ │ │ ├── des.h │ │ │ ├── dh.h │ │ │ ├── digest.h │ │ │ ├── dsa.h │ │ │ ├── dtls1.h │ │ │ ├── e_os2.h │ │ │ ├── ec.h │ │ │ ├── ec_key.h │ │ │ ├── ecdh.h │ │ │ ├── ecdsa.h │ │ │ ├── engine.h │ │ │ ├── err.h │ │ │ ├── evp.h │ │ │ ├── evp_errors.h │ │ │ ├── ex_data.h │ │ │ ├── hkdf.h │ │ │ ├── hmac.h │ │ │ ├── hpke.h │ │ │ ├── hrss.h │ │ │ ├── is_boringssl.h │ │ │ ├── lhash.h │ │ │ ├── md4.h │ │ │ ├── md5.h │ │ │ ├── mem.h │ │ │ ├── nid.h │ │ │ ├── obj.h │ │ │ ├── obj_mac.h │ │ │ ├── objects.h │ │ │ ├── opensslconf.h │ │ │ ├── opensslv.h │ │ │ ├── ossl_typ.h │ │ │ ├── pem.h │ │ │ ├── pkcs12.h │ │ │ ├── pkcs7.h │ │ │ ├── pkcs8.h │ │ │ ├── poly1305.h │ │ │ ├── pool.h │ │ │ ├── rand.h │ │ │ ├── rc4.h │ │ │ ├── ripemd.h │ │ │ ├── rsa.h │ │ │ ├── safestack.h │ │ │ ├── sha.h │ │ │ ├── siphash.h │ │ │ ├── span.h │ │ │ ├── srtp.h │ │ │ ├── ssl.h │ │ │ ├── ssl3.h │ │ │ ├── stack.h │ │ │ ├── thread.h │ │ │ ├── tls1.h │ │ │ ├── trust_token.h │ │ │ ├── type_check.h │ │ │ ├── x509.h │ │ │ ├── x509_vfy.h │ │ │ └── x509v3.h │ ├── farmhash │ │ ├── farmhash.cc │ │ └── farmhash.h │ ├── flex │ │ ├── BUILD.bazel │ │ ├── examples │ │ │ └── fastwc │ │ │ │ └── mywc.c │ │ ├── lib │ │ │ ├── malloc.c │ │ │ └── realloc.c │ │ ├── src │ │ │ ├── FlexLexer.h │ │ │ ├── buf.c │ │ │ ├── ccl.c │ │ │ ├── dfa.c │ │ │ ├── dummy.go │ │ │ ├── ecs.c │ │ │ ├── filter.c │ │ │ ├── flexdef.h │ │ │ ├── flexint.h │ │ │ ├── gen.c │ │ │ ├── gettext.h │ │ │ ├── libmain.c │ │ │ ├── libyywrap.c │ │ │ ├── main.c │ │ │ ├── misc.c │ │ │ ├── nfa.c │ │ │ ├── options.c │ │ │ ├── options.h │ │ │ ├── parse.c │ │ │ ├── parse.h │ │ │ ├── regex.c │ │ │ ├── scan.c │ │ │ ├── scanflags.c │ │ │ ├── scanopt.c │ │ │ ├── scanopt.h │ │ │ ├── skel.c │ │ │ ├── sym.c │ │ │ ├── tables.c │ │ │ ├── tables.h │ │ │ ├── tables_shared.c │ │ │ ├── tables_shared.h │ │ │ ├── tblcmp.c │ │ │ ├── version.h │ │ │ └── yylex.c │ │ └── tests │ │ │ ├── bison_nr_main.c │ │ │ ├── bison_yylloc_main.c │ │ │ ├── bison_yylval_main.c │ │ │ ├── cxx_multiple_scanners_main.cc │ │ │ ├── header_nr_main.c │ │ │ ├── header_r_main.c │ │ │ ├── multiple_scanners_nr_main.c │ │ │ ├── multiple_scanners_r_main.c │ │ │ ├── no_bison_stub.c │ │ │ └── top_main.c │ ├── go-absl │ │ ├── absl.go │ │ ├── algorithm │ │ │ ├── algorithm.go │ │ │ ├── algorithm │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ └── container │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ ├── base │ │ │ ├── atomic_hook │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── base.go │ │ │ ├── base │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ ├── export.inc │ │ │ │ └── ext.go │ │ │ ├── base_internal │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── config │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── core_headers │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── dynamic_annotations │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── endian │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── errno_saver │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── fast_type_id │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── log_severity │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── malloc_internal │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── pretty_function │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── raw_logging_internal │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── scoped_set_env │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── spinlock_wait │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── strerror │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ └── throw_delegate │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ ├── cleanup │ │ │ ├── cleanup.go │ │ │ ├── cleanup │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ └── cleanup_internal │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ ├── container │ │ │ ├── btree │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── common │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── compressed_tuple │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── container.go │ │ │ ├── container_memory │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── counting_allocator │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── fixed_array │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── flat_hash_map │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── flat_hash_set │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── hash_function_defaults │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── hash_policy_traits │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── hashtable_debug │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── hashtable_debug_hooks │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── hashtablez_sampler │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── have_sse │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── inlined_vector │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── inlined_vector_internal │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── layout │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── node_hash_map │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── node_hash_set │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── node_slot_policy │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── raw_hash_map │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── raw_hash_set │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ └── tracked │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ ├── debugging │ │ │ ├── debugging.go │ │ │ ├── debugging_internal │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── demangle_internal │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── examine_stack │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── failure_signal_handler │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── leak_check │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── leak_check_disable │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── stack_consumption │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── stacktrace │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ └── symbolize │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ ├── flags │ │ │ ├── commandlineflag │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── commandlineflag_internal │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── config │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── flag │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── flag_internal │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── flags.go │ │ │ ├── marshalling │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── parse │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── path_util │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── private_handle_accessor │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── program_name │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── reflection │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── usage │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ └── usage_internal │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ ├── functional │ │ │ ├── bind_front │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── function_ref │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ └── functional.go │ │ ├── hash │ │ │ ├── city │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── hash.go │ │ │ ├── hash │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── low_level_hash │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ └── spy_hash_state │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ ├── memory │ │ │ ├── memory.go │ │ │ └── memory │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ ├── meta │ │ │ ├── meta.go │ │ │ └── type_traits │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ ├── numeric │ │ │ ├── bits │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── int128 │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── numeric.go │ │ │ └── representation │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ ├── profiling │ │ │ ├── exponential_biased │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── periodic_sampler │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── profiling.go │ │ │ └── sample_recorder │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ ├── random │ │ │ ├── bit_gen_ref │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── distributions │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── go_internal │ │ │ │ ├── distribution_caller │ │ │ │ │ ├── bind.cc │ │ │ │ │ ├── bind_darwin.go │ │ │ │ │ ├── bind_linux.go │ │ │ │ │ ├── bridge.h │ │ │ │ │ ├── bridge.inc │ │ │ │ │ ├── bridge_cc.inc │ │ │ │ │ ├── bridge_extern.h │ │ │ │ │ └── export.inc │ │ │ │ ├── explicit_seed_seq │ │ │ │ │ ├── bind.cc │ │ │ │ │ ├── bind_darwin.go │ │ │ │ │ ├── bind_linux.go │ │ │ │ │ ├── bridge.h │ │ │ │ │ ├── bridge.inc │ │ │ │ │ ├── bridge_cc.inc │ │ │ │ │ ├── bridge_extern.h │ │ │ │ │ └── export.inc │ │ │ │ ├── fast_uniform_bits │ │ │ │ │ ├── bind.cc │ │ │ │ │ ├── bind_darwin.go │ │ │ │ │ ├── bind_linux.go │ │ │ │ │ ├── bridge.h │ │ │ │ │ ├── bridge.inc │ │ │ │ │ ├── bridge_cc.inc │ │ │ │ │ ├── bridge_extern.h │ │ │ │ │ └── export.inc │ │ │ │ ├── fastmath │ │ │ │ │ ├── bind.cc │ │ │ │ │ ├── bind_darwin.go │ │ │ │ │ ├── bind_linux.go │ │ │ │ │ ├── bridge.h │ │ │ │ │ ├── bridge.inc │ │ │ │ │ ├── bridge_cc.inc │ │ │ │ │ ├── bridge_extern.h │ │ │ │ │ └── export.inc │ │ │ │ ├── generate_real │ │ │ │ │ ├── bind.cc │ │ │ │ │ ├── bind_darwin.go │ │ │ │ │ ├── bind_linux.go │ │ │ │ │ ├── bridge.h │ │ │ │ │ ├── bridge.inc │ │ │ │ │ ├── bridge_cc.inc │ │ │ │ │ ├── bridge_extern.h │ │ │ │ │ └── export.inc │ │ │ │ ├── internal.go │ │ │ │ ├── iostream_state_saver │ │ │ │ │ ├── bind.cc │ │ │ │ │ ├── bind_darwin.go │ │ │ │ │ ├── bind_linux.go │ │ │ │ │ ├── bridge.h │ │ │ │ │ ├── bridge.inc │ │ │ │ │ ├── bridge_cc.inc │ │ │ │ │ ├── bridge_extern.h │ │ │ │ │ └── export.inc │ │ │ │ ├── nonsecure_base │ │ │ │ │ ├── bind.cc │ │ │ │ │ ├── bind_darwin.go │ │ │ │ │ ├── bind_linux.go │ │ │ │ │ ├── bridge.h │ │ │ │ │ ├── bridge.inc │ │ │ │ │ ├── bridge_cc.inc │ │ │ │ │ ├── bridge_extern.h │ │ │ │ │ └── export.inc │ │ │ │ ├── pcg_engine │ │ │ │ │ ├── bind.cc │ │ │ │ │ ├── bind_darwin.go │ │ │ │ │ ├── bind_linux.go │ │ │ │ │ ├── bridge.h │ │ │ │ │ ├── bridge.inc │ │ │ │ │ ├── bridge_cc.inc │ │ │ │ │ ├── bridge_extern.h │ │ │ │ │ └── export.inc │ │ │ │ ├── platform │ │ │ │ │ ├── bind.cc │ │ │ │ │ ├── bind_darwin.go │ │ │ │ │ ├── bind_linux.go │ │ │ │ │ ├── bridge.h │ │ │ │ │ ├── bridge.inc │ │ │ │ │ ├── bridge_cc.inc │ │ │ │ │ ├── bridge_extern.h │ │ │ │ │ └── export.inc │ │ │ │ ├── pool_urbg │ │ │ │ │ ├── bind.cc │ │ │ │ │ ├── bind_darwin.go │ │ │ │ │ ├── bind_linux.go │ │ │ │ │ ├── bridge.h │ │ │ │ │ ├── bridge.inc │ │ │ │ │ ├── bridge_cc.inc │ │ │ │ │ ├── bridge_extern.h │ │ │ │ │ └── export.inc │ │ │ │ ├── randen │ │ │ │ │ ├── bind.cc │ │ │ │ │ ├── bind_darwin.go │ │ │ │ │ ├── bind_linux.go │ │ │ │ │ ├── bridge.h │ │ │ │ │ ├── bridge.inc │ │ │ │ │ ├── bridge_cc.inc │ │ │ │ │ ├── bridge_extern.h │ │ │ │ │ └── export.inc │ │ │ │ ├── randen_engine │ │ │ │ │ ├── bind.cc │ │ │ │ │ ├── bind_darwin.go │ │ │ │ │ ├── bind_linux.go │ │ │ │ │ ├── bridge.h │ │ │ │ │ ├── bridge.inc │ │ │ │ │ ├── bridge_cc.inc │ │ │ │ │ ├── bridge_extern.h │ │ │ │ │ └── export.inc │ │ │ │ ├── randen_hwaes │ │ │ │ │ ├── bind.cc │ │ │ │ │ ├── bind_darwin.go │ │ │ │ │ ├── bind_linux.go │ │ │ │ │ ├── bridge.h │ │ │ │ │ ├── bridge.inc │ │ │ │ │ ├── bridge_cc.inc │ │ │ │ │ ├── bridge_extern.h │ │ │ │ │ └── export.inc │ │ │ │ ├── randen_hwaes_impl │ │ │ │ │ ├── bind.cc │ │ │ │ │ ├── bind_darwin.go │ │ │ │ │ ├── bind_linux.go │ │ │ │ │ ├── bridge.h │ │ │ │ │ ├── bridge.inc │ │ │ │ │ ├── bridge_cc.inc │ │ │ │ │ ├── bridge_extern.h │ │ │ │ │ └── export.inc │ │ │ │ ├── randen_slow │ │ │ │ │ ├── bind.cc │ │ │ │ │ ├── bind_darwin.go │ │ │ │ │ ├── bind_linux.go │ │ │ │ │ ├── bridge.h │ │ │ │ │ ├── bridge.inc │ │ │ │ │ ├── bridge_cc.inc │ │ │ │ │ ├── bridge_extern.h │ │ │ │ │ └── export.inc │ │ │ │ ├── salted_seed_seq │ │ │ │ │ ├── bind.cc │ │ │ │ │ ├── bind_darwin.go │ │ │ │ │ ├── bind_linux.go │ │ │ │ │ ├── bridge.h │ │ │ │ │ ├── bridge.inc │ │ │ │ │ ├── bridge_cc.inc │ │ │ │ │ ├── bridge_extern.h │ │ │ │ │ └── export.inc │ │ │ │ ├── seed_material │ │ │ │ │ ├── bind.cc │ │ │ │ │ ├── bind_darwin.go │ │ │ │ │ ├── bind_linux.go │ │ │ │ │ ├── bridge.h │ │ │ │ │ ├── bridge.inc │ │ │ │ │ ├── bridge_cc.inc │ │ │ │ │ ├── bridge_extern.h │ │ │ │ │ └── export.inc │ │ │ │ ├── sequence_urbg │ │ │ │ │ ├── bind.cc │ │ │ │ │ ├── bind_darwin.go │ │ │ │ │ ├── bind_linux.go │ │ │ │ │ ├── bridge.h │ │ │ │ │ ├── bridge.inc │ │ │ │ │ ├── bridge_cc.inc │ │ │ │ │ ├── bridge_extern.h │ │ │ │ │ └── export.inc │ │ │ │ ├── traits │ │ │ │ │ ├── bind.cc │ │ │ │ │ ├── bind_darwin.go │ │ │ │ │ ├── bind_linux.go │ │ │ │ │ ├── bridge.h │ │ │ │ │ ├── bridge.inc │ │ │ │ │ ├── bridge_cc.inc │ │ │ │ │ ├── bridge_extern.h │ │ │ │ │ └── export.inc │ │ │ │ ├── uniform_helper │ │ │ │ │ ├── bind.cc │ │ │ │ │ ├── bind_darwin.go │ │ │ │ │ ├── bind_linux.go │ │ │ │ │ ├── bridge.h │ │ │ │ │ ├── bridge.inc │ │ │ │ │ ├── bridge_cc.inc │ │ │ │ │ ├── bridge_extern.h │ │ │ │ │ └── export.inc │ │ │ │ └── wide_multiply │ │ │ │ │ ├── bind.cc │ │ │ │ │ ├── bind_darwin.go │ │ │ │ │ ├── bind_linux.go │ │ │ │ │ ├── bridge.h │ │ │ │ │ ├── bridge.inc │ │ │ │ │ ├── bridge_cc.inc │ │ │ │ │ ├── bridge_extern.h │ │ │ │ │ └── export.inc │ │ │ ├── random.go │ │ │ ├── random │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── seed_gen_exception │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ └── seed_sequences │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ ├── status │ │ │ ├── status.go │ │ │ ├── status │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ └── statusor │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ ├── strings │ │ │ ├── cord │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── cord_internal │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── cord_rep_test_util │ │ │ │ ├── bind.cc │ │ │ │ ├── bind.go │ │ │ │ └── export.inc │ │ │ ├── cord_test_helpers │ │ │ │ ├── bind.cc │ │ │ │ ├── bind.go │ │ │ │ └── export.inc │ │ │ ├── cordz_functions │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── cordz_handle │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── cordz_info │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── cordz_sample_token │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── cordz_statistics │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── cordz_update_scope │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── cordz_update_tracker │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── internal │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── pow10_helper │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── str_format │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── str_format_internal │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── strings.go │ │ │ └── strings │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ ├── synchronization │ │ │ ├── graphcycles_internal │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── kernel_timeout_internal │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── synchronization.go │ │ │ ├── synchronization │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ └── thread_pool │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ ├── time │ │ │ ├── go_internal │ │ │ │ └── cctz │ │ │ │ │ ├── cctz.go │ │ │ │ │ ├── civil_time │ │ │ │ │ ├── bind.cc │ │ │ │ │ ├── bind_darwin.go │ │ │ │ │ ├── bind_linux.go │ │ │ │ │ ├── bridge.h │ │ │ │ │ ├── bridge.inc │ │ │ │ │ ├── bridge_cc.inc │ │ │ │ │ ├── bridge_extern.h │ │ │ │ │ └── export.inc │ │ │ │ │ └── time_zone │ │ │ │ │ ├── bind.cc │ │ │ │ │ ├── bind_darwin.go │ │ │ │ │ ├── bind_linux.go │ │ │ │ │ ├── bridge.h │ │ │ │ │ ├── bridge.inc │ │ │ │ │ ├── bridge_cc.inc │ │ │ │ │ ├── bridge_extern.h │ │ │ │ │ └── export.inc │ │ │ ├── time.go │ │ │ └── time │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ ├── types │ │ │ ├── any │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── bad_any_cast │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── bad_any_cast_impl │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── bad_optional_access │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── bad_variant_access │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── compare │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── optional │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── span │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── types.go │ │ │ └── variant │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ └── utility │ │ │ ├── utility.go │ │ │ └── utility │ │ │ ├── bind.cc │ │ │ ├── bind_darwin.go │ │ │ ├── bind_linux.go │ │ │ ├── bridge.h │ │ │ ├── bridge.inc │ │ │ ├── bridge_cc.inc │ │ │ ├── bridge_extern.h │ │ │ └── export.inc │ ├── go-boringssl │ │ └── export.inc │ ├── go-farmhash │ │ └── export.inc │ ├── go-icu │ │ └── icu │ │ │ ├── dummy.go │ │ │ └── export.inc │ ├── go-protobuf │ │ └── protobuf │ │ │ ├── dummy.go │ │ │ └── export.inc │ ├── go-re2 │ │ └── re2 │ │ │ ├── dummy.go │ │ │ └── export.inc │ ├── go-zetasql │ │ ├── analyzer │ │ │ ├── all_rewriters │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── analyzer_impl │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── anonymization_rewriter │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── container_hash_equals │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── expr_matching_helpers │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── filter_fields_path_validator │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── function_signature_matcher │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── input_argument_type_resolver_helper │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── lambda_util │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── name_scope │ │ │ │ ├── bind.cc │ │ │ │ ├── bind.go │ │ │ │ └── export.inc │ │ │ ├── resolver │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── rewrite_resolved_ast │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── rewriters │ │ │ │ ├── array_functions_rewriter │ │ │ │ │ ├── bind.cc │ │ │ │ │ ├── bind_darwin.go │ │ │ │ │ ├── bind_linux.go │ │ │ │ │ ├── bridge.h │ │ │ │ │ ├── bridge.inc │ │ │ │ │ ├── bridge_cc.inc │ │ │ │ │ ├── bridge_extern.h │ │ │ │ │ └── export.inc │ │ │ │ ├── flatten_rewriter │ │ │ │ │ ├── bind.cc │ │ │ │ │ ├── bind_darwin.go │ │ │ │ │ ├── bind_linux.go │ │ │ │ │ ├── bridge.h │ │ │ │ │ ├── bridge.inc │ │ │ │ │ ├── bridge_cc.inc │ │ │ │ │ ├── bridge_extern.h │ │ │ │ │ └── export.inc │ │ │ │ ├── let_expr_rewriter │ │ │ │ │ ├── bind.cc │ │ │ │ │ ├── bind_darwin.go │ │ │ │ │ ├── bind_linux.go │ │ │ │ │ ├── bridge.h │ │ │ │ │ ├── bridge.inc │ │ │ │ │ ├── bridge_cc.inc │ │ │ │ │ ├── bridge_extern.h │ │ │ │ │ └── export.inc │ │ │ │ ├── map_function_rewriter │ │ │ │ │ ├── bind.cc │ │ │ │ │ ├── bind_darwin.go │ │ │ │ │ ├── bind_linux.go │ │ │ │ │ ├── bridge.h │ │ │ │ │ ├── bridge.inc │ │ │ │ │ ├── bridge_cc.inc │ │ │ │ │ ├── bridge_extern.h │ │ │ │ │ └── export.inc │ │ │ │ ├── pivot_rewriter │ │ │ │ │ ├── bind.cc │ │ │ │ │ ├── bind_darwin.go │ │ │ │ │ ├── bind_linux.go │ │ │ │ │ ├── bridge.h │ │ │ │ │ ├── bridge.inc │ │ │ │ │ ├── bridge_cc.inc │ │ │ │ │ ├── bridge_extern.h │ │ │ │ │ └── export.inc │ │ │ │ ├── registration │ │ │ │ │ ├── bind.cc │ │ │ │ │ ├── bind_darwin.go │ │ │ │ │ ├── bind_linux.go │ │ │ │ │ ├── bridge.h │ │ │ │ │ ├── bridge.inc │ │ │ │ │ ├── bridge_cc.inc │ │ │ │ │ ├── bridge_extern.h │ │ │ │ │ └── export.inc │ │ │ │ ├── rewriter_interface │ │ │ │ │ ├── bind.cc │ │ │ │ │ ├── bind_darwin.go │ │ │ │ │ ├── bind_linux.go │ │ │ │ │ ├── bridge.h │ │ │ │ │ ├── bridge.inc │ │ │ │ │ ├── bridge_cc.inc │ │ │ │ │ ├── bridge_extern.h │ │ │ │ │ └── export.inc │ │ │ │ ├── rewriter_relevance_checker │ │ │ │ │ ├── bind.cc │ │ │ │ │ ├── bind_darwin.go │ │ │ │ │ ├── bind_linux.go │ │ │ │ │ ├── bridge.h │ │ │ │ │ ├── bridge.inc │ │ │ │ │ ├── bridge_cc.inc │ │ │ │ │ ├── bridge_extern.h │ │ │ │ │ └── export.inc │ │ │ │ ├── sql_function_inliner │ │ │ │ │ ├── bind.cc │ │ │ │ │ ├── bind_darwin.go │ │ │ │ │ ├── bind_linux.go │ │ │ │ │ ├── bridge.h │ │ │ │ │ ├── bridge.inc │ │ │ │ │ ├── bridge_cc.inc │ │ │ │ │ ├── bridge_extern.h │ │ │ │ │ └── export.inc │ │ │ │ ├── typeof_function_rewriter │ │ │ │ │ ├── bind.cc │ │ │ │ │ ├── bind_darwin.go │ │ │ │ │ ├── bind_linux.go │ │ │ │ │ ├── bridge.h │ │ │ │ │ ├── bridge.inc │ │ │ │ │ ├── bridge_cc.inc │ │ │ │ │ ├── bridge_extern.h │ │ │ │ │ └── export.inc │ │ │ │ └── unpivot_rewriter │ │ │ │ │ ├── bind.cc │ │ │ │ │ ├── bind_darwin.go │ │ │ │ │ ├── bind_linux.go │ │ │ │ │ ├── bridge.h │ │ │ │ │ ├── bridge.inc │ │ │ │ │ ├── bridge_cc.inc │ │ │ │ │ ├── bridge_extern.h │ │ │ │ │ └── export.inc │ │ │ └── substitute │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ ├── base │ │ │ ├── arena │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── arena_allocator │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── base.go │ │ │ ├── base │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── bits │ │ │ │ ├── bind.cc │ │ │ │ ├── bind.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── case │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── clock │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── edit_distance │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── endian │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── enum_utils │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── exactfloat │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ ├── crypto.cc │ │ │ │ └── export.inc │ │ │ ├── file_util │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── file_util_oss │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── flat_internal │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── flat_set │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── general_trie │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── logging │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── map_util │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── mathlimits │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── mathutil │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── net │ │ │ │ ├── idn │ │ │ │ │ ├── bind.cc │ │ │ │ │ ├── bind_darwin.go │ │ │ │ │ ├── bind_linux.go │ │ │ │ │ ├── bridge.h │ │ │ │ │ ├── bridge.inc │ │ │ │ │ ├── bridge_cc.inc │ │ │ │ │ ├── bridge_extern.h │ │ │ │ │ └── export.inc │ │ │ │ ├── idn_oss │ │ │ │ │ ├── bind.cc │ │ │ │ │ ├── bind_darwin.go │ │ │ │ │ ├── bind_linux.go │ │ │ │ │ ├── bridge.h │ │ │ │ │ ├── bridge.inc │ │ │ │ │ ├── bridge_cc.inc │ │ │ │ │ ├── bridge_extern.h │ │ │ │ │ └── export.inc │ │ │ │ ├── ipaddress │ │ │ │ │ ├── bind.cc │ │ │ │ │ ├── bind_darwin.go │ │ │ │ │ ├── bind_linux.go │ │ │ │ │ ├── bridge.h │ │ │ │ │ ├── bridge.inc │ │ │ │ │ ├── bridge_cc.inc │ │ │ │ │ ├── bridge_extern.h │ │ │ │ │ └── export.inc │ │ │ │ ├── ipaddress_oss │ │ │ │ │ ├── bind.cc │ │ │ │ │ ├── bind_darwin.go │ │ │ │ │ ├── bind_linux.go │ │ │ │ │ ├── bridge.h │ │ │ │ │ ├── bridge.inc │ │ │ │ │ ├── bridge_cc.inc │ │ │ │ │ ├── bridge_extern.h │ │ │ │ │ └── export.inc │ │ │ │ ├── public_suffix │ │ │ │ │ ├── bind.cc │ │ │ │ │ ├── bind_darwin.go │ │ │ │ │ ├── bind_linux.go │ │ │ │ │ ├── bridge.h │ │ │ │ │ ├── bridge.inc │ │ │ │ │ ├── bridge_cc.inc │ │ │ │ │ ├── bridge_extern.h │ │ │ │ │ └── export.inc │ │ │ │ └── public_suffix_oss │ │ │ │ │ ├── bind.cc │ │ │ │ │ ├── bind_darwin.go │ │ │ │ │ ├── bind_linux.go │ │ │ │ │ ├── bridge.h │ │ │ │ │ ├── bridge.inc │ │ │ │ │ ├── bridge_cc.inc │ │ │ │ │ ├── bridge_extern.h │ │ │ │ │ └── export.inc │ │ │ ├── no_destructor │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── path │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── refcount │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── ret_check │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── source_location │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── status │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── stl_util │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── string_numbers │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── strings │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── time_proto_util │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ └── varsetter │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ ├── bind.cc │ │ ├── bind_darwin.go │ │ ├── bind_linux.go │ │ ├── bridge.h │ │ ├── callback_darwin.go │ │ ├── callback_linux.go │ │ ├── common │ │ │ ├── aggregate_null_handling │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── builtin_function_internal │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── common.go │ │ │ ├── errors │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── evaluator_registration_utils │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── float_margin │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── initialize_required_fields │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── int_ops_util │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── internal_value │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── json_parser │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── json_util │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── multiprecision_int │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── proto_from_iterator │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── proto_helper │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── simple_evaluator_table_iterator │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── status_payload_utils │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── string_util │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ └── utf_util │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ ├── parser │ │ │ ├── ast_enums_cc_proto │ │ │ │ ├── bind.cc │ │ │ │ ├── bind.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── bison_parser_generated_lib │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ ├── export.inc │ │ │ │ └── flex_tokenizer_base.inc │ │ │ ├── flex_istream │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── keywords │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── parse_tree │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── parse_tree_cc_proto │ │ │ │ ├── bind.cc │ │ │ │ ├── bind.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── parse_tree_serializer │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ └── parser │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ ├── export.inc │ │ │ │ ├── ext.go │ │ │ │ └── hoge │ │ ├── proto │ │ │ ├── function_cc_proto │ │ │ │ ├── bind.cc │ │ │ │ ├── bind.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── internal_error_location_cc_proto │ │ │ │ ├── bind.cc │ │ │ │ ├── bind.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── options_cc_proto │ │ │ │ ├── bind.cc │ │ │ │ ├── bind.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ └── simple_catalog_cc_proto │ │ │ │ ├── bind.cc │ │ │ │ ├── bind.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ ├── public │ │ │ ├── analyzer │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── analyzer_options │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── analyzer_output │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── analyzer_output_properties │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── annotation │ │ │ │ └── collation │ │ │ │ │ ├── bind.cc │ │ │ │ │ ├── bind_darwin.go │ │ │ │ │ ├── bind_linux.go │ │ │ │ │ ├── bridge.h │ │ │ │ │ ├── bridge.inc │ │ │ │ │ ├── bridge_cc.inc │ │ │ │ │ ├── bridge_extern.h │ │ │ │ │ └── export.inc │ │ │ ├── annotation_cc_proto │ │ │ │ ├── bind.cc │ │ │ │ ├── bind.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── anon_function │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── anonymization_utils │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── builtin_function │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── builtin_function_cc_proto │ │ │ │ ├── bind.cc │ │ │ │ ├── bind.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── builtin_function_options │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── catalog │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── civil_time │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── coercer │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── collation_cc_proto │ │ │ │ ├── bind.cc │ │ │ │ ├── bind.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── collator │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── collator_lite │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── constant │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── cycle_detector │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── deprecation_warning_cc_proto │ │ │ │ ├── bind.cc │ │ │ │ ├── bind.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── error_helpers │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── error_location_cc_proto │ │ │ │ ├── bind.cc │ │ │ │ ├── bind.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── evaluator │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── evaluator_base │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── evaluator_lite │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── evaluator_table_iterator │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── function │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── function_cc_proto │ │ │ │ ├── bind.cc │ │ │ │ ├── bind.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── functions │ │ │ │ ├── arithmetics │ │ │ │ │ ├── bind.cc │ │ │ │ │ ├── bind_darwin.go │ │ │ │ │ ├── bind_linux.go │ │ │ │ │ ├── bridge.h │ │ │ │ │ ├── bridge.inc │ │ │ │ │ ├── bridge_cc.inc │ │ │ │ │ ├── bridge_extern.h │ │ │ │ │ └── export.inc │ │ │ │ ├── arithmetics_internal │ │ │ │ │ ├── bind.cc │ │ │ │ │ ├── bind_darwin.go │ │ │ │ │ ├── bind_linux.go │ │ │ │ │ ├── bridge.h │ │ │ │ │ ├── bridge.inc │ │ │ │ │ ├── bridge_cc.inc │ │ │ │ │ ├── bridge_extern.h │ │ │ │ │ └── export.inc │ │ │ │ ├── bitcast │ │ │ │ │ ├── bind.cc │ │ │ │ │ ├── bind_darwin.go │ │ │ │ │ ├── bind_linux.go │ │ │ │ │ ├── bridge.h │ │ │ │ │ ├── bridge.inc │ │ │ │ │ ├── bridge_cc.inc │ │ │ │ │ ├── bridge_extern.h │ │ │ │ │ └── export.inc │ │ │ │ ├── bitwise │ │ │ │ │ ├── bind.cc │ │ │ │ │ ├── bind_darwin.go │ │ │ │ │ ├── bind_linux.go │ │ │ │ │ ├── bridge.h │ │ │ │ │ ├── bridge.inc │ │ │ │ │ ├── bridge_cc.inc │ │ │ │ │ ├── bridge_extern.h │ │ │ │ │ └── export.inc │ │ │ │ ├── cast_date_time │ │ │ │ │ ├── bind.cc │ │ │ │ │ ├── bind_darwin.go │ │ │ │ │ ├── bind_linux.go │ │ │ │ │ ├── bridge.h │ │ │ │ │ ├── bridge.inc │ │ │ │ │ ├── bridge_cc.inc │ │ │ │ │ ├── bridge_extern.h │ │ │ │ │ └── export.inc │ │ │ │ ├── common_proto │ │ │ │ │ ├── bind.cc │ │ │ │ │ ├── bind_darwin.go │ │ │ │ │ ├── bind_linux.go │ │ │ │ │ ├── bridge.h │ │ │ │ │ ├── bridge.inc │ │ │ │ │ ├── bridge_cc.inc │ │ │ │ │ ├── bridge_extern.h │ │ │ │ │ └── export.inc │ │ │ │ ├── comparison │ │ │ │ │ ├── bind.cc │ │ │ │ │ ├── bind_darwin.go │ │ │ │ │ ├── bind_linux.go │ │ │ │ │ ├── bridge.h │ │ │ │ │ ├── bridge.inc │ │ │ │ │ ├── bridge_cc.inc │ │ │ │ │ ├── bridge_extern.h │ │ │ │ │ └── export.inc │ │ │ │ ├── convert │ │ │ │ │ ├── bind.cc │ │ │ │ │ ├── bind_darwin.go │ │ │ │ │ ├── bind_linux.go │ │ │ │ │ ├── bridge.h │ │ │ │ │ ├── bridge.inc │ │ │ │ │ ├── bridge_cc.inc │ │ │ │ │ ├── bridge_extern.h │ │ │ │ │ └── export.inc │ │ │ │ ├── convert_internal │ │ │ │ │ ├── bind.cc │ │ │ │ │ ├── bind_darwin.go │ │ │ │ │ ├── bind_linux.go │ │ │ │ │ ├── bridge.h │ │ │ │ │ ├── bridge.inc │ │ │ │ │ ├── bridge_cc.inc │ │ │ │ │ ├── bridge_extern.h │ │ │ │ │ └── export.inc │ │ │ │ ├── convert_proto │ │ │ │ │ ├── bind.cc │ │ │ │ │ ├── bind_darwin.go │ │ │ │ │ ├── bind_linux.go │ │ │ │ │ ├── bridge.h │ │ │ │ │ ├── bridge.inc │ │ │ │ │ ├── bridge_cc.inc │ │ │ │ │ ├── bridge_extern.h │ │ │ │ │ └── export.inc │ │ │ │ ├── convert_string │ │ │ │ │ ├── bind.cc │ │ │ │ │ ├── bind_darwin.go │ │ │ │ │ ├── bind_linux.go │ │ │ │ │ ├── bridge.h │ │ │ │ │ ├── bridge.inc │ │ │ │ │ ├── bridge_cc.inc │ │ │ │ │ ├── bridge_extern.h │ │ │ │ │ └── export.inc │ │ │ │ ├── convert_string_with_format │ │ │ │ │ ├── bind.cc │ │ │ │ │ ├── bind_darwin.go │ │ │ │ │ ├── bind_linux.go │ │ │ │ │ ├── bridge.h │ │ │ │ │ ├── bridge.inc │ │ │ │ │ ├── bridge_cc.inc │ │ │ │ │ ├── bridge_extern.h │ │ │ │ │ └── export.inc │ │ │ │ ├── date_time_util │ │ │ │ │ ├── bind.cc │ │ │ │ │ ├── bind_darwin.go │ │ │ │ │ ├── bind_linux.go │ │ │ │ │ ├── bridge.h │ │ │ │ │ ├── bridge.inc │ │ │ │ │ ├── bridge_cc.inc │ │ │ │ │ ├── bridge_extern.h │ │ │ │ │ └── export.inc │ │ │ │ ├── date_time_util_internal │ │ │ │ │ ├── bind.cc │ │ │ │ │ ├── bind_darwin.go │ │ │ │ │ ├── bind_linux.go │ │ │ │ │ ├── bridge.h │ │ │ │ │ ├── bridge.inc │ │ │ │ │ ├── bridge_cc.inc │ │ │ │ │ ├── bridge_extern.h │ │ │ │ │ └── export.inc │ │ │ │ ├── datetime_cc_proto │ │ │ │ │ ├── bind.cc │ │ │ │ │ ├── bind.go │ │ │ │ │ ├── bridge.h │ │ │ │ │ ├── bridge.inc │ │ │ │ │ ├── bridge_cc.inc │ │ │ │ │ ├── bridge_extern.h │ │ │ │ │ └── export.inc │ │ │ │ ├── format_max_output_width │ │ │ │ │ ├── bind.cc │ │ │ │ │ ├── bind_darwin.go │ │ │ │ │ ├── bind_linux.go │ │ │ │ │ ├── bridge.h │ │ │ │ │ ├── bridge.inc │ │ │ │ │ ├── bridge_cc.inc │ │ │ │ │ ├── bridge_extern.h │ │ │ │ │ └── export.inc │ │ │ │ ├── functions.go │ │ │ │ ├── generate_array │ │ │ │ │ ├── bind.cc │ │ │ │ │ ├── bind_darwin.go │ │ │ │ │ ├── bind_linux.go │ │ │ │ │ ├── bridge.h │ │ │ │ │ ├── bridge.inc │ │ │ │ │ ├── bridge_cc.inc │ │ │ │ │ ├── bridge_extern.h │ │ │ │ │ └── export.inc │ │ │ │ ├── hash │ │ │ │ │ ├── bind.cc │ │ │ │ │ ├── bind_darwin.go │ │ │ │ │ ├── bind_linux.go │ │ │ │ │ ├── bridge.h │ │ │ │ │ ├── bridge.inc │ │ │ │ │ ├── bridge_cc.inc │ │ │ │ │ ├── bridge_extern.h │ │ │ │ │ └── export.inc │ │ │ │ ├── input_format_string_max_width │ │ │ │ │ ├── bind.cc │ │ │ │ │ ├── bind_darwin.go │ │ │ │ │ ├── bind_linux.go │ │ │ │ │ ├── bridge.h │ │ │ │ │ ├── bridge.inc │ │ │ │ │ ├── bridge_cc.inc │ │ │ │ │ ├── bridge_extern.h │ │ │ │ │ └── export.inc │ │ │ │ ├── json │ │ │ │ │ ├── bind.cc │ │ │ │ │ ├── bind_darwin.go │ │ │ │ │ ├── bind_linux.go │ │ │ │ │ ├── bridge.h │ │ │ │ │ ├── bridge.inc │ │ │ │ │ ├── bridge_cc.inc │ │ │ │ │ ├── bridge_extern.h │ │ │ │ │ └── export.inc │ │ │ │ ├── json_format │ │ │ │ │ ├── bind.cc │ │ │ │ │ ├── bind_darwin.go │ │ │ │ │ ├── bind_linux.go │ │ │ │ │ ├── bridge.h │ │ │ │ │ ├── bridge.inc │ │ │ │ │ ├── bridge_cc.inc │ │ │ │ │ ├── bridge_extern.h │ │ │ │ │ └── export.inc │ │ │ │ ├── json_internal │ │ │ │ │ ├── bind.cc │ │ │ │ │ ├── bind_darwin.go │ │ │ │ │ ├── bind_linux.go │ │ │ │ │ ├── bridge.h │ │ │ │ │ ├── bridge.inc │ │ │ │ │ ├── bridge_cc.inc │ │ │ │ │ ├── bridge_extern.h │ │ │ │ │ └── export.inc │ │ │ │ ├── like │ │ │ │ │ ├── bind.cc │ │ │ │ │ ├── bind_darwin.go │ │ │ │ │ ├── bind_linux.go │ │ │ │ │ ├── bridge.h │ │ │ │ │ ├── bridge.inc │ │ │ │ │ ├── bridge_cc.inc │ │ │ │ │ ├── bridge_extern.h │ │ │ │ │ └── export.inc │ │ │ │ ├── math │ │ │ │ │ ├── bind.cc │ │ │ │ │ ├── bind_darwin.go │ │ │ │ │ ├── bind_linux.go │ │ │ │ │ ├── bridge.h │ │ │ │ │ ├── bridge.inc │ │ │ │ │ ├── bridge_cc.inc │ │ │ │ │ ├── bridge_extern.h │ │ │ │ │ └── export.inc │ │ │ │ ├── net │ │ │ │ │ ├── bind.cc │ │ │ │ │ ├── bind_darwin.go │ │ │ │ │ ├── bind_linux.go │ │ │ │ │ ├── bridge.h │ │ │ │ │ ├── bridge.inc │ │ │ │ │ ├── bridge_cc.inc │ │ │ │ │ ├── bridge_extern.h │ │ │ │ │ └── export.inc │ │ │ │ ├── normalize_mode_cc_proto │ │ │ │ │ ├── bind.cc │ │ │ │ │ ├── bind.go │ │ │ │ │ ├── bridge.h │ │ │ │ │ ├── bridge.inc │ │ │ │ │ ├── bridge_cc.inc │ │ │ │ │ ├── bridge_extern.h │ │ │ │ │ └── export.inc │ │ │ │ ├── numeric │ │ │ │ │ ├── bind.cc │ │ │ │ │ ├── bind_darwin.go │ │ │ │ │ ├── bind_linux.go │ │ │ │ │ ├── bridge.h │ │ │ │ │ ├── bridge.inc │ │ │ │ │ ├── bridge_cc.inc │ │ │ │ │ ├── bridge_extern.h │ │ │ │ │ └── export.inc │ │ │ │ ├── parse_date_time │ │ │ │ │ ├── bind.cc │ │ │ │ │ ├── bind_darwin.go │ │ │ │ │ ├── bind_linux.go │ │ │ │ │ ├── bridge.h │ │ │ │ │ ├── bridge.inc │ │ │ │ │ ├── bridge_cc.inc │ │ │ │ │ ├── bridge_extern.h │ │ │ │ │ └── export.inc │ │ │ │ ├── parse_date_time_utils │ │ │ │ │ ├── bind.cc │ │ │ │ │ ├── bind_darwin.go │ │ │ │ │ ├── bind_linux.go │ │ │ │ │ ├── bridge.h │ │ │ │ │ ├── bridge.inc │ │ │ │ │ ├── bridge_cc.inc │ │ │ │ │ ├── bridge_extern.h │ │ │ │ │ └── export.inc │ │ │ │ ├── percentile │ │ │ │ │ ├── bind.cc │ │ │ │ │ ├── bind_darwin.go │ │ │ │ │ ├── bind_linux.go │ │ │ │ │ ├── bridge.h │ │ │ │ │ ├── bridge.inc │ │ │ │ │ ├── bridge_cc.inc │ │ │ │ │ ├── bridge_extern.h │ │ │ │ │ └── export.inc │ │ │ │ ├── regexp │ │ │ │ │ ├── bind.cc │ │ │ │ │ ├── bind_darwin.go │ │ │ │ │ ├── bind_linux.go │ │ │ │ │ ├── bridge.h │ │ │ │ │ ├── bridge.inc │ │ │ │ │ ├── bridge_cc.inc │ │ │ │ │ ├── bridge_extern.h │ │ │ │ │ └── export.inc │ │ │ │ ├── string │ │ │ │ │ ├── bind.cc │ │ │ │ │ ├── bind_darwin.go │ │ │ │ │ ├── bind_linux.go │ │ │ │ │ ├── bridge.h │ │ │ │ │ ├── bridge.inc │ │ │ │ │ ├── bridge_cc.inc │ │ │ │ │ ├── bridge_extern.h │ │ │ │ │ └── export.inc │ │ │ │ ├── string_format │ │ │ │ │ ├── bind.cc │ │ │ │ │ ├── bind_darwin.go │ │ │ │ │ ├── bind_linux.go │ │ │ │ │ ├── bridge.h │ │ │ │ │ ├── bridge.inc │ │ │ │ │ ├── bridge_cc.inc │ │ │ │ │ ├── bridge_extern.h │ │ │ │ │ └── export.inc │ │ │ │ ├── string_with_collation │ │ │ │ │ ├── bind.cc │ │ │ │ │ ├── bind_darwin.go │ │ │ │ │ ├── bind_linux.go │ │ │ │ │ ├── bridge.h │ │ │ │ │ ├── bridge.inc │ │ │ │ │ ├── bridge_cc.inc │ │ │ │ │ ├── bridge_extern.h │ │ │ │ │ └── export.inc │ │ │ │ ├── to_json │ │ │ │ │ ├── bind.cc │ │ │ │ │ ├── bind_darwin.go │ │ │ │ │ ├── bind_linux.go │ │ │ │ │ ├── bridge.h │ │ │ │ │ ├── bridge.inc │ │ │ │ │ ├── bridge_cc.inc │ │ │ │ │ ├── bridge_extern.h │ │ │ │ │ └── export.inc │ │ │ │ ├── util │ │ │ │ │ ├── bind.cc │ │ │ │ │ ├── bind_darwin.go │ │ │ │ │ ├── bind_linux.go │ │ │ │ │ ├── bridge.h │ │ │ │ │ ├── bridge.inc │ │ │ │ │ ├── bridge_cc.inc │ │ │ │ │ ├── bridge_extern.h │ │ │ │ │ └── export.inc │ │ │ │ └── uuid │ │ │ │ │ ├── bind.cc │ │ │ │ │ ├── bind_darwin.go │ │ │ │ │ ├── bind_linux.go │ │ │ │ │ ├── bridge.h │ │ │ │ │ ├── bridge.inc │ │ │ │ │ ├── bridge_cc.inc │ │ │ │ │ ├── bridge_extern.h │ │ │ │ │ └── export.inc │ │ │ ├── id_string │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── interval_value │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── json_value │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── language_options │ │ │ │ ├── bind.cc │ │ │ │ ├── bind.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── literal_remover │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── multi_catalog │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── non_sql_function │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── numeric_constants │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── numeric_parser │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── numeric_value │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── options_cc_proto │ │ │ │ ├── bind.cc │ │ │ │ ├── bind.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── parse_helpers │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── parse_location │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── parse_location_range_cc_proto │ │ │ │ ├── bind.cc │ │ │ │ ├── bind.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── parse_resume_location │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── parse_resume_location_cc_proto │ │ │ │ ├── bind.cc │ │ │ │ ├── bind.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── proto │ │ │ │ └── type_annotation_cc_proto │ │ │ │ │ ├── bind.cc │ │ │ │ │ ├── bind.go │ │ │ │ │ ├── bridge.h │ │ │ │ │ ├── bridge.inc │ │ │ │ │ ├── bridge_cc.inc │ │ │ │ │ ├── bridge_extern.h │ │ │ │ │ └── export.inc │ │ │ ├── proto_value_conversion │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── signature_match_result │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── simple_catalog │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── simple_constant_cc_proto │ │ │ │ ├── bind.cc │ │ │ │ ├── bind.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── simple_table_cc_proto │ │ │ │ ├── bind.cc │ │ │ │ ├── bind.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── simple_value_cc_proto │ │ │ │ ├── bind.cc │ │ │ │ ├── bind.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── sql_formatter │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── sql_function │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── sql_tvf │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── strings │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── templated_sql_function │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── templated_sql_tvf │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── type │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── type_annotation_cc_proto │ │ │ │ ├── bind.cc │ │ │ │ ├── bind.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── type_cc_proto │ │ │ │ ├── bind.cc │ │ │ │ ├── bind.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── type_parameters_cc_proto │ │ │ │ ├── bind.cc │ │ │ │ ├── bind.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── types │ │ │ │ ├── timestamp_util │ │ │ │ │ ├── bind.cc │ │ │ │ │ ├── bind_darwin.go │ │ │ │ │ ├── bind_linux.go │ │ │ │ │ ├── bridge.h │ │ │ │ │ ├── bridge.inc │ │ │ │ │ ├── bridge_cc.inc │ │ │ │ │ ├── bridge_extern.h │ │ │ │ │ └── export.inc │ │ │ │ ├── types │ │ │ │ │ ├── bind.cc │ │ │ │ │ ├── bind_darwin.go │ │ │ │ │ ├── bind_linux.go │ │ │ │ │ ├── bridge.h │ │ │ │ │ ├── bridge.inc │ │ │ │ │ ├── bridge_cc.inc │ │ │ │ │ ├── bridge_extern.h │ │ │ │ │ └── export.inc │ │ │ │ └── value_representations │ │ │ │ │ ├── bind.cc │ │ │ │ │ ├── bind_darwin.go │ │ │ │ │ ├── bind_linux.go │ │ │ │ │ ├── bridge.h │ │ │ │ │ ├── bridge.inc │ │ │ │ │ ├── bridge_cc.inc │ │ │ │ │ ├── bridge_extern.h │ │ │ │ │ └── export.inc │ │ │ ├── value │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── value_cc_proto │ │ │ │ ├── bind.cc │ │ │ │ ├── bind.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ └── value_content │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ ├── reference_impl │ │ │ ├── algebrizer │ │ │ │ ├── bind.cc │ │ │ │ ├── bind.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── common │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── evaluation │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── evaluator_table_iterator_cc_proto │ │ │ │ ├── bind.cc │ │ │ │ ├── bind.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── functions │ │ │ │ ├── hash │ │ │ │ │ ├── bind.cc │ │ │ │ │ ├── bind_darwin.go │ │ │ │ │ ├── bind_linux.go │ │ │ │ │ ├── bridge.h │ │ │ │ │ ├── bridge.inc │ │ │ │ │ ├── bridge_cc.inc │ │ │ │ │ ├── bridge_extern.h │ │ │ │ │ └── export.inc │ │ │ │ ├── json │ │ │ │ │ ├── bind.cc │ │ │ │ │ ├── bind_darwin.go │ │ │ │ │ ├── bind_linux.go │ │ │ │ │ ├── bridge.h │ │ │ │ │ ├── bridge.inc │ │ │ │ │ ├── bridge_cc.inc │ │ │ │ │ ├── bridge_extern.h │ │ │ │ │ └── export.inc │ │ │ │ ├── register_all │ │ │ │ │ ├── bind.cc │ │ │ │ │ ├── bind_darwin.go │ │ │ │ │ ├── bind_linux.go │ │ │ │ │ ├── bridge.h │ │ │ │ │ ├── bridge.inc │ │ │ │ │ ├── bridge_cc.inc │ │ │ │ │ ├── bridge_extern.h │ │ │ │ │ └── export.inc │ │ │ │ ├── string_with_collation │ │ │ │ │ ├── bind.cc │ │ │ │ │ ├── bind_darwin.go │ │ │ │ │ ├── bind_linux.go │ │ │ │ │ ├── bridge.h │ │ │ │ │ ├── bridge.inc │ │ │ │ │ ├── bridge_cc.inc │ │ │ │ │ ├── bridge_extern.h │ │ │ │ │ └── export.inc │ │ │ │ └── uuid │ │ │ │ │ ├── bind.cc │ │ │ │ │ ├── bind_darwin.go │ │ │ │ │ ├── bind_linux.go │ │ │ │ │ ├── bridge.h │ │ │ │ │ ├── bridge.inc │ │ │ │ │ ├── bridge_cc.inc │ │ │ │ │ ├── bridge_extern.h │ │ │ │ │ └── export.inc │ │ │ ├── parameters │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── proto_util │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── rewrite_flags │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── statement_evaluator │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── type_helpers │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── type_parameter_constraints │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ └── variable_generator │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ ├── resolved_ast │ │ │ ├── comparator │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── make_node_vector │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── resolved_ast │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── resolved_ast_cc_proto │ │ │ │ ├── bind.cc │ │ │ │ ├── bind.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── resolved_ast_enums_cc_proto │ │ │ │ ├── bind.cc │ │ │ │ ├── bind.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── resolved_node_kind_cc_proto │ │ │ │ ├── bind.cc │ │ │ │ ├── bind.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── rewrite_utils │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── serialization_cc_proto │ │ │ │ ├── bind.cc │ │ │ │ ├── bind.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ ├── sql_builder │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ │ └── validator │ │ │ │ ├── bind.cc │ │ │ │ ├── bind_darwin.go │ │ │ │ ├── bind_linux.go │ │ │ │ ├── bridge.h │ │ │ │ ├── bridge.inc │ │ │ │ ├── bridge_cc.inc │ │ │ │ ├── bridge_extern.h │ │ │ │ └── export.inc │ │ └── scripting │ │ │ ├── control_flow_graph │ │ │ ├── bind.cc │ │ │ ├── bind_darwin.go │ │ │ ├── bind_linux.go │ │ │ ├── bridge.h │ │ │ ├── bridge.inc │ │ │ ├── bridge_cc.inc │ │ │ ├── bridge_extern.h │ │ │ └── export.inc │ │ │ ├── error_helpers │ │ │ ├── bind.cc │ │ │ ├── bind_darwin.go │ │ │ ├── bind_linux.go │ │ │ ├── bridge.h │ │ │ ├── bridge.inc │ │ │ ├── bridge_cc.inc │ │ │ ├── bridge_extern.h │ │ │ └── export.inc │ │ │ ├── parse_helpers │ │ │ ├── bind.cc │ │ │ ├── bind_darwin.go │ │ │ ├── bind_linux.go │ │ │ ├── bridge.h │ │ │ ├── bridge.inc │ │ │ ├── bridge_cc.inc │ │ │ ├── bridge_extern.h │ │ │ └── export.inc │ │ │ ├── parsed_script │ │ │ ├── bind.cc │ │ │ ├── bind_darwin.go │ │ │ ├── bind_linux.go │ │ │ ├── bridge.h │ │ │ ├── bridge.inc │ │ │ ├── bridge_cc.inc │ │ │ ├── bridge_extern.h │ │ │ └── export.inc │ │ │ ├── script_exception_cc_proto │ │ │ ├── bind.cc │ │ │ ├── bind.go │ │ │ ├── bridge.h │ │ │ ├── bridge.inc │ │ │ ├── bridge_cc.inc │ │ │ ├── bridge_extern.h │ │ │ └── export.inc │ │ │ ├── script_executor │ │ │ ├── bind.cc │ │ │ ├── bind_darwin.go │ │ │ ├── bind_linux.go │ │ │ ├── bridge.h │ │ │ ├── bridge.inc │ │ │ ├── bridge_cc.inc │ │ │ ├── bridge_extern.h │ │ │ └── export.inc │ │ │ ├── script_executor_state_cc_proto │ │ │ ├── bind.cc │ │ │ ├── bind.go │ │ │ ├── bridge.h │ │ │ ├── bridge.inc │ │ │ ├── bridge_cc.inc │ │ │ ├── bridge_extern.h │ │ │ └── export.inc │ │ │ ├── script_segment │ │ │ ├── bind.cc │ │ │ ├── bind_darwin.go │ │ │ ├── bind_linux.go │ │ │ ├── bridge.h │ │ │ ├── bridge.inc │ │ │ ├── bridge_cc.inc │ │ │ ├── bridge_extern.h │ │ │ └── export.inc │ │ │ ├── stack_frame │ │ │ ├── bind.cc │ │ │ ├── bind_darwin.go │ │ │ ├── bind_linux.go │ │ │ ├── bridge.h │ │ │ ├── bridge.inc │ │ │ ├── bridge_cc.inc │ │ │ ├── bridge_extern.h │ │ │ └── export.inc │ │ │ ├── type_aliases │ │ │ ├── bind.cc │ │ │ ├── bind_darwin.go │ │ │ ├── bind_linux.go │ │ │ ├── bridge.h │ │ │ ├── bridge.inc │ │ │ ├── bridge_cc.inc │ │ │ ├── bridge_extern.h │ │ │ └── export.inc │ │ │ └── variable_cc_proto │ │ │ ├── bind.cc │ │ │ ├── bind.go │ │ │ ├── bridge.h │ │ │ ├── bridge.inc │ │ │ ├── bridge_cc.inc │ │ │ ├── bridge_extern.h │ │ │ └── export.inc │ ├── googleapis │ │ ├── dummy.go │ │ └── google │ │ │ ├── dummy.go │ │ │ └── type │ │ │ ├── date.pb.cc │ │ │ ├── date.pb.h │ │ │ ├── dummy.go │ │ │ ├── latlng.pb.cc │ │ │ ├── latlng.pb.h │ │ │ ├── timeofday.pb.cc │ │ │ └── timeofday.pb.h │ ├── gtest │ │ ├── dummy.go │ │ └── gtest │ │ │ ├── dummy.go │ │ │ ├── gtest-assertion-result.h │ │ │ ├── gtest-death-test.h │ │ │ ├── gtest-matchers.h │ │ │ ├── gtest-message.h │ │ │ ├── gtest-param-test.h │ │ │ ├── gtest-printers.h │ │ │ ├── gtest-spi.h │ │ │ ├── gtest-test-part.h │ │ │ ├── gtest-typed-test.h │ │ │ ├── gtest.h │ │ │ ├── gtest_pred_impl.h │ │ │ ├── gtest_prod.h │ │ │ └── internal │ │ │ ├── custom │ │ │ ├── README.md │ │ │ ├── dummy.go │ │ │ ├── gtest-port.h │ │ │ ├── gtest-printers.h │ │ │ └── gtest.h │ │ │ ├── dummy.go │ │ │ ├── gtest-death-test-internal.h │ │ │ ├── gtest-filepath.h │ │ │ ├── gtest-internal.h │ │ │ ├── gtest-param-util.h │ │ │ ├── gtest-port-arch.h │ │ │ ├── gtest-port.h │ │ │ ├── gtest-string.h │ │ │ └── gtest-type-util.h │ ├── icu │ │ ├── common │ │ │ ├── Makefile.in │ │ │ ├── appendable.cpp │ │ │ ├── bmpset.cpp │ │ │ ├── bmpset.h │ │ │ ├── brkeng.cpp │ │ │ ├── brkeng.h │ │ │ ├── brkiter.cpp │ │ │ ├── bytesinkutil.cpp │ │ │ ├── bytesinkutil.h │ │ │ ├── bytestream.cpp │ │ │ ├── bytestrie.cpp │ │ │ ├── bytestriebuilder.cpp │ │ │ ├── bytestrieiterator.cpp │ │ │ ├── caniter.cpp │ │ │ ├── capi_helper.h │ │ │ ├── characterproperties.cpp │ │ │ ├── chariter.cpp │ │ │ ├── charstr.cpp │ │ │ ├── charstr.h │ │ │ ├── cmemory.cpp │ │ │ ├── cmemory.h │ │ │ ├── common.rc │ │ │ ├── common.vcxproj │ │ │ ├── common.vcxproj.filters │ │ │ ├── common_uwp.vcxproj │ │ │ ├── cpputils.h │ │ │ ├── cstr.cpp │ │ │ ├── cstr.h │ │ │ ├── cstring.cpp │ │ │ ├── cstring.h │ │ │ ├── cwchar.cpp │ │ │ ├── cwchar.h │ │ │ ├── dictbe.cpp │ │ │ ├── dictbe.h │ │ │ ├── dictionarydata.cpp │ │ │ ├── dictionarydata.h │ │ │ ├── dtintrv.cpp │ │ │ ├── dummy.go │ │ │ ├── edits.cpp │ │ │ ├── errorcode.cpp │ │ │ ├── filteredbrk.cpp │ │ │ ├── filterednormalizer2.cpp │ │ │ ├── hash.h │ │ │ ├── icudataver.cpp │ │ │ ├── icuplug.cpp │ │ │ ├── icuplugimp.h │ │ │ ├── loadednormalizer2impl.cpp │ │ │ ├── localebuilder.cpp │ │ │ ├── localematcher.cpp │ │ │ ├── localeprioritylist.cpp │ │ │ ├── localeprioritylist.h │ │ │ ├── localsvc.h │ │ │ ├── locavailable.cpp │ │ │ ├── locbased.cpp │ │ │ ├── locbased.h │ │ │ ├── locdispnames.cpp │ │ │ ├── locdistance.cpp │ │ │ ├── locdistance.h │ │ │ ├── locdspnm.cpp │ │ │ ├── locid.cpp │ │ │ ├── loclikely.cpp │ │ │ ├── loclikelysubtags.cpp │ │ │ ├── loclikelysubtags.h │ │ │ ├── locmap.cpp │ │ │ ├── locmap.h │ │ │ ├── locresdata.cpp │ │ │ ├── locutil.cpp │ │ │ ├── locutil.h │ │ │ ├── lsr.cpp │ │ │ ├── lsr.h │ │ │ ├── messageimpl.h │ │ │ ├── messagepattern.cpp │ │ │ ├── msvcres.h │ │ │ ├── mutex.h │ │ │ ├── norm2_nfc_data.h │ │ │ ├── norm2allmodes.h │ │ │ ├── normalizer2.cpp │ │ │ ├── normalizer2impl.cpp │ │ │ ├── normalizer2impl.h │ │ │ ├── normlzr.cpp │ │ │ ├── parsepos.cpp │ │ │ ├── patternprops.cpp │ │ │ ├── patternprops.h │ │ │ ├── pluralmap.cpp │ │ │ ├── pluralmap.h │ │ │ ├── propname.cpp │ │ │ ├── propname.h │ │ │ ├── propname_data.h │ │ │ ├── propsvec.cpp │ │ │ ├── propsvec.h │ │ │ ├── punycode.cpp │ │ │ ├── punycode.h │ │ │ ├── putil.cpp │ │ │ ├── putilimp.h │ │ │ ├── rbbi.cpp │ │ │ ├── rbbi_cache.cpp │ │ │ ├── rbbi_cache.h │ │ │ ├── rbbicst.pl │ │ │ ├── rbbidata.cpp │ │ │ ├── rbbidata.h │ │ │ ├── rbbinode.cpp │ │ │ ├── rbbinode.h │ │ │ ├── rbbirb.cpp │ │ │ ├── rbbirb.h │ │ │ ├── rbbirpt.h │ │ │ ├── rbbiscan.cpp │ │ │ ├── rbbiscan.h │ │ │ ├── rbbisetb.cpp │ │ │ ├── rbbisetb.h │ │ │ ├── rbbistbl.cpp │ │ │ ├── rbbitblb.cpp │ │ │ ├── rbbitblb.h │ │ │ ├── resbund.cpp │ │ │ ├── resbund_cnv.cpp │ │ │ ├── resource.cpp │ │ │ ├── resource.h │ │ │ ├── restrace.cpp │ │ │ ├── restrace.h │ │ │ ├── ruleiter.cpp │ │ │ ├── ruleiter.h │ │ │ ├── schriter.cpp │ │ │ ├── serv.cpp │ │ │ ├── serv.h │ │ │ ├── servlk.cpp │ │ │ ├── servlkf.cpp │ │ │ ├── servloc.h │ │ │ ├── servls.cpp │ │ │ ├── servnotf.cpp │ │ │ ├── servnotf.h │ │ │ ├── servrbf.cpp │ │ │ ├── servslkf.cpp │ │ │ ├── sharedobject.cpp │ │ │ ├── sharedobject.h │ │ │ ├── simpleformatter.cpp │ │ │ ├── sprpimpl.h │ │ │ ├── static_unicode_sets.cpp │ │ │ ├── static_unicode_sets.h │ │ │ ├── stringpiece.cpp │ │ │ ├── stringtriebuilder.cpp │ │ │ ├── uarrsort.cpp │ │ │ ├── uarrsort.h │ │ │ ├── uassert.h │ │ │ ├── ubidi.cpp │ │ │ ├── ubidi_props.cpp │ │ │ ├── ubidi_props.h │ │ │ ├── ubidi_props_data.h │ │ │ ├── ubidiimp.h │ │ │ ├── ubidiln.cpp │ │ │ ├── ubiditransform.cpp │ │ │ ├── ubidiwrt.cpp │ │ │ ├── ubrk.cpp │ │ │ ├── ubrkimpl.h │ │ │ ├── ucase.cpp │ │ │ ├── ucase.h │ │ │ ├── ucase_props_data.h │ │ │ ├── ucasemap.cpp │ │ │ ├── ucasemap_imp.h │ │ │ ├── ucasemap_titlecase_brkiter.cpp │ │ │ ├── ucat.cpp │ │ │ ├── uchar.cpp │ │ │ ├── uchar_props_data.h │ │ │ ├── ucharstrie.cpp │ │ │ ├── ucharstriebuilder.cpp │ │ │ ├── ucharstrieiterator.cpp │ │ │ ├── uchriter.cpp │ │ │ ├── ucln.h │ │ │ ├── ucln_cmn.cpp │ │ │ ├── ucln_cmn.h │ │ │ ├── ucln_imp.h │ │ │ ├── ucmndata.cpp │ │ │ ├── ucmndata.h │ │ │ ├── ucnv.cpp │ │ │ ├── ucnv2022.cpp │ │ │ ├── ucnv_bld.cpp │ │ │ ├── ucnv_bld.h │ │ │ ├── ucnv_cb.cpp │ │ │ ├── ucnv_cnv.cpp │ │ │ ├── ucnv_cnv.h │ │ │ ├── ucnv_ct.cpp │ │ │ ├── ucnv_err.cpp │ │ │ ├── ucnv_ext.cpp │ │ │ ├── ucnv_ext.h │ │ │ ├── ucnv_imp.h │ │ │ ├── ucnv_io.cpp │ │ │ ├── ucnv_io.h │ │ │ ├── ucnv_lmb.cpp │ │ │ ├── ucnv_set.cpp │ │ │ ├── ucnv_u16.cpp │ │ │ ├── ucnv_u32.cpp │ │ │ ├── ucnv_u7.cpp │ │ │ ├── ucnv_u8.cpp │ │ │ ├── ucnvbocu.cpp │ │ │ ├── ucnvdisp.cpp │ │ │ ├── ucnvhz.cpp │ │ │ ├── ucnvisci.cpp │ │ │ ├── ucnvlat1.cpp │ │ │ ├── ucnvmbcs.cpp │ │ │ ├── ucnvmbcs.h │ │ │ ├── ucnvscsu.cpp │ │ │ ├── ucnvsel.cpp │ │ │ ├── ucol_data.h │ │ │ ├── ucol_swp.cpp │ │ │ ├── ucol_swp.h │ │ │ ├── ucptrie.cpp │ │ │ ├── ucptrie_impl.h │ │ │ ├── ucurr.cpp │ │ │ ├── ucurrimp.h │ │ │ ├── udata.cpp │ │ │ ├── udatamem.cpp │ │ │ ├── udatamem.h │ │ │ ├── udataswp.cpp │ │ │ ├── udataswp.h │ │ │ ├── uelement.h │ │ │ ├── uenum.cpp │ │ │ ├── uenumimp.h │ │ │ ├── uhash.cpp │ │ │ ├── uhash.h │ │ │ ├── uhash_us.cpp │ │ │ ├── uidna.cpp │ │ │ ├── uinit.cpp │ │ │ ├── uinvchar.cpp │ │ │ ├── uinvchar.h │ │ │ ├── uiter.cpp │ │ │ ├── ulayout_props.h │ │ │ ├── ulist.cpp │ │ │ ├── ulist.h │ │ │ ├── uloc.cpp │ │ │ ├── uloc_keytype.cpp │ │ │ ├── uloc_tag.cpp │ │ │ ├── ulocimp.h │ │ │ ├── umapfile.cpp │ │ │ ├── umapfile.h │ │ │ ├── umath.cpp │ │ │ ├── umutablecptrie.cpp │ │ │ ├── umutex.cpp │ │ │ ├── umutex.h │ │ │ ├── unames.cpp │ │ │ ├── unicode │ │ │ │ ├── appendable.h │ │ │ │ ├── brkiter.h │ │ │ │ ├── bytestream.h │ │ │ │ ├── bytestrie.h │ │ │ │ ├── bytestriebuilder.h │ │ │ │ ├── caniter.h │ │ │ │ ├── casemap.h │ │ │ │ ├── char16ptr.h │ │ │ │ ├── chariter.h │ │ │ │ ├── dbbi.h │ │ │ │ ├── docmain.h │ │ │ │ ├── dtintrv.h │ │ │ │ ├── dummy.go │ │ │ │ ├── edits.h │ │ │ │ ├── enumset.h │ │ │ │ ├── errorcode.h │ │ │ │ ├── filteredbrk.h │ │ │ │ ├── icudataver.h │ │ │ │ ├── icuplug.h │ │ │ │ ├── idna.h │ │ │ │ ├── localebuilder.h │ │ │ │ ├── localematcher.h │ │ │ │ ├── localpointer.h │ │ │ │ ├── locdspnm.h │ │ │ │ ├── locid.h │ │ │ │ ├── messagepattern.h │ │ │ │ ├── normalizer2.h │ │ │ │ ├── normlzr.h │ │ │ │ ├── parseerr.h │ │ │ │ ├── parsepos.h │ │ │ │ ├── platform.h │ │ │ │ ├── ptypes.h │ │ │ │ ├── putil.h │ │ │ │ ├── rbbi.h │ │ │ │ ├── rep.h │ │ │ │ ├── resbund.h │ │ │ │ ├── schriter.h │ │ │ │ ├── simpleformatter.h │ │ │ │ ├── std_string.h │ │ │ │ ├── strenum.h │ │ │ │ ├── stringoptions.h │ │ │ │ ├── stringpiece.h │ │ │ │ ├── stringtriebuilder.h │ │ │ │ ├── symtable.h │ │ │ │ ├── ubidi.h │ │ │ │ ├── ubiditransform.h │ │ │ │ ├── ubrk.h │ │ │ │ ├── ucasemap.h │ │ │ │ ├── ucat.h │ │ │ │ ├── uchar.h │ │ │ │ ├── ucharstrie.h │ │ │ │ ├── ucharstriebuilder.h │ │ │ │ ├── uchriter.h │ │ │ │ ├── uclean.h │ │ │ │ ├── ucnv.h │ │ │ │ ├── ucnv_cb.h │ │ │ │ ├── ucnv_err.h │ │ │ │ ├── ucnvsel.h │ │ │ │ ├── uconfig.h │ │ │ │ ├── ucpmap.h │ │ │ │ ├── ucptrie.h │ │ │ │ ├── ucurr.h │ │ │ │ ├── udata.h │ │ │ │ ├── udisplaycontext.h │ │ │ │ ├── uenum.h │ │ │ │ ├── uidna.h │ │ │ │ ├── uiter.h │ │ │ │ ├── uldnames.h │ │ │ │ ├── uloc.h │ │ │ │ ├── umachine.h │ │ │ │ ├── umisc.h │ │ │ │ ├── umutablecptrie.h │ │ │ │ ├── unifilt.h │ │ │ │ ├── unifunct.h │ │ │ │ ├── unimatch.h │ │ │ │ ├── uniset.h │ │ │ │ ├── unistr.h │ │ │ │ ├── unorm.h │ │ │ │ ├── unorm2.h │ │ │ │ ├── uobject.h │ │ │ │ ├── urename.h │ │ │ │ ├── urep.h │ │ │ │ ├── ures.h │ │ │ │ ├── uscript.h │ │ │ │ ├── uset.h │ │ │ │ ├── usetiter.h │ │ │ │ ├── ushape.h │ │ │ │ ├── usprep.h │ │ │ │ ├── ustring.h │ │ │ │ ├── ustringtrie.h │ │ │ │ ├── utext.h │ │ │ │ ├── utf.h │ │ │ │ ├── utf16.h │ │ │ │ ├── utf32.h │ │ │ │ ├── utf8.h │ │ │ │ ├── utf_old.h │ │ │ │ ├── utrace.h │ │ │ │ ├── utypes.h │ │ │ │ ├── uvernum.h │ │ │ │ └── uversion.h │ │ │ ├── unifiedcache.cpp │ │ │ ├── unifiedcache.h │ │ │ ├── unifilt.cpp │ │ │ ├── unifunct.cpp │ │ │ ├── uniset.cpp │ │ │ ├── uniset_closure.cpp │ │ │ ├── uniset_props.cpp │ │ │ ├── unisetspan.cpp │ │ │ ├── unisetspan.h │ │ │ ├── unistr.cpp │ │ │ ├── unistr_case.cpp │ │ │ ├── unistr_case_locale.cpp │ │ │ ├── unistr_cnv.cpp │ │ │ ├── unistr_props.cpp │ │ │ ├── unistr_titlecase_brkiter.cpp │ │ │ ├── unistrappender.h │ │ │ ├── unorm.cpp │ │ │ ├── unormcmp.cpp │ │ │ ├── unormimp.h │ │ │ ├── uobject.cpp │ │ │ ├── uposixdefs.h │ │ │ ├── uprops.cpp │ │ │ ├── uprops.h │ │ │ ├── ures_cnv.cpp │ │ │ ├── uresbund.cpp │ │ │ ├── uresdata.cpp │ │ │ ├── uresdata.h │ │ │ ├── uresimp.h │ │ │ ├── ureslocs.h │ │ │ ├── usc_impl.cpp │ │ │ ├── usc_impl.h │ │ │ ├── uscript.cpp │ │ │ ├── uscript_props.cpp │ │ │ ├── uset.cpp │ │ │ ├── uset_imp.h │ │ │ ├── uset_props.cpp │ │ │ ├── usetiter.cpp │ │ │ ├── ushape.cpp │ │ │ ├── usprep.cpp │ │ │ ├── ustack.cpp │ │ │ ├── ustr_cnv.cpp │ │ │ ├── ustr_cnv.h │ │ │ ├── ustr_imp.h │ │ │ ├── ustr_titlecase_brkiter.cpp │ │ │ ├── ustr_wcs.cpp │ │ │ ├── ustrcase.cpp │ │ │ ├── ustrcase_locale.cpp │ │ │ ├── ustrenum.cpp │ │ │ ├── ustrenum.h │ │ │ ├── ustrfmt.cpp │ │ │ ├── ustrfmt.h │ │ │ ├── ustring.cpp │ │ │ ├── ustrtrns.cpp │ │ │ ├── utext.cpp │ │ │ ├── utf_impl.cpp │ │ │ ├── util.cpp │ │ │ ├── util.h │ │ │ ├── util_props.cpp │ │ │ ├── utrace.cpp │ │ │ ├── utracimp.h │ │ │ ├── utrie.cpp │ │ │ ├── utrie.h │ │ │ ├── utrie2.cpp │ │ │ ├── utrie2.h │ │ │ ├── utrie2_builder.cpp │ │ │ ├── utrie2_impl.h │ │ │ ├── utrie_swap.cpp │ │ │ ├── uts46.cpp │ │ │ ├── utypeinfo.h │ │ │ ├── utypes.cpp │ │ │ ├── uvector.cpp │ │ │ ├── uvector.h │ │ │ ├── uvectr32.cpp │ │ │ ├── uvectr32.h │ │ │ ├── uvectr64.cpp │ │ │ ├── uvectr64.h │ │ │ ├── wintz.cpp │ │ │ └── wintz.h │ │ ├── data │ │ │ ├── dummy.go │ │ │ ├── sprep │ │ │ │ └── dummy.go │ │ │ └── unidata │ │ │ │ ├── dummy.go │ │ │ │ └── norm2 │ │ │ │ └── dummy.go │ │ ├── dummy.go │ │ ├── extra │ │ │ ├── dummy.go │ │ │ ├── scrptrun │ │ │ │ ├── dummy.go │ │ │ │ └── scrptrun.h │ │ │ └── uconv │ │ │ │ ├── dummy.go │ │ │ │ ├── resources │ │ │ │ └── dummy.go │ │ │ │ ├── samples │ │ │ │ ├── dummy.go │ │ │ │ └── utf8 │ │ │ │ │ └── dummy.go │ │ │ │ ├── unicode │ │ │ │ ├── dummy.go │ │ │ │ └── uwmsg.h │ │ │ │ └── uwmsg.c │ │ ├── i18n │ │ │ ├── anytrans.h │ │ │ ├── astro.h │ │ │ ├── bocsu.h │ │ │ ├── brktrans.h │ │ │ ├── buddhcal.h │ │ │ ├── casetrn.h │ │ │ ├── cecal.h │ │ │ ├── chnsecal.h │ │ │ ├── collation.h │ │ │ ├── collationbuilder.h │ │ │ ├── collationcompare.h │ │ │ ├── collationdata.h │ │ │ ├── collationdatabuilder.h │ │ │ ├── collationdatareader.h │ │ │ ├── collationdatawriter.h │ │ │ ├── collationfastlatin.h │ │ │ ├── collationfastlatinbuilder.h │ │ │ ├── collationfcd.h │ │ │ ├── collationiterator.h │ │ │ ├── collationkeys.h │ │ │ ├── collationroot.h │ │ │ ├── collationrootelements.h │ │ │ ├── collationruleparser.h │ │ │ ├── collationsets.h │ │ │ ├── collationsettings.h │ │ │ ├── collationtailoring.h │ │ │ ├── collationweights.h │ │ │ ├── collunsafe.h │ │ │ ├── coptccal.h │ │ │ ├── cpdtrans.h │ │ │ ├── csdetect.h │ │ │ ├── csmatch.h │ │ │ ├── csr2022.h │ │ │ ├── csrecog.h │ │ │ ├── csrmbcs.h │ │ │ ├── csrsbcs.h │ │ │ ├── csrucode.h │ │ │ ├── csrutf8.h │ │ │ ├── currfmt.h │ │ │ ├── dangical.h │ │ │ ├── dayperiodrules.h │ │ │ ├── decContext.h │ │ │ ├── decNumber.h │ │ │ ├── decNumberLocal.h │ │ │ ├── double-conversion-bignum-dtoa.h │ │ │ ├── double-conversion-bignum.h │ │ │ ├── double-conversion-cached-powers.h │ │ │ ├── double-conversion-diy-fp.h │ │ │ ├── double-conversion-double-to-string.h │ │ │ ├── double-conversion-fast-dtoa.h │ │ │ ├── double-conversion-ieee.h │ │ │ ├── double-conversion-string-to-double.h │ │ │ ├── double-conversion-strtod.h │ │ │ ├── double-conversion-utils.h │ │ │ ├── double-conversion.h │ │ │ ├── dt_impl.h │ │ │ ├── dtitv_impl.h │ │ │ ├── dtptngen_impl.h │ │ │ ├── dummy.go │ │ │ ├── erarules.h │ │ │ ├── esctrn.h │ │ │ ├── ethpccal.h │ │ │ ├── fmtableimp.h │ │ │ ├── formatted_string_builder.h │ │ │ ├── formattedval_impl.h │ │ │ ├── fphdlimp.h │ │ │ ├── funcrepl.h │ │ │ ├── gregoimp.h │ │ │ ├── hebrwcal.h │ │ │ ├── indiancal.h │ │ │ ├── inputext.h │ │ │ ├── islamcal.h │ │ │ ├── japancal.h │ │ │ ├── msgfmt_impl.h │ │ │ ├── name2uni.h │ │ │ ├── nfrlist.h │ │ │ ├── nfrs.h │ │ │ ├── nfrule.h │ │ │ ├── nfsubs.h │ │ │ ├── nortrans.h │ │ │ ├── nultrans.h │ │ │ ├── number_affixutils.h │ │ │ ├── number_asformat.h │ │ │ ├── number_compact.h │ │ │ ├── number_currencysymbols.h │ │ │ ├── number_decimalquantity.h │ │ │ ├── number_decimfmtprops.h │ │ │ ├── number_decnum.h │ │ │ ├── number_formatimpl.h │ │ │ ├── number_longnames.h │ │ │ ├── number_mapper.h │ │ │ ├── number_microprops.h │ │ │ ├── number_modifiers.h │ │ │ ├── number_multiplier.h │ │ │ ├── number_patternmodifier.h │ │ │ ├── number_patternstring.h │ │ │ ├── number_roundingutils.h │ │ │ ├── number_scientific.h │ │ │ ├── number_skeletons.h │ │ │ ├── number_types.h │ │ │ ├── number_utils.h │ │ │ ├── number_utypes.h │ │ │ ├── numparse_affixes.h │ │ │ ├── numparse_compositions.h │ │ │ ├── numparse_currency.h │ │ │ ├── numparse_decimal.h │ │ │ ├── numparse_impl.h │ │ │ ├── numparse_scientific.h │ │ │ ├── numparse_symbols.h │ │ │ ├── numparse_types.h │ │ │ ├── numparse_utils.h │ │ │ ├── numparse_validators.h │ │ │ ├── numrange_impl.h │ │ │ ├── numsys_impl.h │ │ │ ├── olsontz.h │ │ │ ├── persncal.h │ │ │ ├── plurrule_impl.h │ │ │ ├── quant.h │ │ │ ├── quantityformatter.h │ │ │ ├── rbt.h │ │ │ ├── rbt_data.h │ │ │ ├── rbt_pars.h │ │ │ ├── rbt_rule.h │ │ │ ├── rbt_set.h │ │ │ ├── regexcmp.h │ │ │ ├── regexcst.h │ │ │ ├── regeximp.h │ │ │ ├── regexst.h │ │ │ ├── regextxt.h │ │ │ ├── region_impl.h │ │ │ ├── reldtfmt.h │ │ │ ├── remtrans.h │ │ │ ├── scriptset.h │ │ │ ├── selfmtimpl.h │ │ │ ├── sharedbreakiterator.h │ │ │ ├── sharedcalendar.h │ │ │ ├── shareddateformatsymbols.h │ │ │ ├── sharednumberformat.h │ │ │ ├── sharedpluralrules.h │ │ │ ├── smpdtfst.h │ │ │ ├── standardplural.h │ │ │ ├── string_segment.h │ │ │ ├── strmatch.h │ │ │ ├── strrepl.h │ │ │ ├── taiwncal.h │ │ │ ├── titletrn.h │ │ │ ├── tolowtrn.h │ │ │ ├── toupptrn.h │ │ │ ├── transreg.h │ │ │ ├── tridpars.h │ │ │ ├── tzgnames.h │ │ │ ├── tznames_impl.h │ │ │ ├── ucln_in.h │ │ │ ├── ucol_imp.h │ │ │ ├── uitercollationiterator.h │ │ │ ├── umsg_imp.h │ │ │ ├── unesctrn.h │ │ │ ├── uni2name.h │ │ │ ├── unicode │ │ │ │ ├── alphaindex.h │ │ │ │ ├── basictz.h │ │ │ │ ├── calendar.h │ │ │ │ ├── choicfmt.h │ │ │ │ ├── coleitr.h │ │ │ │ ├── coll.h │ │ │ │ ├── compactdecimalformat.h │ │ │ │ ├── curramt.h │ │ │ │ ├── currpinf.h │ │ │ │ ├── currunit.h │ │ │ │ ├── datefmt.h │ │ │ │ ├── dcfmtsym.h │ │ │ │ ├── decimfmt.h │ │ │ │ ├── dtfmtsym.h │ │ │ │ ├── dtitvfmt.h │ │ │ │ ├── dtitvinf.h │ │ │ │ ├── dtptngen.h │ │ │ │ ├── dtrule.h │ │ │ │ ├── dummy.go │ │ │ │ ├── fieldpos.h │ │ │ │ ├── fmtable.h │ │ │ │ ├── format.h │ │ │ │ ├── formattedvalue.h │ │ │ │ ├── fpositer.h │ │ │ │ ├── gender.h │ │ │ │ ├── gregocal.h │ │ │ │ ├── listformatter.h │ │ │ │ ├── measfmt.h │ │ │ │ ├── measunit.h │ │ │ │ ├── measure.h │ │ │ │ ├── msgfmt.h │ │ │ │ ├── nounit.h │ │ │ │ ├── numberformatter.h │ │ │ │ ├── numberrangeformatter.h │ │ │ │ ├── numfmt.h │ │ │ │ ├── numsys.h │ │ │ │ ├── plurfmt.h │ │ │ │ ├── plurrule.h │ │ │ │ ├── rbnf.h │ │ │ │ ├── rbtz.h │ │ │ │ ├── regex.h │ │ │ │ ├── region.h │ │ │ │ ├── reldatefmt.h │ │ │ │ ├── scientificnumberformatter.h │ │ │ │ ├── search.h │ │ │ │ ├── selfmt.h │ │ │ │ ├── simpletz.h │ │ │ │ ├── smpdtfmt.h │ │ │ │ ├── sortkey.h │ │ │ │ ├── stsearch.h │ │ │ │ ├── tblcoll.h │ │ │ │ ├── timezone.h │ │ │ │ ├── tmunit.h │ │ │ │ ├── tmutamt.h │ │ │ │ ├── tmutfmt.h │ │ │ │ ├── translit.h │ │ │ │ ├── tzfmt.h │ │ │ │ ├── tznames.h │ │ │ │ ├── tzrule.h │ │ │ │ ├── tztrans.h │ │ │ │ ├── ucal.h │ │ │ │ ├── ucol.h │ │ │ │ ├── ucoleitr.h │ │ │ │ ├── ucsdet.h │ │ │ │ ├── udat.h │ │ │ │ ├── udateintervalformat.h │ │ │ │ ├── udatpg.h │ │ │ │ ├── ufieldpositer.h │ │ │ │ ├── uformattable.h │ │ │ │ ├── uformattedvalue.h │ │ │ │ ├── ugender.h │ │ │ │ ├── ulistformatter.h │ │ │ │ ├── ulocdata.h │ │ │ │ ├── umsg.h │ │ │ │ ├── unirepl.h │ │ │ │ ├── unum.h │ │ │ │ ├── unumberformatter.h │ │ │ │ ├── unumsys.h │ │ │ │ ├── upluralrules.h │ │ │ │ ├── uregex.h │ │ │ │ ├── uregion.h │ │ │ │ ├── ureldatefmt.h │ │ │ │ ├── usearch.h │ │ │ │ ├── uspoof.h │ │ │ │ ├── utmscale.h │ │ │ │ ├── utrans.h │ │ │ │ └── vtzone.h │ │ │ ├── uspoof_conf.h │ │ │ ├── uspoof_impl.h │ │ │ ├── usrchimp.h │ │ │ ├── utf16collationiterator.h │ │ │ ├── utf8collationiterator.h │ │ │ ├── vzone.h │ │ │ ├── windtfmt.h │ │ │ ├── winnmfmt.h │ │ │ ├── wintzimpl.h │ │ │ ├── zonemeta.h │ │ │ ├── zrule.h │ │ │ └── ztrans.h │ │ ├── io │ │ │ ├── dummy.go │ │ │ ├── locbund.h │ │ │ ├── ucln_io.h │ │ │ ├── ufile.h │ │ │ ├── ufmt_cmn.h │ │ │ ├── unicode │ │ │ │ ├── dummy.go │ │ │ │ ├── ustdio.h │ │ │ │ └── ustream.h │ │ │ ├── uprintf.h │ │ │ └── uscanf.h │ │ ├── layoutex │ │ │ ├── LXUtilities.h │ │ │ ├── dummy.go │ │ │ └── layout │ │ │ │ ├── ParagraphLayout.h │ │ │ │ ├── RunArrays.h │ │ │ │ ├── dummy.go │ │ │ │ ├── playout.h │ │ │ │ └── plruns.h │ │ ├── samples │ │ │ ├── break │ │ │ │ ├── dummy.go │ │ │ │ └── ubreak.c │ │ │ ├── cal │ │ │ │ ├── cal.c │ │ │ │ ├── dummy.go │ │ │ │ ├── uprint.c │ │ │ │ └── uprint.h │ │ │ ├── case │ │ │ │ ├── dummy.go │ │ │ │ └── ucase.c │ │ │ ├── citer │ │ │ │ └── dummy.go │ │ │ ├── coll │ │ │ │ └── dummy.go │ │ │ ├── csdet │ │ │ │ ├── csdet.c │ │ │ │ └── dummy.go │ │ │ ├── date │ │ │ │ ├── date.c │ │ │ │ ├── dummy.go │ │ │ │ ├── uprint.c │ │ │ │ └── uprint.h │ │ │ ├── datecal │ │ │ │ ├── ccal.c │ │ │ │ └── dummy.go │ │ │ ├── datefmt │ │ │ │ ├── dummy.go │ │ │ │ └── util.h │ │ │ ├── dummy.go │ │ │ ├── layout │ │ │ │ ├── FontMap.h │ │ │ │ ├── FontTableCache.h │ │ │ │ ├── GDIFontInstance.h │ │ │ │ ├── GDIFontMap.h │ │ │ │ ├── GDIGUISupport.h │ │ │ │ ├── GUISupport.h │ │ │ │ ├── GnomeFontInstance.h │ │ │ │ ├── GnomeFontMap.h │ │ │ │ ├── GnomeGUISupport.h │ │ │ │ ├── RenderingSurface.h │ │ │ │ ├── ScriptCompositeFontInstance.h │ │ │ │ ├── Surface.h │ │ │ │ ├── UnicodeReader.h │ │ │ │ ├── arraymem.h │ │ │ │ ├── cgnomelayout.c │ │ │ │ ├── clayout.c │ │ │ │ ├── cmaps.h │ │ │ │ ├── dummy.go │ │ │ │ ├── gdiglue.h │ │ │ │ ├── gnomeglue.h │ │ │ │ ├── gsupport.h │ │ │ │ ├── paragraph.h │ │ │ │ ├── pflow.c │ │ │ │ ├── pflow.h │ │ │ │ ├── resource.h │ │ │ │ ├── rsurface.h │ │ │ │ ├── sfnt.h │ │ │ │ └── ucreader.h │ │ │ ├── msgfmt │ │ │ │ ├── dummy.go │ │ │ │ └── util.h │ │ │ ├── numfmt │ │ │ │ ├── capi.c │ │ │ │ ├── dummy.go │ │ │ │ └── util.h │ │ │ ├── props │ │ │ │ └── dummy.go │ │ │ ├── strsrch │ │ │ │ └── dummy.go │ │ │ ├── translit │ │ │ │ ├── answers │ │ │ │ │ ├── dummy.go │ │ │ │ │ └── unaccent.h │ │ │ │ ├── dummy.go │ │ │ │ ├── unaccent.h │ │ │ │ └── util.h │ │ │ ├── uciter8 │ │ │ │ ├── dummy.go │ │ │ │ ├── uciter8.c │ │ │ │ ├── uit_len8.c │ │ │ │ └── uit_len8.h │ │ │ ├── ucnv │ │ │ │ ├── dummy.go │ │ │ │ ├── flagcb.c │ │ │ │ └── flagcb.h │ │ │ ├── udata │ │ │ │ ├── dummy.go │ │ │ │ ├── reader.c │ │ │ │ └── writer.c │ │ │ ├── ufortune │ │ │ │ ├── dummy.go │ │ │ │ ├── resources │ │ │ │ │ └── dummy.go │ │ │ │ └── ufortune.c │ │ │ ├── ugrep │ │ │ │ └── dummy.go │ │ │ ├── uresb │ │ │ │ ├── dummy.go │ │ │ │ └── uresb.c │ │ │ └── ustring │ │ │ │ └── dummy.go │ │ ├── test │ │ │ ├── cintltst │ │ │ │ ├── bocu1tst.c │ │ │ │ ├── callcoll.c │ │ │ │ ├── callcoll.h │ │ │ │ ├── calldata.h │ │ │ │ ├── calltest.c │ │ │ │ ├── capitst.c │ │ │ │ ├── capitst.h │ │ │ │ ├── cbiapts.c │ │ │ │ ├── cbiapts.h │ │ │ │ ├── cbididat.c │ │ │ │ ├── cbiditransformtst.c │ │ │ │ ├── cbiditst.c │ │ │ │ ├── cbiditst.h │ │ │ │ ├── cbkittst.c │ │ │ │ ├── ccaltst.c │ │ │ │ ├── ccaltst.h │ │ │ │ ├── ccapitst.c │ │ │ │ ├── ccapitst.h │ │ │ │ ├── ccolltst.c │ │ │ │ ├── ccolltst.h │ │ │ │ ├── cconvtst.c │ │ │ │ ├── cctest.c │ │ │ │ ├── ccurrtst.c │ │ │ │ ├── ccurrtst.h │ │ │ │ ├── cdateintervalformattest.c │ │ │ │ ├── cdattst.c │ │ │ │ ├── cdattst.h │ │ │ │ ├── cdetst.c │ │ │ │ ├── cdetst.h │ │ │ │ ├── cdtdptst.c │ │ │ │ ├── cdtdptst.h │ │ │ │ ├── cdtrgtst.c │ │ │ │ ├── cdtrgtst.h │ │ │ │ ├── cestst.c │ │ │ │ ├── cestst.h │ │ │ │ ├── cfintst.c │ │ │ │ ├── cfintst.h │ │ │ │ ├── cformtst.c │ │ │ │ ├── cformtst.h │ │ │ │ ├── cfrtst.c │ │ │ │ ├── cfrtst.h │ │ │ │ ├── cg7coll.c │ │ │ │ ├── cg7coll.h │ │ │ │ ├── cgendtst.c │ │ │ │ ├── chashtst.c │ │ │ │ ├── cintltst.c │ │ │ │ ├── cintltst.h │ │ │ │ ├── citertst.c │ │ │ │ ├── citertst.h │ │ │ │ ├── cjaptst.c │ │ │ │ ├── cjaptst.h │ │ │ │ ├── cldrtest.c │ │ │ │ ├── cloctst.c │ │ │ │ ├── cloctst.h │ │ │ │ ├── cmsccoll.c │ │ │ │ ├── cmsgtst.c │ │ │ │ ├── cmsgtst.h │ │ │ │ ├── cnmdptst.c │ │ │ │ ├── cnmdptst.h │ │ │ │ ├── cnormtst.c │ │ │ │ ├── cnormtst.h │ │ │ │ ├── cnumtst.c │ │ │ │ ├── cnumtst.h │ │ │ │ ├── cpluralrulestest.c │ │ │ │ ├── cposxtst.c │ │ │ │ ├── crelativedateformattest.c │ │ │ │ ├── crestst.c │ │ │ │ ├── crestst.h │ │ │ │ ├── creststn.c │ │ │ │ ├── creststn.h │ │ │ │ ├── cstrcase.c │ │ │ │ ├── cstrtest.c │ │ │ │ ├── cturtst.c │ │ │ │ ├── cturtst.h │ │ │ │ ├── cucdapi.c │ │ │ │ ├── cucdapi.h │ │ │ │ ├── cucdtst.c │ │ │ │ ├── currtest.c │ │ │ │ ├── custrtrn.c │ │ │ │ ├── custrtst.c │ │ │ │ ├── cutiltst.c │ │ │ │ ├── dummy.go │ │ │ │ ├── encoll.c │ │ │ │ ├── encoll.h │ │ │ │ ├── eurocreg.c │ │ │ │ ├── hpmufn.c │ │ │ │ ├── idnatest.c │ │ │ │ ├── nccbtst.c │ │ │ │ ├── nccbtst.h │ │ │ │ ├── ncnvfbts.c │ │ │ │ ├── ncnvfbts.h │ │ │ │ ├── ncnvtst.c │ │ │ │ ├── nfsprep.c │ │ │ │ ├── nfsprep.h │ │ │ │ ├── nucnvtst.c │ │ │ │ ├── nucnvtst.h │ │ │ │ ├── putiltst.c │ │ │ │ ├── reapits.c │ │ │ │ ├── sorttest.c │ │ │ │ ├── spooftest.c │ │ │ │ ├── spreptst.c │ │ │ │ ├── sprpdata.c │ │ │ │ ├── stdnmtst.c │ │ │ │ ├── tracetst.c │ │ │ │ ├── trie2test.c │ │ │ │ ├── trietest.c │ │ │ │ ├── ucnvseltst.c │ │ │ │ ├── ucnvseltst.h │ │ │ │ ├── ucptrietest.c │ │ │ │ ├── ucsdetst.c │ │ │ │ ├── udatatst.c │ │ │ │ ├── udatpg_test.c │ │ │ │ ├── uenumtst.c │ │ │ │ ├── uformattedvaluetst.c │ │ │ │ ├── ulistfmttest.c │ │ │ │ ├── unumberformattertst.c │ │ │ │ ├── uregiontest.c │ │ │ │ ├── usettest.c │ │ │ │ ├── usrchdat.c │ │ │ │ ├── usrchtst.c │ │ │ │ ├── utexttst.c │ │ │ │ ├── utf16tst.c │ │ │ │ ├── utf8tst.c │ │ │ │ ├── utmstest.c │ │ │ │ └── utransts.c │ │ │ ├── compat │ │ │ │ ├── dummy.go │ │ │ │ └── tzdate.c │ │ │ ├── dummy.go │ │ │ ├── fuzzer │ │ │ │ ├── dummy.go │ │ │ │ ├── fuzzer_utils.h │ │ │ │ └── locale_util.h │ │ │ ├── intltest │ │ │ │ ├── aliastst.h │ │ │ │ ├── allcoll.h │ │ │ │ ├── alphaindextst.h │ │ │ │ ├── apicoll.h │ │ │ │ ├── astrotst.h │ │ │ │ ├── calcasts.h │ │ │ │ ├── callimts.h │ │ │ │ ├── calregts.h │ │ │ │ ├── caltest.h │ │ │ │ ├── caltestdata.h │ │ │ │ ├── caltztst.h │ │ │ │ ├── canittst.h │ │ │ │ ├── citrtest.h │ │ │ │ ├── colldata.h │ │ │ │ ├── convtest.h │ │ │ │ ├── cpdtrtst.h │ │ │ │ ├── csdetest.h │ │ │ │ ├── currcoll.h │ │ │ │ ├── dadrcal.h │ │ │ │ ├── dadrfmt.h │ │ │ │ ├── datadrivennumberformattestsuite.h │ │ │ │ ├── dcfmapts.h │ │ │ │ ├── dcfmtest.h │ │ │ │ ├── decoll.h │ │ │ │ ├── dtfmapts.h │ │ │ │ ├── dtfmrgts.h │ │ │ │ ├── dtfmtrtts.h │ │ │ │ ├── dtfmttst.h │ │ │ │ ├── dtifmtts.h │ │ │ │ ├── dtptngts.h │ │ │ │ ├── dummy.go │ │ │ │ ├── encoll.h │ │ │ │ ├── erarulestest.h │ │ │ │ ├── escoll.h │ │ │ │ ├── ficoll.h │ │ │ │ ├── fldset.h │ │ │ │ ├── frcoll.h │ │ │ │ ├── g7coll.h │ │ │ │ ├── icusvtst.h │ │ │ │ ├── idnaconf.h │ │ │ │ ├── idnaref.h │ │ │ │ ├── incaltst.h │ │ │ │ ├── intltest.h │ │ │ │ ├── itercoll.h │ │ │ │ ├── itformat.h │ │ │ │ ├── itmajor.h │ │ │ │ ├── itrbbi.h │ │ │ │ ├── itrbnf.h │ │ │ │ ├── itrbnfp.h │ │ │ │ ├── itrbnfrt.h │ │ │ │ ├── itspoof.h │ │ │ │ ├── ittrans.h │ │ │ │ ├── itutil.h │ │ │ │ ├── jacoll.h │ │ │ │ ├── jamotest.h │ │ │ │ ├── lcukocol.h │ │ │ │ ├── listformattertest.h │ │ │ │ ├── localebuildertest.h │ │ │ │ ├── locnmtst.h │ │ │ │ ├── loctest.h │ │ │ │ ├── miscdtfm.h │ │ │ │ ├── mnkytst.h │ │ │ │ ├── msfmrgts.h │ │ │ │ ├── nmfmapts.h │ │ │ │ ├── nmfmtrt.h │ │ │ │ ├── normconf.h │ │ │ │ ├── nptrans.h │ │ │ │ ├── numberformattesttuple.h │ │ │ │ ├── numbertest.h │ │ │ │ ├── numfmtst.h │ │ │ │ ├── numrgts.h │ │ │ │ ├── plurfmts.h │ │ │ │ ├── plurults.h │ │ │ │ ├── pptest.h │ │ │ │ ├── punyref.h │ │ │ │ ├── rbbiapts.h │ │ │ │ ├── rbbimonkeytest.h │ │ │ │ ├── rbbitst.h │ │ │ │ ├── regcoll.h │ │ │ │ ├── regextst.h │ │ │ │ ├── regiontst.h │ │ │ │ ├── reptest.h │ │ │ │ ├── restest.h │ │ │ │ ├── restsnew.h │ │ │ │ ├── sdtfmtts.h │ │ │ │ ├── selfmts.h │ │ │ │ ├── sfwdchit.h │ │ │ │ ├── simplethread.h │ │ │ │ ├── srchtest.h │ │ │ │ ├── ssearch.h │ │ │ │ ├── strtest.h │ │ │ │ ├── svccoll.h │ │ │ │ ├── tchcfmt.h │ │ │ │ ├── testidna.h │ │ │ │ ├── testutil.h │ │ │ │ ├── textfile.h │ │ │ │ ├── tfsmalls.h │ │ │ │ ├── thcoll.h │ │ │ │ ├── tmsgfmt.h │ │ │ │ ├── tokiter.h │ │ │ │ ├── transapi.h │ │ │ │ ├── transrt.h │ │ │ │ ├── transtst.h │ │ │ │ ├── trcoll.h │ │ │ │ ├── trnserr.h │ │ │ │ ├── tscoll.h │ │ │ │ ├── tsdate.h │ │ │ │ ├── tsdcfmsy.h │ │ │ │ ├── tsdtfmsy.h │ │ │ │ ├── tsmthred.h │ │ │ │ ├── tsnmfmt.h │ │ │ │ ├── tsputil.h │ │ │ │ ├── tstnorm.h │ │ │ │ ├── tzbdtest.h │ │ │ │ ├── tzfmttst.h │ │ │ │ ├── tzoffloc.h │ │ │ │ ├── tzregts.h │ │ │ │ ├── tzrulets.h │ │ │ │ ├── tztest.h │ │ │ │ ├── ucaconf.h │ │ │ │ ├── ucdtest.h │ │ │ │ ├── uobjtest.h │ │ │ │ ├── usettest.h │ │ │ │ ├── ustrtest.h │ │ │ │ ├── utxttest.h │ │ │ │ ├── uvectest.h │ │ │ │ ├── v32test.h │ │ │ │ ├── windttst.h │ │ │ │ ├── winnmtst.h │ │ │ │ └── winutil.h │ │ │ ├── iotest │ │ │ │ ├── dummy.go │ │ │ │ ├── filetst.c │ │ │ │ ├── iotest.h │ │ │ │ ├── strtst.c │ │ │ │ └── trnstst.c │ │ │ ├── letest │ │ │ │ ├── FontObject.h │ │ │ │ ├── FontTableCache.h │ │ │ │ ├── PortableFontInstance.h │ │ │ │ ├── SimpleFontInstance.h │ │ │ │ ├── cfonts.h │ │ │ │ ├── cletest.c │ │ │ │ ├── cmaps.h │ │ │ │ ├── dummy.go │ │ │ │ ├── letest.h │ │ │ │ ├── letsutil.h │ │ │ │ ├── sfnt.h │ │ │ │ └── xmlreader.h │ │ │ ├── perf │ │ │ │ ├── DateFmtPerf │ │ │ │ │ ├── DateFmtPerf.h │ │ │ │ │ ├── breakdata.h │ │ │ │ │ ├── collationdata.h │ │ │ │ │ ├── datedata.h │ │ │ │ │ └── dummy.go │ │ │ │ ├── charperf │ │ │ │ │ ├── charperf.h │ │ │ │ │ └── dummy.go │ │ │ │ ├── convperf │ │ │ │ │ ├── convperf.h │ │ │ │ │ ├── data.h │ │ │ │ │ └── dummy.go │ │ │ │ ├── dummy.go │ │ │ │ ├── howExpensiveIs │ │ │ │ │ ├── dummy.go │ │ │ │ │ └── sieve.h │ │ │ │ ├── leperf │ │ │ │ │ ├── FontObject.h │ │ │ │ │ ├── FontTableCache.h │ │ │ │ │ ├── PortableFontInstance.h │ │ │ │ │ ├── SimpleFontInstance.h │ │ │ │ │ ├── cfonts.h │ │ │ │ │ ├── cmaps.h │ │ │ │ │ ├── dummy.go │ │ │ │ │ ├── sfnt.h │ │ │ │ │ └── xmlreader.h │ │ │ │ ├── normperf │ │ │ │ │ ├── dtfmtrtperf.h │ │ │ │ │ ├── dummy.go │ │ │ │ │ └── normperf.h │ │ │ │ ├── strsrchperf │ │ │ │ │ ├── dummy.go │ │ │ │ │ └── strsrchperf.h │ │ │ │ ├── ubrkperf │ │ │ │ │ ├── dummy.go │ │ │ │ │ └── ubrkperf.h │ │ │ │ ├── unisetperf │ │ │ │ │ ├── draft │ │ │ │ │ │ ├── dummy.go │ │ │ │ │ │ └── unicont.h │ │ │ │ │ └── dummy.go │ │ │ │ ├── usetperf │ │ │ │ │ ├── bitset.h │ │ │ │ │ └── dummy.go │ │ │ │ └── ustrperf │ │ │ │ │ ├── dummy.go │ │ │ │ │ └── stringperf.h │ │ │ └── testmap │ │ │ │ ├── dummy.go │ │ │ │ └── testmap.c │ │ ├── tools │ │ │ ├── ctestfw │ │ │ │ ├── ctest.c │ │ │ │ ├── dummy.go │ │ │ │ ├── ucln_ct.c │ │ │ │ └── unicode │ │ │ │ │ ├── ctest.h │ │ │ │ │ ├── datamap.h │ │ │ │ │ ├── dummy.go │ │ │ │ │ ├── testdata.h │ │ │ │ │ ├── testlog.h │ │ │ │ │ ├── testtype.h │ │ │ │ │ ├── tstdtmod.h │ │ │ │ │ ├── uperf.h │ │ │ │ │ └── utimer.h │ │ │ ├── dummy.go │ │ │ ├── escapesrc │ │ │ │ ├── cptbl.h │ │ │ │ └── dummy.go │ │ │ ├── genccode │ │ │ │ ├── dummy.go │ │ │ │ └── genccode.c │ │ │ ├── gencmn │ │ │ │ ├── dummy.go │ │ │ │ └── gencmn.c │ │ │ ├── gencnval │ │ │ │ ├── dummy.go │ │ │ │ └── gencnval.c │ │ │ ├── gennorm2 │ │ │ │ ├── dummy.go │ │ │ │ ├── extradata.h │ │ │ │ ├── n2builder.h │ │ │ │ └── norms.h │ │ │ ├── genrb │ │ │ │ ├── dummy.go │ │ │ │ ├── errmsg.c │ │ │ │ ├── errmsg.h │ │ │ │ ├── filterrb.h │ │ │ │ ├── genrb.h │ │ │ │ ├── parse.h │ │ │ │ ├── prscmnts.h │ │ │ │ ├── rbutil.c │ │ │ │ ├── rbutil.h │ │ │ │ ├── read.c │ │ │ │ ├── read.h │ │ │ │ ├── reslist.h │ │ │ │ ├── rle.c │ │ │ │ ├── rle.h │ │ │ │ ├── ustr.c │ │ │ │ └── ustr.h │ │ │ ├── gensprep │ │ │ │ ├── dummy.go │ │ │ │ ├── gensprep.c │ │ │ │ ├── gensprep.h │ │ │ │ └── store.c │ │ │ ├── gentest │ │ │ │ ├── dummy.go │ │ │ │ ├── genres32.c │ │ │ │ ├── gentest.c │ │ │ │ └── gentest.h │ │ │ ├── icuinfo │ │ │ │ ├── dummy.go │ │ │ │ └── testplug.c │ │ │ ├── makeconv │ │ │ │ ├── dummy.go │ │ │ │ ├── gencnvex.c │ │ │ │ ├── genmbcs.h │ │ │ │ ├── makeconv.h │ │ │ │ └── ucnvstat.c │ │ │ ├── pkgdata │ │ │ │ ├── dummy.go │ │ │ │ ├── pkgtypes.c │ │ │ │ └── pkgtypes.h │ │ │ ├── toolutil │ │ │ │ ├── collationinfo.h │ │ │ │ ├── dbgutil.h │ │ │ │ ├── denseranges.h │ │ │ │ ├── dummy.go │ │ │ │ ├── filestrm.h │ │ │ │ ├── filetools.h │ │ │ │ ├── flagparser.h │ │ │ │ ├── package.h │ │ │ │ ├── pkg_genc.h │ │ │ │ ├── pkg_gencmn.h │ │ │ │ ├── pkg_icu.h │ │ │ │ ├── pkg_imp.h │ │ │ │ ├── ppucd.h │ │ │ │ ├── swapimpl.h │ │ │ │ ├── toolutil.h │ │ │ │ ├── ucbuf.h │ │ │ │ ├── ucm.h │ │ │ │ ├── udbgutil.h │ │ │ │ ├── unewdata.h │ │ │ │ ├── uoptions.h │ │ │ │ ├── uparse.h │ │ │ │ ├── writesrc.h │ │ │ │ └── xmlparser.h │ │ │ └── tzcode │ │ │ │ ├── asctime.c │ │ │ │ ├── dummy.go │ │ │ │ ├── ialloc.c │ │ │ │ ├── localtime.c │ │ │ │ ├── private.h │ │ │ │ ├── scheck.c │ │ │ │ ├── tz2icu.h │ │ │ │ ├── tzfile.h │ │ │ │ ├── zdump.c │ │ │ │ └── zic.c │ │ └── unicode │ │ │ ├── alphaindex.h │ │ │ ├── appendable.h │ │ │ ├── basictz.h │ │ │ ├── brkiter.h │ │ │ ├── bytestream.h │ │ │ ├── bytestrie.h │ │ │ ├── bytestriebuilder.h │ │ │ ├── calendar.h │ │ │ ├── caniter.h │ │ │ ├── casemap.h │ │ │ ├── char16ptr.h │ │ │ ├── chariter.h │ │ │ ├── choicfmt.h │ │ │ ├── coleitr.h │ │ │ ├── coll.h │ │ │ ├── compactdecimalformat.h │ │ │ ├── curramt.h │ │ │ ├── currpinf.h │ │ │ ├── currunit.h │ │ │ ├── datefmt.h │ │ │ ├── dbbi.h │ │ │ ├── dcfmtsym.h │ │ │ ├── decimfmt.h │ │ │ ├── docmain.h │ │ │ ├── dtfmtsym.h │ │ │ ├── dtintrv.h │ │ │ ├── dtitvfmt.h │ │ │ ├── dtitvinf.h │ │ │ ├── dtptngen.h │ │ │ ├── dtrule.h │ │ │ ├── dummy.go │ │ │ ├── edits.h │ │ │ ├── enumset.h │ │ │ ├── errorcode.h │ │ │ ├── fieldpos.h │ │ │ ├── filteredbrk.h │ │ │ ├── fmtable.h │ │ │ ├── format.h │ │ │ ├── formattedvalue.h │ │ │ ├── fpositer.h │ │ │ ├── gender.h │ │ │ ├── gregocal.h │ │ │ ├── icudataver.h │ │ │ ├── icuplug.h │ │ │ ├── idna.h │ │ │ ├── listformatter.h │ │ │ ├── localebuilder.h │ │ │ ├── localematcher.h │ │ │ ├── localpointer.h │ │ │ ├── locdspnm.h │ │ │ ├── locid.h │ │ │ ├── measfmt.h │ │ │ ├── measunit.h │ │ │ ├── measure.h │ │ │ ├── messagepattern.h │ │ │ ├── msgfmt.h │ │ │ ├── normalizer2.h │ │ │ ├── normlzr.h │ │ │ ├── nounit.h │ │ │ ├── numberformatter.h │ │ │ ├── numberrangeformatter.h │ │ │ ├── numfmt.h │ │ │ ├── numsys.h │ │ │ ├── parseerr.h │ │ │ ├── parsepos.h │ │ │ ├── platform.h │ │ │ ├── plurfmt.h │ │ │ ├── plurrule.h │ │ │ ├── ptypes.h │ │ │ ├── putil.h │ │ │ ├── rbbi.h │ │ │ ├── rbnf.h │ │ │ ├── rbtz.h │ │ │ ├── regex.h │ │ │ ├── region.h │ │ │ ├── reldatefmt.h │ │ │ ├── rep.h │ │ │ ├── resbund.h │ │ │ ├── schriter.h │ │ │ ├── scientificnumberformatter.h │ │ │ ├── search.h │ │ │ ├── selfmt.h │ │ │ ├── simpleformatter.h │ │ │ ├── simpletz.h │ │ │ ├── smpdtfmt.h │ │ │ ├── sortkey.h │ │ │ ├── std_string.h │ │ │ ├── strenum.h │ │ │ ├── stringoptions.h │ │ │ ├── stringpiece.h │ │ │ ├── stringtriebuilder.h │ │ │ ├── stsearch.h │ │ │ ├── symtable.h │ │ │ ├── tblcoll.h │ │ │ ├── timezone.h │ │ │ ├── tmunit.h │ │ │ ├── tmutamt.h │ │ │ ├── tmutfmt.h │ │ │ ├── translit.h │ │ │ ├── tzfmt.h │ │ │ ├── tznames.h │ │ │ ├── tzrule.h │ │ │ ├── tztrans.h │ │ │ ├── ubidi.h │ │ │ ├── ubiditransform.h │ │ │ ├── ubrk.h │ │ │ ├── ucal.h │ │ │ ├── ucasemap.h │ │ │ ├── ucat.h │ │ │ ├── uchar.h │ │ │ ├── ucharstrie.h │ │ │ ├── ucharstriebuilder.h │ │ │ ├── uchriter.h │ │ │ ├── uclean.h │ │ │ ├── ucnv.h │ │ │ ├── ucnv_cb.h │ │ │ ├── ucnv_err.h │ │ │ ├── ucnvsel.h │ │ │ ├── ucol.h │ │ │ ├── ucoleitr.h │ │ │ ├── uconfig.h │ │ │ ├── ucpmap.h │ │ │ ├── ucptrie.h │ │ │ ├── ucsdet.h │ │ │ ├── ucurr.h │ │ │ ├── udat.h │ │ │ ├── udata.h │ │ │ ├── udateintervalformat.h │ │ │ ├── udatpg.h │ │ │ ├── udisplaycontext.h │ │ │ ├── uenum.h │ │ │ ├── ufieldpositer.h │ │ │ ├── uformattable.h │ │ │ ├── uformattedvalue.h │ │ │ ├── ugender.h │ │ │ ├── uidna.h │ │ │ ├── uiter.h │ │ │ ├── uldnames.h │ │ │ ├── ulistformatter.h │ │ │ ├── uloc.h │ │ │ ├── ulocdata.h │ │ │ ├── umachine.h │ │ │ ├── umisc.h │ │ │ ├── umsg.h │ │ │ ├── umutablecptrie.h │ │ │ ├── unifilt.h │ │ │ ├── unifunct.h │ │ │ ├── unimatch.h │ │ │ ├── unirepl.h │ │ │ ├── uniset.h │ │ │ ├── unistr.h │ │ │ ├── unorm.h │ │ │ ├── unorm2.h │ │ │ ├── unum.h │ │ │ ├── unumberformatter.h │ │ │ ├── unumsys.h │ │ │ ├── uobject.h │ │ │ ├── upluralrules.h │ │ │ ├── uregex.h │ │ │ ├── uregion.h │ │ │ ├── ureldatefmt.h │ │ │ ├── urename.h │ │ │ ├── urep.h │ │ │ ├── ures.h │ │ │ ├── uscript.h │ │ │ ├── usearch.h │ │ │ ├── uset.h │ │ │ ├── usetiter.h │ │ │ ├── ushape.h │ │ │ ├── uspoof.h │ │ │ ├── usprep.h │ │ │ ├── ustdio.h │ │ │ ├── ustream.h │ │ │ ├── ustring.h │ │ │ ├── ustringtrie.h │ │ │ ├── utext.h │ │ │ ├── utf.h │ │ │ ├── utf16.h │ │ │ ├── utf32.h │ │ │ ├── utf8.h │ │ │ ├── utf_old.h │ │ │ ├── utmscale.h │ │ │ ├── utrace.h │ │ │ ├── utrans.h │ │ │ ├── utypes.h │ │ │ ├── uvernum.h │ │ │ ├── uversion.h │ │ │ └── vtzone.h │ ├── json │ │ ├── BUILD.bazel │ │ ├── benchmarks │ │ │ ├── dummy.go │ │ │ └── thirdparty │ │ │ │ ├── benchmark │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── dummy.go │ │ │ │ ├── include │ │ │ │ │ ├── benchmark │ │ │ │ │ │ ├── benchmark.h │ │ │ │ │ │ └── dummy.go │ │ │ │ │ └── dummy.go │ │ │ │ └── src │ │ │ │ │ ├── arraysize.h │ │ │ │ │ ├── benchmark.cc │ │ │ │ │ ├── benchmark_api_internal.h │ │ │ │ │ ├── benchmark_main.cc │ │ │ │ │ ├── benchmark_register.cc │ │ │ │ │ ├── benchmark_register.h │ │ │ │ │ ├── check.h │ │ │ │ │ ├── colorprint.cc │ │ │ │ │ ├── colorprint.h │ │ │ │ │ ├── commandlineflags.cc │ │ │ │ │ ├── commandlineflags.h │ │ │ │ │ ├── complexity.cc │ │ │ │ │ ├── complexity.h │ │ │ │ │ ├── console_reporter.cc │ │ │ │ │ ├── counter.cc │ │ │ │ │ ├── counter.h │ │ │ │ │ ├── csv_reporter.cc │ │ │ │ │ ├── cycleclock.h │ │ │ │ │ ├── dummy.go │ │ │ │ │ ├── internal_macros.h │ │ │ │ │ ├── json_reporter.cc │ │ │ │ │ ├── log.h │ │ │ │ │ ├── mutex.h │ │ │ │ │ ├── re.h │ │ │ │ │ ├── reporter.cc │ │ │ │ │ ├── sleep.cc │ │ │ │ │ ├── sleep.h │ │ │ │ │ ├── statistics.cc │ │ │ │ │ ├── statistics.h │ │ │ │ │ ├── string_util.cc │ │ │ │ │ ├── string_util.h │ │ │ │ │ ├── sysinfo.cc │ │ │ │ │ ├── thread_manager.h │ │ │ │ │ ├── thread_timer.h │ │ │ │ │ ├── timers.cc │ │ │ │ │ └── timers.h │ │ │ │ └── dummy.go │ │ ├── doc │ │ │ ├── dummy.go │ │ │ └── scripts │ │ │ │ └── dummy.go │ │ ├── dummy.go │ │ ├── single_include │ │ │ ├── dummy.go │ │ │ └── nlohmann │ │ │ │ ├── dummy.go │ │ │ │ └── json.hpp │ │ └── test │ │ │ ├── dummy.go │ │ │ └── thirdparty │ │ │ ├── Fuzzer │ │ │ ├── FuzzerCorpus.h │ │ │ ├── FuzzerDefs.h │ │ │ ├── FuzzerDictionary.h │ │ │ ├── FuzzerExtFunctions.h │ │ │ ├── FuzzerIO.h │ │ │ ├── FuzzerInterface.h │ │ │ ├── FuzzerInternal.h │ │ │ ├── FuzzerMerge.h │ │ │ ├── FuzzerMutate.h │ │ │ ├── FuzzerOptions.h │ │ │ ├── FuzzerRandom.h │ │ │ ├── FuzzerSHA1.h │ │ │ ├── FuzzerTracePC.h │ │ │ ├── FuzzerUtil.h │ │ │ ├── FuzzerValueBitMap.h │ │ │ ├── dummy.go │ │ │ └── standalone │ │ │ │ ├── StandaloneFuzzTargetMain.c │ │ │ │ └── dummy.go │ │ │ ├── doctest │ │ │ ├── doctest.h │ │ │ ├── doctest_compatibility.h │ │ │ └── dummy.go │ │ │ └── dummy.go │ ├── protobuf │ │ ├── Makefile.am │ │ ├── README.md │ │ ├── dummy.go │ │ ├── google │ │ │ ├── dummy.go │ │ │ └── protobuf │ │ │ │ ├── any.cc │ │ │ │ ├── any.h │ │ │ │ ├── any.pb.cc │ │ │ │ ├── any.pb.h │ │ │ │ ├── any_lite.cc │ │ │ │ ├── any_test.cc │ │ │ │ ├── api.pb.cc │ │ │ │ ├── api.pb.h │ │ │ │ ├── arena.cc │ │ │ │ ├── arena.h │ │ │ │ ├── arena_impl.h │ │ │ │ ├── arena_test_util.cc │ │ │ │ ├── arena_test_util.h │ │ │ │ ├── arena_unittest.cc │ │ │ │ ├── arenastring.cc │ │ │ │ ├── arenastring.h │ │ │ │ ├── arenastring_unittest.cc │ │ │ │ ├── compiler │ │ │ │ ├── annotation_test_util.cc │ │ │ │ ├── annotation_test_util.h │ │ │ │ ├── code_generator.cc │ │ │ │ ├── code_generator.h │ │ │ │ ├── command_line_interface.cc │ │ │ │ ├── command_line_interface.h │ │ │ │ ├── command_line_interface_unittest.cc │ │ │ │ ├── cpp │ │ │ │ │ ├── cpp_bootstrap_unittest.cc │ │ │ │ │ ├── cpp_enum.cc │ │ │ │ │ ├── cpp_enum.h │ │ │ │ │ ├── cpp_enum_field.cc │ │ │ │ │ ├── cpp_enum_field.h │ │ │ │ │ ├── cpp_extension.cc │ │ │ │ │ ├── cpp_extension.h │ │ │ │ │ ├── cpp_field.cc │ │ │ │ │ ├── cpp_field.h │ │ │ │ │ ├── cpp_file.cc │ │ │ │ │ ├── cpp_file.h │ │ │ │ │ ├── cpp_generator.cc │ │ │ │ │ ├── cpp_generator.h │ │ │ │ │ ├── cpp_helpers.cc │ │ │ │ │ ├── cpp_helpers.h │ │ │ │ │ ├── cpp_map_field.cc │ │ │ │ │ ├── cpp_map_field.h │ │ │ │ │ ├── cpp_message.cc │ │ │ │ │ ├── cpp_message.h │ │ │ │ │ ├── cpp_message_field.cc │ │ │ │ │ ├── cpp_message_field.h │ │ │ │ │ ├── cpp_message_layout_helper.h │ │ │ │ │ ├── cpp_move_unittest.cc │ │ │ │ │ ├── cpp_names.h │ │ │ │ │ ├── cpp_options.h │ │ │ │ │ ├── cpp_padding_optimizer.cc │ │ │ │ │ ├── cpp_padding_optimizer.h │ │ │ │ │ ├── cpp_parse_function_generator.cc │ │ │ │ │ ├── cpp_parse_function_generator.h │ │ │ │ │ ├── cpp_plugin_unittest.cc │ │ │ │ │ ├── cpp_primitive_field.cc │ │ │ │ │ ├── cpp_primitive_field.h │ │ │ │ │ ├── cpp_service.cc │ │ │ │ │ ├── cpp_service.h │ │ │ │ │ ├── cpp_string_field.cc │ │ │ │ │ ├── cpp_string_field.h │ │ │ │ │ ├── cpp_unittest.cc │ │ │ │ │ ├── cpp_unittest.h │ │ │ │ │ ├── cpp_unittest.inc │ │ │ │ │ ├── dummy.go │ │ │ │ │ └── metadata_test.cc │ │ │ │ ├── csharp │ │ │ │ │ ├── csharp_bootstrap_unittest.cc │ │ │ │ │ ├── csharp_doc_comment.cc │ │ │ │ │ ├── csharp_doc_comment.h │ │ │ │ │ ├── csharp_enum.cc │ │ │ │ │ ├── csharp_enum.h │ │ │ │ │ ├── csharp_enum_field.cc │ │ │ │ │ ├── csharp_enum_field.h │ │ │ │ │ ├── csharp_field_base.cc │ │ │ │ │ ├── csharp_field_base.h │ │ │ │ │ ├── csharp_generator.cc │ │ │ │ │ ├── csharp_generator.h │ │ │ │ │ ├── csharp_generator_unittest.cc │ │ │ │ │ ├── csharp_helpers.cc │ │ │ │ │ ├── csharp_helpers.h │ │ │ │ │ ├── csharp_map_field.cc │ │ │ │ │ ├── csharp_map_field.h │ │ │ │ │ ├── csharp_message.cc │ │ │ │ │ ├── csharp_message.h │ │ │ │ │ ├── csharp_message_field.cc │ │ │ │ │ ├── csharp_message_field.h │ │ │ │ │ ├── csharp_names.h │ │ │ │ │ ├── csharp_options.h │ │ │ │ │ ├── csharp_primitive_field.cc │ │ │ │ │ ├── csharp_primitive_field.h │ │ │ │ │ ├── csharp_reflection_class.cc │ │ │ │ │ ├── csharp_reflection_class.h │ │ │ │ │ ├── csharp_repeated_enum_field.cc │ │ │ │ │ ├── csharp_repeated_enum_field.h │ │ │ │ │ ├── csharp_repeated_message_field.cc │ │ │ │ │ ├── csharp_repeated_message_field.h │ │ │ │ │ ├── csharp_repeated_primitive_field.cc │ │ │ │ │ ├── csharp_repeated_primitive_field.h │ │ │ │ │ ├── csharp_source_generator_base.cc │ │ │ │ │ ├── csharp_source_generator_base.h │ │ │ │ │ ├── csharp_wrapper_field.cc │ │ │ │ │ ├── csharp_wrapper_field.h │ │ │ │ │ └── dummy.go │ │ │ │ ├── dummy.go │ │ │ │ ├── importer.cc │ │ │ │ ├── importer.h │ │ │ │ ├── importer_unittest.cc │ │ │ │ ├── java │ │ │ │ │ ├── dummy.go │ │ │ │ │ ├── java_context.cc │ │ │ │ │ ├── java_context.h │ │ │ │ │ ├── java_doc_comment.cc │ │ │ │ │ ├── java_doc_comment.h │ │ │ │ │ ├── java_doc_comment_unittest.cc │ │ │ │ │ ├── java_enum.cc │ │ │ │ │ ├── java_enum.h │ │ │ │ │ ├── java_enum_field.cc │ │ │ │ │ ├── java_enum_field.h │ │ │ │ │ ├── java_enum_field_lite.cc │ │ │ │ │ ├── java_enum_field_lite.h │ │ │ │ │ ├── java_enum_lite.cc │ │ │ │ │ ├── java_enum_lite.h │ │ │ │ │ ├── java_extension.cc │ │ │ │ │ ├── java_extension.h │ │ │ │ │ ├── java_extension_lite.cc │ │ │ │ │ ├── java_extension_lite.h │ │ │ │ │ ├── java_field.cc │ │ │ │ │ ├── java_field.h │ │ │ │ │ ├── java_file.cc │ │ │ │ │ ├── java_file.h │ │ │ │ │ ├── java_generator.cc │ │ │ │ │ ├── java_generator.h │ │ │ │ │ ├── java_generator_factory.cc │ │ │ │ │ ├── java_generator_factory.h │ │ │ │ │ ├── java_helpers.cc │ │ │ │ │ ├── java_helpers.h │ │ │ │ │ ├── java_kotlin_generator.cc │ │ │ │ │ ├── java_kotlin_generator.h │ │ │ │ │ ├── java_lazy_message_field.cc │ │ │ │ │ ├── java_lazy_message_field.h │ │ │ │ │ ├── java_lazy_message_field_lite.cc │ │ │ │ │ ├── java_lazy_message_field_lite.h │ │ │ │ │ ├── java_map_field.cc │ │ │ │ │ ├── java_map_field.h │ │ │ │ │ ├── java_map_field_lite.cc │ │ │ │ │ ├── java_map_field_lite.h │ │ │ │ │ ├── java_message.cc │ │ │ │ │ ├── java_message.h │ │ │ │ │ ├── java_message_builder.cc │ │ │ │ │ ├── java_message_builder.h │ │ │ │ │ ├── java_message_builder_lite.cc │ │ │ │ │ ├── java_message_builder_lite.h │ │ │ │ │ ├── java_message_field.cc │ │ │ │ │ ├── java_message_field.h │ │ │ │ │ ├── java_message_field_lite.cc │ │ │ │ │ ├── java_message_field_lite.h │ │ │ │ │ ├── java_message_lite.cc │ │ │ │ │ ├── java_message_lite.h │ │ │ │ │ ├── java_name_resolver.cc │ │ │ │ │ ├── java_name_resolver.h │ │ │ │ │ ├── java_names.h │ │ │ │ │ ├── java_options.h │ │ │ │ │ ├── java_plugin_unittest.cc │ │ │ │ │ ├── java_primitive_field.cc │ │ │ │ │ ├── java_primitive_field.h │ │ │ │ │ ├── java_primitive_field_lite.cc │ │ │ │ │ ├── java_primitive_field_lite.h │ │ │ │ │ ├── java_service.cc │ │ │ │ │ ├── java_service.h │ │ │ │ │ ├── java_shared_code_generator.cc │ │ │ │ │ ├── java_shared_code_generator.h │ │ │ │ │ ├── java_string_field.cc │ │ │ │ │ ├── java_string_field.h │ │ │ │ │ ├── java_string_field_lite.cc │ │ │ │ │ └── java_string_field_lite.h │ │ │ │ ├── js │ │ │ │ │ ├── dummy.go │ │ │ │ │ ├── js_generator.cc │ │ │ │ │ ├── js_generator.h │ │ │ │ │ ├── well_known_types │ │ │ │ │ │ ├── any.js │ │ │ │ │ │ ├── dummy.go │ │ │ │ │ │ ├── struct.js │ │ │ │ │ │ └── timestamp.js │ │ │ │ │ ├── well_known_types_embed.cc │ │ │ │ │ └── well_known_types_embed.h │ │ │ │ ├── main.cc │ │ │ │ ├── mock_code_generator.cc │ │ │ │ ├── mock_code_generator.h │ │ │ │ ├── objectivec │ │ │ │ │ ├── dummy.go │ │ │ │ │ ├── objectivec_enum.cc │ │ │ │ │ ├── objectivec_enum.h │ │ │ │ │ ├── objectivec_enum_field.cc │ │ │ │ │ ├── objectivec_enum_field.h │ │ │ │ │ ├── objectivec_extension.cc │ │ │ │ │ ├── objectivec_extension.h │ │ │ │ │ ├── objectivec_field.cc │ │ │ │ │ ├── objectivec_field.h │ │ │ │ │ ├── objectivec_file.cc │ │ │ │ │ ├── objectivec_file.h │ │ │ │ │ ├── objectivec_generator.cc │ │ │ │ │ ├── objectivec_generator.h │ │ │ │ │ ├── objectivec_helpers.cc │ │ │ │ │ ├── objectivec_helpers.h │ │ │ │ │ ├── objectivec_helpers_unittest.cc │ │ │ │ │ ├── objectivec_map_field.cc │ │ │ │ │ ├── objectivec_map_field.h │ │ │ │ │ ├── objectivec_message.cc │ │ │ │ │ ├── objectivec_message.h │ │ │ │ │ ├── objectivec_message_field.cc │ │ │ │ │ ├── objectivec_message_field.h │ │ │ │ │ ├── objectivec_nsobject_methods.h │ │ │ │ │ ├── objectivec_oneof.cc │ │ │ │ │ ├── objectivec_oneof.h │ │ │ │ │ ├── objectivec_primitive_field.cc │ │ │ │ │ └── objectivec_primitive_field.h │ │ │ │ ├── package_info.h │ │ │ │ ├── parser.cc │ │ │ │ ├── parser.h │ │ │ │ ├── parser_unittest.cc │ │ │ │ ├── php │ │ │ │ │ ├── dummy.go │ │ │ │ │ ├── php_generator.cc │ │ │ │ │ └── php_generator.h │ │ │ │ ├── plugin.cc │ │ │ │ ├── plugin.h │ │ │ │ ├── plugin.pb.cc │ │ │ │ ├── plugin.pb.h │ │ │ │ ├── python │ │ │ │ │ ├── dummy.go │ │ │ │ │ ├── python_generator.cc │ │ │ │ │ ├── python_generator.h │ │ │ │ │ └── python_plugin_unittest.cc │ │ │ │ ├── ruby │ │ │ │ │ ├── dummy.go │ │ │ │ │ ├── ruby_generated_code_pb.rb │ │ │ │ │ ├── ruby_generator.cc │ │ │ │ │ ├── ruby_generator.h │ │ │ │ │ └── ruby_generator_unittest.cc │ │ │ │ ├── scc.h │ │ │ │ ├── subprocess.cc │ │ │ │ ├── subprocess.h │ │ │ │ ├── test_plugin.cc │ │ │ │ ├── zip_output_unittest.sh │ │ │ │ ├── zip_writer.cc │ │ │ │ └── zip_writer.h │ │ │ │ ├── descriptor.cc │ │ │ │ ├── descriptor.h │ │ │ │ ├── descriptor.pb.cc │ │ │ │ ├── descriptor.pb.h │ │ │ │ ├── descriptor_database.cc │ │ │ │ ├── descriptor_database.h │ │ │ │ ├── descriptor_database_unittest.cc │ │ │ │ ├── descriptor_unittest.cc │ │ │ │ ├── drop_unknown_fields_test.cc │ │ │ │ ├── dummy.go │ │ │ │ ├── duration.pb.cc │ │ │ │ ├── duration.pb.h │ │ │ │ ├── dynamic_message.cc │ │ │ │ ├── dynamic_message.h │ │ │ │ ├── dynamic_message_unittest.cc │ │ │ │ ├── empty.pb.cc │ │ │ │ ├── empty.pb.h │ │ │ │ ├── explicitly_constructed.h │ │ │ │ ├── extension_set.cc │ │ │ │ ├── extension_set.h │ │ │ │ ├── extension_set_heavy.cc │ │ │ │ ├── extension_set_inl.h │ │ │ │ ├── extension_set_unittest.cc │ │ │ │ ├── field_access_listener.h │ │ │ │ ├── field_mask.pb.cc │ │ │ │ ├── field_mask.pb.h │ │ │ │ ├── generated_enum_reflection.h │ │ │ │ ├── generated_enum_util.cc │ │ │ │ ├── generated_enum_util.h │ │ │ │ ├── generated_message_bases.cc │ │ │ │ ├── generated_message_bases.h │ │ │ │ ├── generated_message_reflection.cc │ │ │ │ ├── generated_message_reflection.h │ │ │ │ ├── generated_message_reflection_unittest.cc │ │ │ │ ├── generated_message_table_driven.cc │ │ │ │ ├── generated_message_table_driven.h │ │ │ │ ├── generated_message_table_driven_lite.cc │ │ │ │ ├── generated_message_table_driven_lite.h │ │ │ │ ├── generated_message_tctable_decl.h │ │ │ │ ├── generated_message_tctable_full.cc │ │ │ │ ├── generated_message_tctable_impl.h │ │ │ │ ├── generated_message_tctable_impl.inc │ │ │ │ ├── generated_message_tctable_lite.cc │ │ │ │ ├── generated_message_util.cc │ │ │ │ ├── generated_message_util.h │ │ │ │ ├── has_bits.h │ │ │ │ ├── implicit_weak_message.cc │ │ │ │ ├── implicit_weak_message.h │ │ │ │ ├── inlined_string_field.cc │ │ │ │ ├── inlined_string_field.h │ │ │ │ ├── inlined_string_field_unittest.cc │ │ │ │ ├── io │ │ │ │ ├── coded_stream.cc │ │ │ │ ├── coded_stream.h │ │ │ │ ├── coded_stream_inl.h │ │ │ │ ├── coded_stream_unittest.cc │ │ │ │ ├── dummy.go │ │ │ │ ├── gzip_stream.cc │ │ │ │ ├── gzip_stream.h │ │ │ │ ├── gzip_stream_unittest.sh │ │ │ │ ├── io_win32.cc │ │ │ │ ├── io_win32.h │ │ │ │ ├── io_win32_unittest.cc │ │ │ │ ├── package_info.h │ │ │ │ ├── printer.cc │ │ │ │ ├── printer.h │ │ │ │ ├── printer_unittest.cc │ │ │ │ ├── strtod.cc │ │ │ │ ├── strtod.h │ │ │ │ ├── tokenizer.cc │ │ │ │ ├── tokenizer.h │ │ │ │ ├── tokenizer_unittest.cc │ │ │ │ ├── zero_copy_stream.cc │ │ │ │ ├── zero_copy_stream.h │ │ │ │ ├── zero_copy_stream_impl.cc │ │ │ │ ├── zero_copy_stream_impl.h │ │ │ │ ├── zero_copy_stream_impl_lite.cc │ │ │ │ ├── zero_copy_stream_impl_lite.h │ │ │ │ └── zero_copy_stream_unittest.cc │ │ │ │ ├── lite_arena_unittest.cc │ │ │ │ ├── lite_unittest.cc │ │ │ │ ├── map.cc │ │ │ │ ├── map.h │ │ │ │ ├── map_entry.h │ │ │ │ ├── map_entry_lite.h │ │ │ │ ├── map_field.cc │ │ │ │ ├── map_field.h │ │ │ │ ├── map_field_inl.h │ │ │ │ ├── map_field_lite.h │ │ │ │ ├── map_field_test.cc │ │ │ │ ├── map_lite_test_util.cc │ │ │ │ ├── map_lite_test_util.h │ │ │ │ ├── map_test.cc │ │ │ │ ├── map_test.inc │ │ │ │ ├── map_test_util.cc │ │ │ │ ├── map_test_util.h │ │ │ │ ├── map_test_util.inc │ │ │ │ ├── map_test_util_impl.h │ │ │ │ ├── map_type_handler.h │ │ │ │ ├── message.cc │ │ │ │ ├── message.h │ │ │ │ ├── message_lite.cc │ │ │ │ ├── message_lite.h │ │ │ │ ├── message_unittest.cc │ │ │ │ ├── message_unittest.inc │ │ │ │ ├── metadata.h │ │ │ │ ├── metadata_lite.h │ │ │ │ ├── no_field_presence_test.cc │ │ │ │ ├── package_info.h │ │ │ │ ├── parse_context.cc │ │ │ │ ├── parse_context.h │ │ │ │ ├── port.h │ │ │ │ ├── port_def.inc │ │ │ │ ├── port_undef.inc │ │ │ │ ├── preserve_unknown_enum_test.cc │ │ │ │ ├── proto3_arena_lite_unittest.cc │ │ │ │ ├── proto3_arena_unittest.cc │ │ │ │ ├── proto3_lite_unittest.cc │ │ │ │ ├── proto3_lite_unittest.inc │ │ │ │ ├── reflection.h │ │ │ │ ├── reflection_internal.h │ │ │ │ ├── reflection_ops.cc │ │ │ │ ├── reflection_ops.h │ │ │ │ ├── reflection_ops_unittest.cc │ │ │ │ ├── reflection_tester.cc │ │ │ │ ├── reflection_tester.h │ │ │ │ ├── repeated_field.cc │ │ │ │ ├── repeated_field.h │ │ │ │ ├── repeated_field_reflection_unittest.cc │ │ │ │ ├── repeated_field_unittest.cc │ │ │ │ ├── repeated_ptr_field.cc │ │ │ │ ├── repeated_ptr_field.h │ │ │ │ ├── service.cc │ │ │ │ ├── service.h │ │ │ │ ├── source_context.pb.cc │ │ │ │ ├── source_context.pb.h │ │ │ │ ├── string_member_robber.h │ │ │ │ ├── struct.pb.cc │ │ │ │ ├── struct.pb.h │ │ │ │ ├── stubs │ │ │ │ ├── bytestream.cc │ │ │ │ ├── bytestream.h │ │ │ │ ├── bytestream_unittest.cc │ │ │ │ ├── callback.h │ │ │ │ ├── casts.h │ │ │ │ ├── common.cc │ │ │ │ ├── common.h │ │ │ │ ├── common_unittest.cc │ │ │ │ ├── dummy.go │ │ │ │ ├── fastmem.h │ │ │ │ ├── hash.h │ │ │ │ ├── int128.cc │ │ │ │ ├── int128.h │ │ │ │ ├── int128_unittest.cc │ │ │ │ ├── io_win32.cc │ │ │ │ ├── io_win32.h │ │ │ │ ├── io_win32_unittest.cc │ │ │ │ ├── logging.h │ │ │ │ ├── macros.h │ │ │ │ ├── map_util.h │ │ │ │ ├── mathlimits.cc │ │ │ │ ├── mathlimits.h │ │ │ │ ├── mathutil.h │ │ │ │ ├── mutex.h │ │ │ │ ├── once.h │ │ │ │ ├── platform_macros.h │ │ │ │ ├── port.h │ │ │ │ ├── singleton.h │ │ │ │ ├── status.cc │ │ │ │ ├── status.h │ │ │ │ ├── status_macros.h │ │ │ │ ├── status_test.cc │ │ │ │ ├── statusor.cc │ │ │ │ ├── statusor.h │ │ │ │ ├── statusor_test.cc │ │ │ │ ├── stl_util.h │ │ │ │ ├── stringpiece.cc │ │ │ │ ├── stringpiece.h │ │ │ │ ├── stringpiece_unittest.cc │ │ │ │ ├── stringprintf.cc │ │ │ │ ├── stringprintf.h │ │ │ │ ├── stringprintf_unittest.cc │ │ │ │ ├── structurally_valid.cc │ │ │ │ ├── structurally_valid_unittest.cc │ │ │ │ ├── strutil.cc │ │ │ │ ├── strutil.h │ │ │ │ ├── strutil_unittest.cc │ │ │ │ ├── substitute.cc │ │ │ │ ├── substitute.h │ │ │ │ ├── template_util.h │ │ │ │ ├── template_util_unittest.cc │ │ │ │ ├── time.cc │ │ │ │ ├── time.h │ │ │ │ └── time_test.cc │ │ │ │ ├── test_util.cc │ │ │ │ ├── test_util.h │ │ │ │ ├── test_util.inc │ │ │ │ ├── test_util2.h │ │ │ │ ├── test_util_lite.cc │ │ │ │ ├── test_util_lite.h │ │ │ │ ├── testdata │ │ │ │ ├── bad_utf8_string │ │ │ │ ├── dummy.go │ │ │ │ ├── golden_message │ │ │ │ ├── golden_message_maps │ │ │ │ ├── golden_message_oneof_implemented │ │ │ │ ├── golden_message_proto3 │ │ │ │ ├── golden_packed_fields_message │ │ │ │ ├── map_test_data.txt │ │ │ │ ├── text_format_unittest_data.txt │ │ │ │ ├── text_format_unittest_data_oneof_implemented.txt │ │ │ │ ├── text_format_unittest_data_pointy.txt │ │ │ │ ├── text_format_unittest_data_pointy_oneof.txt │ │ │ │ ├── text_format_unittest_extensions_data.txt │ │ │ │ └── text_format_unittest_extensions_data_pointy.txt │ │ │ │ ├── testing │ │ │ │ ├── dummy.go │ │ │ │ ├── file.cc │ │ │ │ ├── file.h │ │ │ │ ├── googletest.cc │ │ │ │ ├── googletest.h │ │ │ │ ├── zcgunzip.cc │ │ │ │ └── zcgzip.cc │ │ │ │ ├── text_format.cc │ │ │ │ ├── text_format.h │ │ │ │ ├── text_format_unittest.cc │ │ │ │ ├── timestamp.pb.cc │ │ │ │ ├── timestamp.pb.h │ │ │ │ ├── type.pb.cc │ │ │ │ ├── type.pb.h │ │ │ │ ├── unknown_field_set.cc │ │ │ │ ├── unknown_field_set.h │ │ │ │ ├── unknown_field_set_unittest.cc │ │ │ │ ├── util │ │ │ │ ├── delimited_message_util.cc │ │ │ │ ├── delimited_message_util.h │ │ │ │ ├── delimited_message_util_test.cc │ │ │ │ ├── dummy.go │ │ │ │ ├── field_comparator.cc │ │ │ │ ├── field_comparator.h │ │ │ │ ├── field_comparator_test.cc │ │ │ │ ├── field_mask_util.cc │ │ │ │ ├── field_mask_util.h │ │ │ │ ├── field_mask_util_test.cc │ │ │ │ ├── internal │ │ │ │ │ ├── constants.h │ │ │ │ │ ├── datapiece.cc │ │ │ │ │ ├── datapiece.h │ │ │ │ │ ├── default_value_objectwriter.cc │ │ │ │ │ ├── default_value_objectwriter.h │ │ │ │ │ ├── default_value_objectwriter_test.cc │ │ │ │ │ ├── dummy.go │ │ │ │ │ ├── error_listener.cc │ │ │ │ │ ├── error_listener.h │ │ │ │ │ ├── expecting_objectwriter.h │ │ │ │ │ ├── field_mask_utility.cc │ │ │ │ │ ├── field_mask_utility.h │ │ │ │ │ ├── json_escaping.cc │ │ │ │ │ ├── json_escaping.h │ │ │ │ │ ├── json_objectwriter.cc │ │ │ │ │ ├── json_objectwriter.h │ │ │ │ │ ├── json_objectwriter_test.cc │ │ │ │ │ ├── json_stream_parser.cc │ │ │ │ │ ├── json_stream_parser.h │ │ │ │ │ ├── json_stream_parser_test.cc │ │ │ │ │ ├── location_tracker.h │ │ │ │ │ ├── mock_error_listener.h │ │ │ │ │ ├── object_location_tracker.h │ │ │ │ │ ├── object_source.h │ │ │ │ │ ├── object_writer.cc │ │ │ │ │ ├── object_writer.h │ │ │ │ │ ├── proto_writer.cc │ │ │ │ │ ├── proto_writer.h │ │ │ │ │ ├── protostream_objectsource.cc │ │ │ │ │ ├── protostream_objectsource.h │ │ │ │ │ ├── protostream_objectsource_test.cc │ │ │ │ │ ├── protostream_objectwriter.cc │ │ │ │ │ ├── protostream_objectwriter.h │ │ │ │ │ ├── protostream_objectwriter_test.cc │ │ │ │ │ ├── structured_objectwriter.h │ │ │ │ │ ├── testdata │ │ │ │ │ │ └── dummy.go │ │ │ │ │ ├── type_info.cc │ │ │ │ │ ├── type_info.h │ │ │ │ │ ├── type_info_test_helper.cc │ │ │ │ │ ├── type_info_test_helper.h │ │ │ │ │ ├── utility.cc │ │ │ │ │ └── utility.h │ │ │ │ ├── json_util.cc │ │ │ │ ├── json_util.h │ │ │ │ ├── json_util_test.cc │ │ │ │ ├── message_differencer.cc │ │ │ │ ├── message_differencer.h │ │ │ │ ├── message_differencer_unittest.cc │ │ │ │ ├── package_info.h │ │ │ │ ├── time_util.cc │ │ │ │ ├── time_util.h │ │ │ │ ├── time_util_test.cc │ │ │ │ ├── type_resolver.h │ │ │ │ ├── type_resolver_util.cc │ │ │ │ ├── type_resolver_util.h │ │ │ │ └── type_resolver_util_test.cc │ │ │ │ ├── well_known_types_unittest.cc │ │ │ │ ├── wire_format.cc │ │ │ │ ├── wire_format.h │ │ │ │ ├── wire_format_lite.cc │ │ │ │ ├── wire_format_lite.h │ │ │ │ ├── wire_format_lite_inl.h │ │ │ │ ├── wire_format_unittest.cc │ │ │ │ ├── wire_format_unittest.inc │ │ │ │ ├── wrappers.pb.cc │ │ │ │ └── wrappers.pb.h │ │ ├── libprotobuf-lite.map │ │ ├── libprotobuf.map │ │ ├── libprotoc.map │ │ └── solaris │ │ │ ├── dummy.go │ │ │ └── libstdc++.la │ ├── re2 │ │ ├── BUILD │ │ ├── dummy.go │ │ ├── lib │ │ │ └── dummy.go │ │ ├── python │ │ │ ├── BUILD │ │ │ ├── _re2.cc │ │ │ └── dummy.go │ │ ├── re2 │ │ │ ├── bitmap256.h │ │ │ ├── bitstate.cc │ │ │ ├── compile.cc │ │ │ ├── dfa.cc │ │ │ ├── dummy.go │ │ │ ├── filtered_re2.cc │ │ │ ├── filtered_re2.h │ │ │ ├── fuzzing │ │ │ │ ├── dummy.go │ │ │ │ └── re2_fuzzer.cc │ │ │ ├── mimics_pcre.cc │ │ │ ├── nfa.cc │ │ │ ├── onepass.cc │ │ │ ├── parse.cc │ │ │ ├── perl_groups.cc │ │ │ ├── pod_array.h │ │ │ ├── prefilter.cc │ │ │ ├── prefilter.h │ │ │ ├── prefilter_tree.cc │ │ │ ├── prefilter_tree.h │ │ │ ├── prog.cc │ │ │ ├── prog.h │ │ │ ├── re2.cc │ │ │ ├── re2.h │ │ │ ├── regexp.cc │ │ │ ├── regexp.h │ │ │ ├── set.cc │ │ │ ├── set.h │ │ │ ├── simplify.cc │ │ │ ├── sparse_array.h │ │ │ ├── sparse_set.h │ │ │ ├── testing │ │ │ │ ├── backtrack.cc │ │ │ │ ├── charclass_test.cc │ │ │ │ ├── compile_test.cc │ │ │ │ ├── dfa_test.cc │ │ │ │ ├── dummy.go │ │ │ │ ├── dump.cc │ │ │ │ ├── exhaustive1_test.cc │ │ │ │ ├── exhaustive2_test.cc │ │ │ │ ├── exhaustive3_test.cc │ │ │ │ ├── exhaustive_test.cc │ │ │ │ ├── exhaustive_tester.cc │ │ │ │ ├── exhaustive_tester.h │ │ │ │ ├── filtered_re2_test.cc │ │ │ │ ├── mimics_pcre_test.cc │ │ │ │ ├── null_walker.cc │ │ │ │ ├── parse_test.cc │ │ │ │ ├── possible_match_test.cc │ │ │ │ ├── random_test.cc │ │ │ │ ├── re2_arg_test.cc │ │ │ │ ├── re2_test.cc │ │ │ │ ├── regexp_benchmark.cc │ │ │ │ ├── regexp_generator.cc │ │ │ │ ├── regexp_generator.h │ │ │ │ ├── regexp_test.cc │ │ │ │ ├── required_prefix_test.cc │ │ │ │ ├── search_test.cc │ │ │ │ ├── set_test.cc │ │ │ │ ├── simplify_test.cc │ │ │ │ ├── string_generator.cc │ │ │ │ ├── string_generator.h │ │ │ │ ├── string_generator_test.cc │ │ │ │ ├── tester.cc │ │ │ │ └── tester.h │ │ │ ├── tostring.cc │ │ │ ├── unicode_casefold.cc │ │ │ ├── unicode_casefold.h │ │ │ ├── unicode_groups.cc │ │ │ ├── unicode_groups.h │ │ │ └── walker-inl.h │ │ └── util │ │ │ ├── dummy.go │ │ │ ├── fuzz.cc │ │ │ ├── logging.h │ │ │ ├── malloc_counter.h │ │ │ ├── pcre.cc │ │ │ ├── pcre.h │ │ │ ├── rune.cc │ │ │ ├── strutil.cc │ │ │ ├── strutil.h │ │ │ └── utf.h │ └── zetasql │ │ ├── analyzer │ │ ├── BUILD │ │ ├── all_rewriters.cc │ │ ├── all_rewriters.h │ │ ├── analytic_function_resolver.cc │ │ ├── analytic_function_resolver.h │ │ ├── analyzer_impl.cc │ │ ├── analyzer_impl.h │ │ ├── analyzer_test.cc │ │ ├── analyzer_test_options.cc │ │ ├── analyzer_test_options.h │ │ ├── analyzer_test_options_test.cc │ │ ├── anonymization_rewriter.cc │ │ ├── anonymization_rewriter.h │ │ ├── column_cycle_detector.cc │ │ ├── column_cycle_detector.h │ │ ├── container_hash_equals.h │ │ ├── container_hash_equals_test.cc │ │ ├── dummy.go │ │ ├── expr_matching_helpers.cc │ │ ├── expr_matching_helpers.h │ │ ├── expr_resolver_helper.cc │ │ ├── expr_resolver_helper.h │ │ ├── filter_fields_path_validator.cc │ │ ├── filter_fields_path_validator.h │ │ ├── filter_fields_path_validator_test.cc │ │ ├── function_resolver.cc │ │ ├── function_resolver.h │ │ ├── function_signature_matcher.cc │ │ ├── function_signature_matcher.h │ │ ├── input_argument_type_resolver_helper.cc │ │ ├── input_argument_type_resolver_helper.h │ │ ├── input_argument_type_resolver_helper_test.cc │ │ ├── lambda_util.cc │ │ ├── lambda_util.h │ │ ├── name_scope.cc │ │ ├── name_scope.h │ │ ├── query_resolver_helper.cc │ │ ├── query_resolver_helper.h │ │ ├── recursive_queries.cc │ │ ├── recursive_queries.h │ │ ├── resolver.cc │ │ ├── resolver.h │ │ ├── resolver_alter_stmt.cc │ │ ├── resolver_common_inl.h │ │ ├── resolver_dml.cc │ │ ├── resolver_expr.cc │ │ ├── resolver_query.cc │ │ ├── resolver_stmt.cc │ │ ├── resolver_test.cc │ │ ├── rewrite_resolved_ast.cc │ │ ├── rewrite_resolved_ast.h │ │ ├── rewriters │ │ │ ├── BUILD │ │ │ ├── array_functions_rewriter.cc │ │ │ ├── array_functions_rewriter.h │ │ │ ├── dummy.go │ │ │ ├── flatten_rewriter.cc │ │ │ ├── flatten_rewriter.h │ │ │ ├── let_expr_rewriter.cc │ │ │ ├── let_expr_rewriter.h │ │ │ ├── map_function_rewriter.cc │ │ │ ├── map_function_rewriter.h │ │ │ ├── pivot_rewriter.cc │ │ │ ├── pivot_rewriter.h │ │ │ ├── registration.cc │ │ │ ├── registration.h │ │ │ ├── registration_test.cc │ │ │ ├── rewriter_interface.h │ │ │ ├── rewriter_relevance_checker.cc │ │ │ ├── rewriter_relevance_checker.h │ │ │ ├── sql_function_inliner.cc │ │ │ ├── sql_function_inliner.h │ │ │ ├── typeof_function_rewriter.cc │ │ │ ├── typeof_function_rewriter.h │ │ │ ├── unpivot_rewriter.cc │ │ │ └── unpivot_rewriter.h │ │ ├── run_analyzer_test.cc │ │ ├── run_analyzer_test.h │ │ ├── substitute.cc │ │ ├── substitute.h │ │ ├── substitute_test.cc │ │ └── testdata │ │ │ └── dummy.go │ │ ├── base │ │ ├── BUILD │ │ ├── arena.cc │ │ ├── arena.h │ │ ├── arena_allocator.cc │ │ ├── arena_allocator.h │ │ ├── arena_leakage_unittest.cc │ │ ├── arena_unittest.cc │ │ ├── atomic_sequence_num.h │ │ ├── bits.cc │ │ ├── bits.h │ │ ├── bits_test.cc │ │ ├── canonical_errors.h │ │ ├── case.cc │ │ ├── case.h │ │ ├── case_test.cc │ │ ├── clock.cc │ │ ├── clock.h │ │ ├── clock_test.cc │ │ ├── dummy.go │ │ ├── edit_distance.h │ │ ├── edit_distance_test.cc │ │ ├── endian.h │ │ ├── endian_test.cc │ │ ├── enum_utils.h │ │ ├── enum_utils_test.cc │ │ ├── exactfloat.cc │ │ ├── exactfloat.h │ │ ├── exactfloat_test.cc │ │ ├── exactfloat_underflow_test.cc │ │ ├── file_util.h │ │ ├── file_util_oss.h │ │ ├── file_util_oss_test.cc │ │ ├── flat_internal.cc │ │ ├── flat_internal.h │ │ ├── flat_internal_test.cc │ │ ├── flat_set.h │ │ ├── flat_set_test.cc │ │ ├── general_trie.h │ │ ├── general_trie_unittest.cc │ │ ├── logging.cc │ │ ├── logging.h │ │ ├── map_traits.h │ │ ├── map_traits_test.cc │ │ ├── map_util.h │ │ ├── map_util_test.h │ │ ├── map_util_unittest.cc │ │ ├── mathlimits.cc │ │ ├── mathlimits.h │ │ ├── mathlimits_test.cc │ │ ├── mathutil.cc │ │ ├── mathutil.h │ │ ├── mathutil_test.cc │ │ ├── net │ │ │ ├── BUILD │ │ │ ├── dummy.go │ │ │ ├── idn.h │ │ │ ├── idn_oss.cc │ │ │ ├── idn_oss.h │ │ │ ├── idn_oss_test.cc │ │ │ ├── ipaddress.h │ │ │ ├── ipaddress_oss.cc │ │ │ ├── ipaddress_oss.h │ │ │ ├── ipaddress_oss_test.cc │ │ │ ├── public_suffix.h │ │ │ ├── public_suffix_list_data.h │ │ │ ├── public_suffix_oss.cc │ │ │ ├── public_suffix_oss.h │ │ │ └── public_suffix_oss_test.cc │ │ ├── no_destructor.h │ │ ├── no_destructor_test.cc │ │ ├── path.cc │ │ ├── path.h │ │ ├── path_test.cc │ │ ├── ret_check.cc │ │ ├── ret_check.h │ │ ├── simple_reference_counted.h │ │ ├── simple_reference_counted_test.cc │ │ ├── source_location.h │ │ ├── source_location_test.cc │ │ ├── status.h │ │ ├── status_builder.cc │ │ ├── status_builder.h │ │ ├── status_builder_test.cc │ │ ├── status_macros.h │ │ ├── status_macros_test.cc │ │ ├── status_payload.cc │ │ ├── status_payload.h │ │ ├── status_payload_test.cc │ │ ├── status_test.cc │ │ ├── stl_util.h │ │ ├── stl_util_test.cc │ │ ├── string_numbers.cc │ │ ├── string_numbers.h │ │ ├── string_numbers_test.cc │ │ ├── testing │ │ │ ├── BUILD │ │ │ ├── dummy.go │ │ │ ├── proto_matchers.h │ │ │ ├── proto_matchers_oss.h │ │ │ ├── proto_matchers_oss_test.cc │ │ │ ├── status_matchers.cc │ │ │ ├── status_matchers.h │ │ │ ├── status_matchers_test.cc │ │ │ ├── zetasql_gtest_main.cc │ │ │ └── zetasql_gtest_main_test.cc │ │ ├── time_proto_util.cc │ │ ├── time_proto_util.h │ │ ├── time_proto_util_test.cc │ │ ├── unaligned_access.h │ │ └── varsetter.h │ │ ├── common │ │ ├── BUILD │ │ ├── aggregate_null_handling.cc │ │ ├── aggregate_null_handling.h │ │ ├── aggregate_null_handling_test.cc │ │ ├── builtin_function_internal.h │ │ ├── builtin_function_internal_1.cc │ │ ├── builtin_function_internal_2.cc │ │ ├── builtin_function_internal_3.cc │ │ ├── dummy.go │ │ ├── errors.cc │ │ ├── errors.h │ │ ├── errors_test.cc │ │ ├── evaluator_registration_utils.cc │ │ ├── evaluator_registration_utils.h │ │ ├── evaluator_test_table.h │ │ ├── float_margin.h │ │ ├── initialize_required_fields.cc │ │ ├── initialize_required_fields.h │ │ ├── initialize_required_fields_test.cc │ │ ├── int_ops_util.h │ │ ├── int_ops_util_test.cc │ │ ├── internal_value.h │ │ ├── json_parser.cc │ │ ├── json_parser.h │ │ ├── json_parser_test.cc │ │ ├── json_util.cc │ │ ├── json_util.h │ │ ├── json_util_test.cc │ │ ├── multiprecision_int.h │ │ ├── multiprecision_int_impl.cc │ │ ├── multiprecision_int_impl.h │ │ ├── multiprecision_int_test.cc │ │ ├── proto_from_iterator.cc │ │ ├── proto_from_iterator.h │ │ ├── proto_from_iterator_test.cc │ │ ├── proto_helper.cc │ │ ├── proto_helper.h │ │ ├── proto_helper_test.cc │ │ ├── simple_evaluator_table_iterator.cc │ │ ├── simple_evaluator_table_iterator.h │ │ ├── simple_evaluator_table_iterator_test.cc │ │ ├── status_payload_utils.cc │ │ ├── status_payload_utils.h │ │ ├── status_payload_utils_test.cc │ │ ├── string_util.h │ │ ├── testing │ │ │ ├── BUILD │ │ │ ├── dummy.go │ │ │ ├── proto_matchers.h │ │ │ ├── status_payload_matchers.h │ │ │ ├── status_payload_matchers_oss.h │ │ │ ├── status_payload_matchers_oss_test.cc │ │ │ └── testing_proto_util.h │ │ ├── utf_util.cc │ │ ├── utf_util.h │ │ └── utf_util_test.cc │ │ ├── compliance │ │ ├── BUILD │ │ ├── compliance_test_cases.cc │ │ ├── compliance_test_cases.h │ │ ├── dummy.go │ │ ├── functions_testlib.h │ │ ├── functions_testlib_1.cc │ │ ├── functions_testlib_2.cc │ │ ├── functions_testlib_cast.cc │ │ ├── functions_testlib_common.cc │ │ ├── functions_testlib_common.h │ │ ├── functions_testlib_format.cc │ │ ├── functions_testlib_format_floating_point.cc │ │ ├── functions_testlib_format_integral.cc │ │ ├── functions_testlib_format_json.cc │ │ ├── functions_testlib_format_nulls.cc │ │ ├── functions_testlib_format_numeric.cc │ │ ├── functions_testlib_format_strings.cc │ │ ├── functions_testlib_generate_array.cc │ │ ├── functions_testlib_interval.cc │ │ ├── functions_testlib_json.cc │ │ ├── functions_testlib_json_extract_array.cc │ │ ├── functions_testlib_like.cc │ │ ├── functions_testlib_math.cc │ │ ├── functions_testlib_net.cc │ │ ├── functions_testlib_numeric.cc │ │ ├── functions_testlib_regex.cc │ │ ├── functions_testlib_string_1.cc │ │ ├── functions_testlib_string_2.cc │ │ ├── functions_testlib_string_3.cc │ │ ├── functions_testlib_string_4.cc │ │ ├── functions_testlib_string_5.cc │ │ ├── functions_testlib_timestamp.cc │ │ ├── functions_testlib_tojson.cc │ │ ├── known_errors │ │ │ ├── BUILD │ │ │ └── dummy.go │ │ ├── legal_runtime_errors.cc │ │ ├── legal_runtime_errors.h │ │ ├── matchers.cc │ │ ├── matchers.h │ │ ├── matchers_test.cc │ │ ├── parameters_test_util.cc │ │ ├── parameters_test_util.h │ │ ├── runtime_expected_errors.cc │ │ ├── runtime_expected_errors.h │ │ ├── sql_test_base.cc │ │ ├── sql_test_base.h │ │ ├── test_driver.cc │ │ ├── test_driver.h │ │ ├── test_driver_test.cc │ │ ├── test_util.cc │ │ ├── test_util.h │ │ └── testdata │ │ │ └── dummy.go │ │ ├── dummy.go │ │ ├── jdk │ │ ├── BUILD │ │ └── dummy.go │ │ ├── local_service │ │ ├── BUILD │ │ ├── dummy.go │ │ ├── local_service.cc │ │ ├── local_service.h │ │ ├── local_service_benchmark.cc │ │ ├── local_service_grpc.cc │ │ ├── local_service_grpc.h │ │ ├── local_service_grpc_test.cc │ │ ├── local_service_jni.cc │ │ ├── local_service_jni.h │ │ ├── local_service_test.cc │ │ └── state.h │ │ ├── parser │ │ ├── BUILD │ │ ├── ast_enums.pb.cc │ │ ├── ast_enums.pb.h │ │ ├── ast_node.h │ │ ├── ast_node_kind.h │ │ ├── bison_keyword_token_codes.inc │ │ ├── bison_parser.bison.cc │ │ ├── bison_parser.bison.h │ │ ├── bison_parser.cc │ │ ├── bison_parser.h │ │ ├── bison_parser_mode.h │ │ ├── dummy.go │ │ ├── flex_istream.h │ │ ├── flex_istream_test.cc │ │ ├── flex_tokenizer.cc │ │ ├── flex_tokenizer.flex.cc │ │ ├── flex_tokenizer.h │ │ ├── join_processor.cc │ │ ├── join_processor.h │ │ ├── keywords.cc │ │ ├── keywords.h │ │ ├── keywords_test.cc │ │ ├── location.hh │ │ ├── parse_tree.cc │ │ ├── parse_tree.h │ │ ├── parse_tree.pb.cc │ │ ├── parse_tree.pb.h │ │ ├── parse_tree_accept_methods.inc │ │ ├── parse_tree_decls.h │ │ ├── parse_tree_errors.cc │ │ ├── parse_tree_errors.h │ │ ├── parse_tree_errors_test.cc │ │ ├── parse_tree_generated.h │ │ ├── parse_tree_serializer.cc │ │ ├── parse_tree_serializer.h │ │ ├── parse_tree_serializer_test.cc │ │ ├── parse_tree_test.cc │ │ ├── parse_tree_visitor.h │ │ ├── parser.cc │ │ ├── parser.h │ │ ├── position.hh │ │ ├── run_parser_test.cc │ │ ├── stack.hh │ │ ├── statement_properties.h │ │ ├── testdata │ │ │ └── dummy.go │ │ ├── unparser.cc │ │ ├── unparser.h │ │ ├── unparser_test.cc │ │ └── visit_result.h │ │ ├── proto │ │ ├── BUILD │ │ ├── dummy.go │ │ ├── function.pb.cc │ │ ├── function.pb.h │ │ ├── internal_error_location.pb.cc │ │ ├── internal_error_location.pb.h │ │ ├── options.pb.cc │ │ ├── options.pb.h │ │ ├── simple_catalog.pb.cc │ │ └── simple_catalog.pb.h │ │ ├── public │ │ ├── BUILD │ │ ├── analyzer.cc │ │ ├── analyzer.h │ │ ├── analyzer_options.cc │ │ ├── analyzer_options.h │ │ ├── analyzer_output.cc │ │ ├── analyzer_output.h │ │ ├── analyzer_output_properties.h │ │ ├── annotation.pb.cc │ │ ├── annotation.pb.h │ │ ├── annotation │ │ │ ├── BUILD │ │ │ ├── collation.cc │ │ │ ├── collation.h │ │ │ └── dummy.go │ │ ├── anon_function.cc │ │ ├── anon_function.h │ │ ├── anonymization_utils.cc │ │ ├── anonymization_utils.h │ │ ├── anonymization_utils_test.cc │ │ ├── builtin_function.cc │ │ ├── builtin_function.h │ │ ├── builtin_function.pb.cc │ │ ├── builtin_function.pb.h │ │ ├── builtin_function_options.h │ │ ├── builtin_function_test.cc │ │ ├── cast.cc │ │ ├── cast.h │ │ ├── cast_test.cc │ │ ├── catalog.cc │ │ ├── catalog.h │ │ ├── catalog_helper.cc │ │ ├── catalog_helper.h │ │ ├── civil_time.cc │ │ ├── civil_time.h │ │ ├── civil_time_test.cc │ │ ├── coercer.cc │ │ ├── coercer.h │ │ ├── collation.pb.cc │ │ ├── collation.pb.h │ │ ├── collator.cc │ │ ├── collator.h │ │ ├── collator_lite.cc │ │ ├── collator_lite_test.cc │ │ ├── collator_test.cc │ │ ├── constant.h │ │ ├── convert_type_to_proto.cc │ │ ├── convert_type_to_proto.h │ │ ├── cycle_detector.cc │ │ ├── cycle_detector.h │ │ ├── cycle_detector_test.cc │ │ ├── deprecation_warning.pb.cc │ │ ├── deprecation_warning.pb.h │ │ ├── dummy.go │ │ ├── error_helpers.cc │ │ ├── error_helpers.h │ │ ├── error_helpers_test.cc │ │ ├── error_location.pb.cc │ │ ├── error_location.pb.h │ │ ├── evaluator.cc │ │ ├── evaluator.h │ │ ├── evaluator_base.cc │ │ ├── evaluator_base.h │ │ ├── evaluator_lite.h │ │ ├── evaluator_lite_test.cc │ │ ├── evaluator_table_iterator.h │ │ ├── evaluator_test.cc │ │ ├── function.cc │ │ ├── function.h │ │ ├── function.pb.cc │ │ ├── function.pb.h │ │ ├── function_signature.cc │ │ ├── function_signature.h │ │ ├── function_signature_test.cc │ │ ├── function_test.cc │ │ ├── functions │ │ │ ├── BUILD │ │ │ ├── arithmetics.h │ │ │ ├── arithmetics_internal.h │ │ │ ├── arithmetics_internal_test.cc │ │ │ ├── arithmetics_test.cc │ │ │ ├── bitcast.h │ │ │ ├── bitcast_test.cc │ │ │ ├── bitwise.cc │ │ │ ├── bitwise.h │ │ │ ├── bitwise_test.cc │ │ │ ├── cast_date_time.cc │ │ │ ├── cast_date_time.h │ │ │ ├── cast_date_time_test.cc │ │ │ ├── common_proto.cc │ │ │ ├── common_proto.h │ │ │ ├── common_proto_test.cc │ │ │ ├── comparison.h │ │ │ ├── comparison_test.cc │ │ │ ├── convert.cc │ │ │ ├── convert.h │ │ │ ├── convert_internal.h │ │ │ ├── convert_internal_test.cc │ │ │ ├── convert_proto.cc │ │ │ ├── convert_proto.h │ │ │ ├── convert_proto_test.cc │ │ │ ├── convert_string.cc │ │ │ ├── convert_string.h │ │ │ ├── convert_string_test.cc │ │ │ ├── convert_string_with_format.cc │ │ │ ├── convert_string_with_format.h │ │ │ ├── convert_string_with_format_test.cc │ │ │ ├── convert_test.cc │ │ │ ├── date_time_util.cc │ │ │ ├── date_time_util.h │ │ │ ├── date_time_util_internal.cc │ │ │ ├── date_time_util_internal.h │ │ │ ├── date_time_util_internal_test.cc │ │ │ ├── datetime.pb.cc │ │ │ ├── datetime.pb.h │ │ │ ├── dummy.go │ │ │ ├── format_max_output_width.cc │ │ │ ├── format_max_output_width.h │ │ │ ├── format_test.cc │ │ │ ├── generate_array.h │ │ │ ├── generate_array_test.cc │ │ │ ├── hash.cc │ │ │ ├── hash.h │ │ │ ├── hash_test.cc │ │ │ ├── input_format_string_max_width.cc │ │ │ ├── input_format_string_max_width.h │ │ │ ├── json.cc │ │ │ ├── json.h │ │ │ ├── json_format.cc │ │ │ ├── json_format.h │ │ │ ├── json_format_test.cc │ │ │ ├── json_internal.cc │ │ │ ├── json_internal.h │ │ │ ├── json_test.cc │ │ │ ├── like.cc │ │ │ ├── like.h │ │ │ ├── like_test.cc │ │ │ ├── math.cc │ │ │ ├── math.h │ │ │ ├── math_test.cc │ │ │ ├── net.cc │ │ │ ├── net.h │ │ │ ├── net_test.cc │ │ │ ├── normalize_mode.pb.cc │ │ │ ├── normalize_mode.pb.h │ │ │ ├── numeric.cc │ │ │ ├── numeric.h │ │ │ ├── numeric_test.cc │ │ │ ├── parse_date_time.cc │ │ │ ├── parse_date_time.h │ │ │ ├── parse_date_time_test.cc │ │ │ ├── parse_date_time_utils.cc │ │ │ ├── parse_date_time_utils.h │ │ │ ├── parse_date_time_utils_test.cc │ │ │ ├── percentile.cc │ │ │ ├── percentile.h │ │ │ ├── percentile_test.cc │ │ │ ├── regexp.cc │ │ │ ├── regexp.h │ │ │ ├── regexp_test.cc │ │ │ ├── string.cc │ │ │ ├── string.h │ │ │ ├── string_format.cc │ │ │ ├── string_format.h │ │ │ ├── string_format_test.cc │ │ │ ├── string_test.cc │ │ │ ├── string_with_collation.cc │ │ │ ├── string_with_collation.h │ │ │ ├── string_with_collation_test.cc │ │ │ ├── to_json.cc │ │ │ ├── to_json.h │ │ │ ├── to_json_test.cc │ │ │ ├── util.cc │ │ │ ├── util.h │ │ │ ├── util_test.cc │ │ │ ├── uuid.cc │ │ │ ├── uuid.h │ │ │ └── uuid_test.cc │ │ ├── id_string.cc │ │ ├── id_string.h │ │ ├── id_string_test.cc │ │ ├── input_argument_type.cc │ │ ├── input_argument_type.h │ │ ├── input_argument_type_test.cc │ │ ├── interval_value.cc │ │ ├── interval_value.h │ │ ├── interval_value_test.cc │ │ ├── interval_value_test_util.h │ │ ├── json_value.cc │ │ ├── json_value.h │ │ ├── json_value_test.cc │ │ ├── language_options.cc │ │ ├── language_options.h │ │ ├── language_options_test.cc │ │ ├── literal_remover.cc │ │ ├── literal_remover.h │ │ ├── multi_catalog.cc │ │ ├── multi_catalog.h │ │ ├── non_sql_function.cc │ │ ├── non_sql_function.h │ │ ├── numeric_constants.h │ │ ├── numeric_parser.cc │ │ ├── numeric_parser.h │ │ ├── numeric_value.cc │ │ ├── numeric_value.h │ │ ├── numeric_value_test.cc │ │ ├── numeric_value_test_utils.h │ │ ├── numeric_value_test_utils_test.cc │ │ ├── options.pb.cc │ │ ├── options.pb.h │ │ ├── parse_helpers.cc │ │ ├── parse_helpers.h │ │ ├── parse_helpers_test.cc │ │ ├── parse_location.cc │ │ ├── parse_location.h │ │ ├── parse_location_range.pb.cc │ │ ├── parse_location_range.pb.h │ │ ├── parse_location_test.cc │ │ ├── parse_resume_location.h │ │ ├── parse_resume_location.pb.cc │ │ ├── parse_resume_location.pb.h │ │ ├── parse_resume_location_test.cc │ │ ├── parse_tokens.cc │ │ ├── parse_tokens.h │ │ ├── parse_tokens_test.cc │ │ ├── procedure.cc │ │ ├── procedure.h │ │ ├── procedure_test.cc │ │ ├── proto │ │ │ ├── BUILD │ │ │ ├── dummy.go │ │ │ ├── type_annotation.pb.cc │ │ │ ├── type_annotation.pb.h │ │ │ ├── wire_format_annotation.pb.cc │ │ │ └── wire_format_annotation.pb.h │ │ ├── proto_util.cc │ │ ├── proto_util.h │ │ ├── proto_util_test.cc │ │ ├── proto_value_conversion.cc │ │ ├── proto_value_conversion.h │ │ ├── proto_value_conversion_test.cc │ │ ├── signature_match_result.cc │ │ ├── signature_match_result.h │ │ ├── simple_catalog.cc │ │ ├── simple_catalog.h │ │ ├── simple_constant.pb.cc │ │ ├── simple_constant.pb.h │ │ ├── simple_table.pb.cc │ │ ├── simple_table.pb.h │ │ ├── simple_value.pb.cc │ │ ├── simple_value.pb.h │ │ ├── sql_formatter.cc │ │ ├── sql_formatter.h │ │ ├── sql_formatter_test.cc │ │ ├── sql_function.cc │ │ ├── sql_function.h │ │ ├── sql_tvf.cc │ │ ├── sql_tvf.h │ │ ├── strings.cc │ │ ├── strings.h │ │ ├── strings_test.cc │ │ ├── table_from_proto.cc │ │ ├── table_from_proto.h │ │ ├── table_name_resolver.cc │ │ ├── table_name_resolver.h │ │ ├── table_name_resolver_test.cc │ │ ├── table_valued_function.cc │ │ ├── table_valued_function.h │ │ ├── table_valued_function_test.cc │ │ ├── templated_sql_function.cc │ │ ├── templated_sql_function.h │ │ ├── templated_sql_tvf.cc │ │ ├── templated_sql_tvf.h │ │ ├── type.h │ │ ├── type.pb.cc │ │ ├── type.pb.h │ │ ├── type_annotation.pb.cc │ │ ├── type_annotation.pb.h │ │ ├── type_modifiers.pb.cc │ │ ├── type_modifiers.pb.h │ │ ├── type_parameters.pb.cc │ │ ├── type_parameters.pb.h │ │ ├── types │ │ │ ├── BUILD │ │ │ ├── annotation.cc │ │ │ ├── annotation.h │ │ │ ├── array_type.cc │ │ │ ├── array_type.h │ │ │ ├── collation.cc │ │ │ ├── collation.h │ │ │ ├── collation_test.cc │ │ │ ├── dummy.go │ │ │ ├── enum_type.cc │ │ │ ├── enum_type.h │ │ │ ├── extended_type.cc │ │ │ ├── extended_type.h │ │ │ ├── internal_utils.cc │ │ │ ├── internal_utils.h │ │ │ ├── proto_type.cc │ │ │ ├── proto_type.h │ │ │ ├── simple_type.cc │ │ │ ├── simple_type.h │ │ │ ├── simple_value.cc │ │ │ ├── simple_value.h │ │ │ ├── simple_value_test.cc │ │ │ ├── struct_type.cc │ │ │ ├── struct_type.h │ │ │ ├── timestamp_util.cc │ │ │ ├── timestamp_util.h │ │ │ ├── type.cc │ │ │ ├── type.h │ │ │ ├── type_deserializer.cc │ │ │ ├── type_deserializer.h │ │ │ ├── type_factory.cc │ │ │ ├── type_factory.h │ │ │ ├── type_modifiers.cc │ │ │ ├── type_modifiers.h │ │ │ ├── type_modifiers_test.cc │ │ │ ├── type_parameters.cc │ │ │ ├── type_parameters.h │ │ │ ├── type_parameters_test.cc │ │ │ ├── value_equality_check_options.h │ │ │ └── value_representations.h │ │ ├── value.cc │ │ ├── value.h │ │ ├── value.pb.cc │ │ ├── value.pb.h │ │ ├── value_content.h │ │ ├── value_inl.h │ │ └── value_test.cc │ │ ├── reference_impl │ │ ├── BUILD │ │ ├── aggregate_op.cc │ │ ├── aggregate_op_test.cc │ │ ├── algebrizer.cc │ │ ├── algebrizer.h │ │ ├── algebrizer_test.cc │ │ ├── analytic_op.cc │ │ ├── analytic_op_test.cc │ │ ├── common.cc │ │ ├── common.h │ │ ├── dummy.go │ │ ├── evaluation.cc │ │ ├── evaluation.h │ │ ├── evaluator_table_iterator.pb.cc │ │ ├── evaluator_table_iterator.pb.h │ │ ├── expected_errors.cc │ │ ├── expected_errors.h │ │ ├── function.cc │ │ ├── function.h │ │ ├── functions │ │ │ ├── BUILD │ │ │ ├── dummy.go │ │ │ ├── hash.cc │ │ │ ├── hash.h │ │ │ ├── json.cc │ │ │ ├── json.h │ │ │ ├── register_all.cc │ │ │ ├── register_all.h │ │ │ ├── string_with_collation.cc │ │ │ ├── string_with_collation.h │ │ │ ├── uuid.cc │ │ │ └── uuid.h │ │ ├── operator.cc │ │ ├── operator.h │ │ ├── parameters.h │ │ ├── parameters_test.cc │ │ ├── proto_util.cc │ │ ├── proto_util.h │ │ ├── reference_driver.cc │ │ ├── reference_driver.h │ │ ├── relational_op.cc │ │ ├── relational_op_test.cc │ │ ├── rewrite_flags.cc │ │ ├── rewrite_flags.h │ │ ├── statement_evaluator.cc │ │ ├── statement_evaluator.h │ │ ├── test_relational_op.h │ │ ├── tuple.cc │ │ ├── tuple.h │ │ ├── tuple_comparator.cc │ │ ├── tuple_comparator.h │ │ ├── tuple_test.cc │ │ ├── tuple_test_util.h │ │ ├── type_helpers.cc │ │ ├── type_helpers.h │ │ ├── type_helpers_test.cc │ │ ├── type_parameter_constraints.cc │ │ ├── type_parameter_constraints.h │ │ ├── type_parameter_constraints_test.cc │ │ ├── use_reference_driver_for_compliance_test.cc │ │ ├── value_expr.cc │ │ ├── value_expr_test.cc │ │ ├── variable_generator.cc │ │ ├── variable_generator.h │ │ ├── variable_generator_test.cc │ │ ├── variable_id.cc │ │ └── variable_id.h │ │ ├── resolved_ast │ │ ├── BUILD │ │ ├── dummy.go │ │ ├── make_node_vector.h │ │ ├── make_node_vector_internal.h │ │ ├── make_node_vector_test.cc │ │ ├── query_expression.cc │ │ ├── query_expression.h │ │ ├── resolved_ast.cc │ │ ├── resolved_ast.h │ │ ├── resolved_ast.pb.cc │ │ ├── resolved_ast.pb.h │ │ ├── resolved_ast_comparator.cc │ │ ├── resolved_ast_comparator.h │ │ ├── resolved_ast_deep_copy_visitor.cc │ │ ├── resolved_ast_deep_copy_visitor.h │ │ ├── resolved_ast_deep_copy_visitor_test.cc │ │ ├── resolved_ast_enums.pb.cc │ │ ├── resolved_ast_enums.pb.h │ │ ├── resolved_ast_helper.cc │ │ ├── resolved_ast_helper.h │ │ ├── resolved_ast_helper_test.cc │ │ ├── resolved_ast_test.cc │ │ ├── resolved_ast_visitor.h │ │ ├── resolved_collation.cc │ │ ├── resolved_collation.h │ │ ├── resolved_collation_test.cc │ │ ├── resolved_column.cc │ │ ├── resolved_column.h │ │ ├── resolved_column_test.cc │ │ ├── resolved_node.cc │ │ ├── resolved_node.h │ │ ├── resolved_node_kind.h │ │ ├── resolved_node_kind.pb.cc │ │ ├── resolved_node_kind.pb.h │ │ ├── resolved_node_test.cc │ │ ├── rewrite_utils.cc │ │ ├── rewrite_utils.h │ │ ├── rewrite_utils_test.cc │ │ ├── serialization.pb.cc │ │ ├── serialization.pb.h │ │ ├── sql_builder.cc │ │ ├── sql_builder.h │ │ ├── test_utils.cc │ │ ├── test_utils.h │ │ ├── validator.cc │ │ ├── validator.h │ │ └── validator_test.cc │ │ ├── scripting │ │ ├── BUILD │ │ ├── break_continue_context.h │ │ ├── control_flow_graph.cc │ │ ├── control_flow_graph.h │ │ ├── dummy.go │ │ ├── error_helpers.cc │ │ ├── error_helpers.h │ │ ├── error_helpers_test.cc │ │ ├── parse_helpers.cc │ │ ├── parse_helpers.h │ │ ├── parsed_script.cc │ │ ├── parsed_script.h │ │ ├── parsed_script_test.cc │ │ ├── script_exception.pb.cc │ │ ├── script_exception.pb.h │ │ ├── script_executor.cc │ │ ├── script_executor.h │ │ ├── script_executor_impl.cc │ │ ├── script_executor_impl.h │ │ ├── script_executor_state.pb.cc │ │ ├── script_executor_state.pb.h │ │ ├── script_segment.cc │ │ ├── script_segment.h │ │ ├── serialization_helpers.cc │ │ ├── serialization_helpers.h │ │ ├── stack_frame.h │ │ ├── type_aliases.h │ │ ├── variable.pb.cc │ │ └── variable.pb.h │ │ ├── testdata │ │ ├── BUILD │ │ ├── dummy.go │ │ ├── error_catalog.cc │ │ ├── error_catalog.h │ │ ├── populate_sample_tables.cc │ │ ├── populate_sample_tables.h │ │ ├── sample_annotation.cc │ │ ├── sample_annotation.h │ │ ├── sample_catalog.cc │ │ ├── sample_catalog.h │ │ ├── sample_system_variables.cc │ │ ├── sample_system_variables.h │ │ ├── special_catalog.cc │ │ └── special_catalog.h │ │ ├── testing │ │ ├── BUILD │ │ ├── dummy.go │ │ ├── sql_types_test.cc │ │ ├── sql_types_test.h │ │ ├── test_catalog.cc │ │ ├── test_catalog.h │ │ ├── test_catalog_test.cc │ │ ├── test_function.cc │ │ ├── test_function.h │ │ ├── test_value.cc │ │ ├── test_value.h │ │ ├── type_util.cc │ │ ├── type_util.h │ │ ├── type_util_test.cc │ │ └── using_test_value.cc │ │ └── tools │ │ ├── dummy.go │ │ └── execute_query │ │ ├── BUILD │ │ ├── dummy.go │ │ ├── execute_query.cc │ │ ├── execute_query_internal_binproto.cc │ │ ├── execute_query_internal_csv.cc │ │ ├── execute_query_internal_textproto.cc │ │ ├── execute_query_loop.cc │ │ ├── execute_query_loop.h │ │ ├── execute_query_loop_test.cc │ │ ├── execute_query_prompt.cc │ │ ├── execute_query_prompt.h │ │ ├── execute_query_prompt_test.cc │ │ ├── execute_query_prompt_testutils.cc │ │ ├── execute_query_prompt_testutils.h │ │ ├── execute_query_prompt_testutils_test.cc │ │ ├── execute_query_proto_writer.cc │ │ ├── execute_query_proto_writer.h │ │ ├── execute_query_proto_writer_test.cc │ │ ├── execute_query_tool.cc │ │ ├── execute_query_tool.h │ │ ├── execute_query_tool_test.cc │ │ ├── execute_query_writer.cc │ │ ├── execute_query_writer.h │ │ ├── execute_query_writer_test.cc │ │ ├── homedir.cc │ │ ├── homedir.h │ │ ├── homedir_test.cc │ │ ├── output_query_result.cc │ │ ├── output_query_result.h │ │ ├── simple_proto_evaluator_table_iterator.cc │ │ ├── simple_proto_evaluator_table_iterator.h │ │ ├── string_error_collector.cc │ │ ├── string_error_collector.h │ │ ├── string_error_collector_test.cc │ │ └── testdata │ │ └── dummy.go ├── cmd │ ├── generator │ │ ├── bridge.yaml │ │ ├── config.yaml │ │ ├── go.mod │ │ ├── go.sum │ │ ├── import.yaml │ │ ├── main.go │ │ ├── pkg │ │ │ ├── bridge.go │ │ │ ├── build_file_parser.go │ │ │ ├── config.go │ │ │ ├── generator.go │ │ │ └── util.go │ │ └── templates │ │ │ ├── bind.cc.tmpl │ │ │ ├── bind.go.tmpl │ │ │ ├── bridge.h.tmpl │ │ │ ├── bridge.inc.tmpl │ │ │ ├── bridge_extern.h.tmpl │ │ │ ├── dummy.go.tmpl │ │ │ ├── root_bind.cc.tmpl │ │ │ └── root_bridge.h.tmpl │ └── updater │ │ ├── .gitignore │ │ ├── Dockerfile │ │ ├── Makefile │ │ ├── export.sh │ │ ├── go.mod │ │ ├── go.sum │ │ └── main.go └── helper │ ├── bind.go │ └── status.go ├── language_options.go ├── link.go ├── map.go ├── map_test.go ├── parse_resume_location.go ├── parser.go ├── parser_test.go ├── resolved_ast ├── collation.go ├── column.go ├── enum.go ├── function.go ├── kind.go ├── link.go ├── node.go └── walk.go ├── sql_formatter.go ├── sql_formatter_test.go ├── types ├── annotation_map.go ├── catalog.go ├── catalog_test.go ├── column.go ├── connection.go ├── constant.go ├── conversion.go ├── enum.go ├── function.go ├── model.go ├── parse_location.go ├── procedure.go ├── product_mode.go ├── table.go ├── table_valued_function.go ├── type.go └── value.go └── vendor.go /.gitattributes: -------------------------------------------------------------------------------- 1 | internal/** linguist-documentation 2 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [goccy] 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goccy/go-zetasql/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goccy/go-zetasql/HEAD/.gitmodules -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goccy/go-zetasql/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goccy/go-zetasql/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goccy/go-zetasql/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goccy/go-zetasql/HEAD/README.md -------------------------------------------------------------------------------- /analyzer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goccy/go-zetasql/HEAD/analyzer.go -------------------------------------------------------------------------------- /ast/kind.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goccy/go-zetasql/HEAD/ast/kind.go -------------------------------------------------------------------------------- /ast/link.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goccy/go-zetasql/HEAD/ast/link.go -------------------------------------------------------------------------------- /ast/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goccy/go-zetasql/HEAD/ast/node.go -------------------------------------------------------------------------------- /ast/walk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goccy/go-zetasql/HEAD/ast/walk.go -------------------------------------------------------------------------------- /catalog_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goccy/go-zetasql/HEAD/catalog_test.go -------------------------------------------------------------------------------- /enum.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goccy/go-zetasql/HEAD/enum.go -------------------------------------------------------------------------------- /error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goccy/go-zetasql/HEAD/error.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module github.com/goccy/go-zetasql 2 | 3 | go 1.19 4 | -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/absl/strings/strings.go: -------------------------------------------------------------------------------- 1 | package strings 2 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/algorithm/algorithm/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/algorithm/algorithm/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/algorithm/algorithm/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/algorithm/container/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/algorithm/container/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/algorithm/container/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/base/atomic_hook/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/base/atomic_hook/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/base/atomic_hook/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/base/base/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/base/base/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/base/base_internal/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/base/base_internal/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/base/base_internal/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/base/config/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/base/config/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/base/config/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/base/core_headers/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/base/core_headers/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/base/core_headers/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/base/dynamic_annotations/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/base/dynamic_annotations/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/base/dynamic_annotations/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/base/endian/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/base/endian/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/base/endian/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/base/errno_saver/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/base/errno_saver/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/base/errno_saver/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/base/fast_type_id/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/base/fast_type_id/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/base/fast_type_id/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/base/log_severity/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/base/log_severity/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/base/log_severity/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/base/malloc_internal/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/base/malloc_internal/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/base/pretty_function/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/base/pretty_function/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/base/pretty_function/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/base/raw_logging_internal/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/base/raw_logging_internal/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/base/scoped_set_env/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/base/scoped_set_env/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/base/scoped_set_env/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/base/spinlock_wait/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/base/spinlock_wait/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/base/spinlock_wait/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/base/strerror/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/base/strerror/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/base/strerror/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/base/throw_delegate/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/base/throw_delegate/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/base/throw_delegate/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/cleanup/cleanup/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/cleanup/cleanup/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/cleanup/cleanup/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/cleanup/cleanup_internal/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/cleanup/cleanup_internal/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/cleanup/cleanup_internal/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/container/btree/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/container/btree/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/container/btree/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/container/common/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/container/common/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/container/common/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/container/compressed_tuple/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/container/compressed_tuple/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/container/compressed_tuple/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/container/container_memory/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/container/container_memory/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/container/container_memory/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/container/counting_allocator/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/container/counting_allocator/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/container/counting_allocator/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/container/fixed_array/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/container/fixed_array/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/container/fixed_array/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/container/flat_hash_map/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/container/flat_hash_map/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/container/flat_hash_map/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/container/flat_hash_set/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/container/flat_hash_set/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/container/flat_hash_set/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/container/hash_function_defaults/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/container/hash_function_defaults/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/container/hash_function_defaults/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/container/hash_policy_traits/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/container/hash_policy_traits/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/container/hash_policy_traits/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/container/hashtable_debug/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/container/hashtable_debug/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/container/hashtable_debug/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/container/hashtable_debug_hooks/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/container/hashtable_debug_hooks/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/container/hashtable_debug_hooks/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/container/hashtablez_sampler/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/container/hashtablez_sampler/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/container/hashtablez_sampler/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/container/have_sse/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/container/have_sse/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/container/have_sse/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/container/inlined_vector/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/container/inlined_vector/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/container/inlined_vector/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/container/inlined_vector_internal/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/container/inlined_vector_internal/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/container/inlined_vector_internal/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/container/layout/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/container/layout/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/container/layout/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/container/node_hash_map/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/container/node_hash_map/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/container/node_hash_map/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/container/node_hash_set/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/container/node_hash_set/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/container/node_hash_set/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/container/node_slot_policy/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/container/node_slot_policy/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/container/node_slot_policy/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/container/raw_hash_map/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/container/raw_hash_map/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/container/raw_hash_map/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/container/raw_hash_set/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/container/raw_hash_set/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/container/tracked/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/container/tracked/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/container/tracked/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/debugging/debugging_internal/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/debugging/debugging_internal/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/debugging/debugging_internal/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/debugging/demangle_internal/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/debugging/demangle_internal/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/debugging/demangle_internal/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/debugging/examine_stack/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/debugging/examine_stack/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/debugging/examine_stack/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/debugging/failure_signal_handler/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/debugging/failure_signal_handler/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/debugging/failure_signal_handler/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/debugging/leak_check/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/debugging/leak_check/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/debugging/leak_check/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/debugging/leak_check_disable/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/debugging/leak_check_disable/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/debugging/leak_check_disable/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/debugging/stack_consumption/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/debugging/stack_consumption/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/debugging/stack_consumption/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/debugging/stacktrace/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/debugging/stacktrace/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/debugging/stacktrace/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/debugging/symbolize/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/debugging/symbolize/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/debugging/symbolize/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/flags/commandlineflag/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/flags/commandlineflag/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/flags/commandlineflag/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/flags/commandlineflag_internal/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/flags/commandlineflag_internal/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/flags/commandlineflag_internal/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/flags/config/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/flags/config/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/flags/config/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/flags/flag/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/flags/flag/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/flags/flag/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/flags/flag_internal/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/flags/flag_internal/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/flags/flag_internal/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/flags/marshalling/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/flags/marshalling/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/flags/marshalling/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/flags/parse/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/flags/parse/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/flags/parse/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/flags/path_util/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/flags/path_util/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/flags/path_util/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/flags/private_handle_accessor/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/flags/private_handle_accessor/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/flags/private_handle_accessor/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/flags/program_name/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/flags/program_name/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/flags/program_name/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/flags/reflection/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/flags/reflection/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/flags/reflection/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/flags/usage/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/flags/usage/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/flags/usage/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/flags/usage_internal/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/flags/usage_internal/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/flags/usage_internal/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/functional/bind_front/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/functional/bind_front/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/functional/bind_front/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/functional/function_ref/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/functional/function_ref/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/functional/function_ref/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/hash/city/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/hash/city/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/hash/city/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/hash/hash/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/hash/hash/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/hash/hash/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/hash/low_level_hash/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/hash/low_level_hash/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/hash/low_level_hash/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/hash/spy_hash_state/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/hash/spy_hash_state/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/hash/spy_hash_state/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/memory/memory/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/memory/memory/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/memory/memory/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/meta/type_traits/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/meta/type_traits/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/meta/type_traits/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/numeric/bits/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/numeric/bits/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/numeric/bits/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/numeric/int128/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/numeric/int128/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/numeric/int128/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/numeric/representation/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/numeric/representation/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/numeric/representation/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/profiling/exponential_biased/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/profiling/exponential_biased/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/profiling/exponential_biased/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/profiling/periodic_sampler/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/profiling/periodic_sampler/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/profiling/periodic_sampler/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/profiling/sample_recorder/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/profiling/sample_recorder/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/profiling/sample_recorder/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/random/bit_gen_ref/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/random/bit_gen_ref/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/random/bit_gen_ref/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/random/distributions/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/random/distributions/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/random/distributions/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/random/go_internal/distribution_caller/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/random/go_internal/distribution_caller/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/random/go_internal/distribution_caller/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/random/go_internal/explicit_seed_seq/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/random/go_internal/explicit_seed_seq/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/random/go_internal/explicit_seed_seq/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/random/go_internal/fast_uniform_bits/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/random/go_internal/fast_uniform_bits/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/random/go_internal/fast_uniform_bits/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/random/go_internal/fastmath/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/random/go_internal/fastmath/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/random/go_internal/fastmath/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/random/go_internal/generate_real/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/random/go_internal/generate_real/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/random/go_internal/generate_real/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/random/go_internal/iostream_state_saver/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/random/go_internal/iostream_state_saver/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/random/go_internal/iostream_state_saver/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/random/go_internal/nonsecure_base/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/random/go_internal/nonsecure_base/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/random/go_internal/nonsecure_base/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/random/go_internal/pcg_engine/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/random/go_internal/pcg_engine/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/random/go_internal/pcg_engine/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/random/go_internal/platform/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/random/go_internal/platform/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/random/go_internal/platform/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/random/go_internal/pool_urbg/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/random/go_internal/pool_urbg/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/random/go_internal/pool_urbg/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/random/go_internal/randen/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/random/go_internal/randen/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/random/go_internal/randen/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/random/go_internal/randen_engine/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/random/go_internal/randen_engine/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/random/go_internal/randen_engine/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/random/go_internal/randen_hwaes/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/random/go_internal/randen_hwaes/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/random/go_internal/randen_hwaes/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/random/go_internal/randen_hwaes_impl/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/random/go_internal/randen_hwaes_impl/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/random/go_internal/randen_hwaes_impl/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/random/go_internal/randen_slow/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/random/go_internal/randen_slow/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/random/go_internal/randen_slow/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/random/go_internal/salted_seed_seq/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/random/go_internal/salted_seed_seq/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/random/go_internal/salted_seed_seq/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/random/go_internal/seed_material/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/random/go_internal/seed_material/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/random/go_internal/seed_material/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/random/go_internal/sequence_urbg/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/random/go_internal/sequence_urbg/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/random/go_internal/sequence_urbg/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/random/go_internal/traits/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/random/go_internal/traits/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/random/go_internal/traits/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/random/go_internal/uniform_helper/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/random/go_internal/uniform_helper/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/random/go_internal/uniform_helper/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/random/go_internal/wide_multiply/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/random/go_internal/wide_multiply/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/random/go_internal/wide_multiply/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/random/random/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/random/random/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/random/random/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/random/seed_gen_exception/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/random/seed_gen_exception/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/random/seed_gen_exception/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/random/seed_sequences/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/random/seed_sequences/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/random/seed_sequences/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/status/status/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/status/status/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/status/status/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/status/statusor/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/status/statusor/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/status/statusor/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/strings/cord/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/strings/cord/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/strings/cord/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/strings/cord_internal/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/strings/cord_internal/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/strings/cord_internal/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/strings/cordz_functions/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/strings/cordz_functions/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/strings/cordz_functions/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/strings/cordz_handle/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/strings/cordz_handle/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/strings/cordz_handle/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/strings/cordz_info/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/strings/cordz_info/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/strings/cordz_info/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/strings/cordz_sample_token/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/strings/cordz_sample_token/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/strings/cordz_sample_token/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/strings/cordz_statistics/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/strings/cordz_statistics/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/strings/cordz_statistics/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/strings/cordz_update_scope/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/strings/cordz_update_scope/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/strings/cordz_update_scope/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/strings/cordz_update_tracker/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/strings/cordz_update_tracker/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/strings/cordz_update_tracker/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/strings/internal/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/strings/internal/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/strings/internal/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/strings/pow10_helper/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/strings/pow10_helper/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/strings/pow10_helper/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/strings/str_format/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/strings/str_format/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/strings/str_format/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/strings/str_format_internal/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/strings/str_format_internal/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/strings/str_format_internal/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/strings/strings/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/strings/strings/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/strings/strings/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/synchronization/graphcycles_internal/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/synchronization/graphcycles_internal/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/synchronization/graphcycles_internal/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/synchronization/kernel_timeout_internal/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/synchronization/kernel_timeout_internal/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/synchronization/kernel_timeout_internal/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/synchronization/synchronization/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/synchronization/synchronization/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/synchronization/synchronization/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/synchronization/thread_pool/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/synchronization/thread_pool/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/synchronization/thread_pool/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/time/go_internal/cctz/civil_time/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/time/go_internal/cctz/civil_time/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/time/go_internal/cctz/civil_time/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/time/go_internal/cctz/time_zone/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/time/time/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/time/time/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/time/time/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/types/any/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/types/any/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/types/any/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/types/bad_any_cast/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/types/bad_any_cast/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/types/bad_any_cast/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/types/bad_any_cast_impl/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/types/bad_any_cast_impl/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/types/bad_any_cast_impl/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/types/bad_optional_access/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/types/bad_optional_access/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/types/bad_optional_access/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/types/bad_variant_access/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/types/bad_variant_access/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/types/bad_variant_access/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/types/compare/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/types/compare/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/types/compare/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/types/optional/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/types/optional/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/types/optional/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/types/span/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/types/span/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/types/span/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/types/variant/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/types/variant/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/types/variant/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/utility/utility/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/utility/utility/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-absl/utility/utility/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/analyzer/all_rewriters/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/analyzer/all_rewriters/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/analyzer/all_rewriters/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/analyzer/analyzer_impl/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/analyzer/analyzer_impl/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/analyzer/analyzer_impl/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/analyzer/anonymization_rewriter/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/analyzer/anonymization_rewriter/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/analyzer/anonymization_rewriter/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/analyzer/container_hash_equals/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/analyzer/container_hash_equals/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/analyzer/container_hash_equals/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/analyzer/expr_matching_helpers/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/analyzer/expr_matching_helpers/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/analyzer/expr_matching_helpers/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/analyzer/filter_fields_path_validator/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/analyzer/filter_fields_path_validator/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/analyzer/function_signature_matcher/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/analyzer/function_signature_matcher/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/analyzer/function_signature_matcher/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/analyzer/input_argument_type_resolver_helper/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/analyzer/lambda_util/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/analyzer/lambda_util/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/analyzer/lambda_util/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/analyzer/resolver/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/analyzer/resolver/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/analyzer/resolver/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/analyzer/rewrite_resolved_ast/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/analyzer/rewrite_resolved_ast/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/analyzer/rewrite_resolved_ast/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/analyzer/rewriters/array_functions_rewriter/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/analyzer/rewriters/array_functions_rewriter/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/analyzer/rewriters/flatten_rewriter/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/analyzer/rewriters/flatten_rewriter/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/analyzer/rewriters/flatten_rewriter/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/analyzer/rewriters/let_expr_rewriter/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/analyzer/rewriters/let_expr_rewriter/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/analyzer/rewriters/let_expr_rewriter/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/analyzer/rewriters/map_function_rewriter/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/analyzer/rewriters/map_function_rewriter/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/analyzer/rewriters/pivot_rewriter/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/analyzer/rewriters/pivot_rewriter/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/analyzer/rewriters/pivot_rewriter/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/analyzer/rewriters/registration/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/analyzer/rewriters/registration/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/analyzer/rewriters/registration/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/analyzer/rewriters/rewriter_interface/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/analyzer/rewriters/rewriter_interface/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/analyzer/rewriters/rewriter_relevance_checker/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/analyzer/rewriters/sql_function_inliner/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/analyzer/rewriters/sql_function_inliner/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/analyzer/rewriters/typeof_function_rewriter/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/analyzer/rewriters/typeof_function_rewriter/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/analyzer/rewriters/unpivot_rewriter/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/analyzer/rewriters/unpivot_rewriter/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/analyzer/rewriters/unpivot_rewriter/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/analyzer/substitute/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/analyzer/substitute/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/analyzer/substitute/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/base/arena/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/base/arena/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/base/arena/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/base/arena_allocator/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/base/arena_allocator/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/base/arena_allocator/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/base/base/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/base/base/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/base/base/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/base/bits/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/base/bits/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/base/case/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/base/case/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/base/case/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/base/clock/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/base/clock/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/base/clock/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/base/edit_distance/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/base/edit_distance/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/base/edit_distance/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/base/endian/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/base/endian/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/base/endian/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/base/enum_utils/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/base/enum_utils/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/base/enum_utils/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/base/exactfloat/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/base/exactfloat/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/base/exactfloat/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/base/file_util/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/base/file_util/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/base/file_util/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/base/file_util_oss/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/base/file_util_oss/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/base/file_util_oss/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/base/flat_internal/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/base/flat_internal/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/base/flat_internal/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/base/flat_set/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/base/flat_set/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/base/flat_set/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/base/general_trie/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/base/general_trie/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/base/general_trie/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/base/logging/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/base/logging/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/base/logging/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/base/map_util/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/base/map_util/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/base/map_util/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/base/mathlimits/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/base/mathlimits/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/base/mathlimits/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/base/mathutil/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/base/mathutil/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/base/mathutil/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/base/net/idn/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/base/net/idn/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/base/net/idn/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/base/net/idn_oss/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/base/net/idn_oss/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/base/net/idn_oss/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/base/net/ipaddress/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/base/net/ipaddress/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/base/net/ipaddress/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/base/net/ipaddress_oss/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/base/net/ipaddress_oss/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/base/net/ipaddress_oss/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/base/net/public_suffix/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/base/net/public_suffix/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/base/net/public_suffix/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/base/net/public_suffix_oss/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/base/net/public_suffix_oss/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/base/net/public_suffix_oss/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/base/no_destructor/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/base/no_destructor/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/base/no_destructor/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/base/path/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/base/path/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/base/path/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/base/refcount/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/base/refcount/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/base/refcount/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/base/ret_check/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/base/ret_check/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/base/ret_check/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/base/source_location/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/base/source_location/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/base/source_location/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/base/status/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/base/status/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/base/status/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/base/stl_util/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/base/stl_util/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/base/stl_util/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/base/string_numbers/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/base/string_numbers/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/base/string_numbers/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/base/strings/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/base/strings/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/base/strings/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/base/time_proto_util/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/base/time_proto_util/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/base/time_proto_util/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/base/varsetter/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/base/varsetter/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/base/varsetter/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/common/aggregate_null_handling/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/common/aggregate_null_handling/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/common/aggregate_null_handling/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/common/builtin_function_internal/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/common/builtin_function_internal/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/common/builtin_function_internal/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/common/errors/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/common/errors/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/common/errors/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/common/evaluator_registration_utils/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/common/evaluator_registration_utils/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/common/evaluator_registration_utils/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/common/float_margin/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/common/float_margin/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/common/float_margin/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/common/initialize_required_fields/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/common/initialize_required_fields/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/common/initialize_required_fields/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/common/int_ops_util/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/common/int_ops_util/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/common/int_ops_util/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/common/internal_value/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/common/internal_value/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/common/internal_value/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/common/json_parser/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/common/json_parser/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/common/json_parser/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/common/json_util/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/common/json_util/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/common/json_util/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/common/multiprecision_int/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/common/multiprecision_int/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/common/multiprecision_int/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/common/proto_from_iterator/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/common/proto_from_iterator/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/common/proto_from_iterator/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/common/proto_helper/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/common/proto_helper/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/common/proto_helper/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/common/simple_evaluator_table_iterator/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/common/simple_evaluator_table_iterator/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/common/status_payload_utils/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/common/status_payload_utils/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/common/status_payload_utils/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/common/string_util/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/common/string_util/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/common/string_util/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/common/utf_util/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/common/utf_util/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/common/utf_util/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/parser/ast_enums_cc_proto/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/parser/ast_enums_cc_proto/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/parser/ast_enums_cc_proto/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/parser/bison_parser_generated_lib/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/parser/bison_parser_generated_lib/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/parser/bison_parser_generated_lib/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/parser/flex_istream/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/parser/flex_istream/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/parser/flex_istream/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/parser/keywords/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/parser/keywords/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/parser/keywords/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/parser/parse_tree/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/parser/parse_tree/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/parser/parse_tree/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/parser/parse_tree_cc_proto/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/parser/parse_tree_cc_proto/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/parser/parse_tree_cc_proto/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/parser/parse_tree_serializer/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/parser/parse_tree_serializer/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/parser/parse_tree_serializer/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/parser/parser/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/parser/parser/hoge: -------------------------------------------------------------------------------- 1 | { 2 | 3 | } 4 | 5 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/proto/function_cc_proto/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/proto/function_cc_proto/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/proto/function_cc_proto/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/proto/internal_error_location_cc_proto/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/proto/internal_error_location_cc_proto/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/proto/options_cc_proto/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/proto/options_cc_proto/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/proto/options_cc_proto/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/proto/simple_catalog_cc_proto/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/proto/simple_catalog_cc_proto/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/proto/simple_catalog_cc_proto/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/analyzer_options/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/analyzer_options/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/analyzer_options/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/analyzer_output/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/analyzer_output/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/analyzer_output/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/analyzer_output_properties/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/analyzer_output_properties/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/annotation/collation/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/annotation/collation/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/annotation/collation/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/annotation_cc_proto/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/annotation_cc_proto/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/annotation_cc_proto/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/anon_function/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/anon_function/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/anon_function/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/anonymization_utils/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/anonymization_utils/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/anonymization_utils/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/builtin_function/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/builtin_function/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/builtin_function/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/builtin_function_cc_proto/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/builtin_function_cc_proto/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/builtin_function_options/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/builtin_function_options/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/builtin_function_options/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/catalog/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/civil_time/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/civil_time/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/civil_time/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/coercer/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/coercer/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/coercer/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/collation_cc_proto/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/collation_cc_proto/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/collation_cc_proto/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/collator/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/collator/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/collator/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/collator_lite/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/collator_lite/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/collator_lite/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/constant/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/constant/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/constant/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/cycle_detector/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/cycle_detector/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/cycle_detector/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/deprecation_warning_cc_proto/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/deprecation_warning_cc_proto/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/error_helpers/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/error_helpers/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/error_helpers/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/error_location_cc_proto/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/error_location_cc_proto/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/error_location_cc_proto/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/evaluator/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/evaluator/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/evaluator/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/evaluator_base/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/evaluator_base/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/evaluator_base/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/evaluator_lite/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/evaluator_lite/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/evaluator_lite/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/evaluator_table_iterator/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/evaluator_table_iterator/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/evaluator_table_iterator/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/function/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/function/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/function/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/function_cc_proto/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/function_cc_proto/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/function_cc_proto/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/functions/arithmetics/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/functions/arithmetics/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/functions/arithmetics/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/functions/arithmetics_internal/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/functions/arithmetics_internal/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/functions/bitcast/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/functions/bitcast/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/functions/bitcast/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/functions/bitwise/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/functions/bitwise/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/functions/bitwise/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/functions/cast_date_time/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/functions/cast_date_time/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/functions/cast_date_time/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/functions/common_proto/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/functions/common_proto/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/functions/common_proto/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/functions/comparison/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/functions/comparison/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/functions/comparison/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/functions/convert/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/functions/convert/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/functions/convert/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/functions/convert_internal/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/functions/convert_internal/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/functions/convert_proto/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/functions/convert_proto/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/functions/convert_proto/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/functions/convert_string/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/functions/convert_string/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/functions/convert_string/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/functions/date_time_util/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/functions/date_time_util/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/functions/date_time_util/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/functions/date_time_util_internal/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/functions/datetime_cc_proto/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/functions/datetime_cc_proto/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/functions/format_max_output_width/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/functions/generate_array/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/functions/generate_array/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/functions/generate_array/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/functions/hash/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/functions/hash/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/functions/hash/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/functions/json/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/functions/json/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/functions/json/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/functions/json_format/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/functions/json_format/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/functions/json_format/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/functions/json_internal/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/functions/json_internal/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/functions/json_internal/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/functions/like/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/functions/like/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/functions/like/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/functions/math/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/functions/math/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/functions/math/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/functions/net/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/functions/net/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/functions/net/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/functions/normalize_mode_cc_proto/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/functions/numeric/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/functions/numeric/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/functions/numeric/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/functions/parse_date_time/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/functions/parse_date_time/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/functions/parse_date_time_utils/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/functions/parse_date_time_utils/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/functions/percentile/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/functions/percentile/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/functions/percentile/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/functions/regexp/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/functions/regexp/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/functions/regexp/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/functions/string/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/functions/string/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/functions/string/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/functions/string_format/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/functions/string_format/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/functions/string_format/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/functions/string_with_collation/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/functions/string_with_collation/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/functions/to_json/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/functions/to_json/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/functions/to_json/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/functions/util/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/functions/util/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/functions/util/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/functions/uuid/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/functions/uuid/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/functions/uuid/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/id_string/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/id_string/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/id_string/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/interval_value/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/interval_value/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/interval_value/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/json_value/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/json_value/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/json_value/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/language_options/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/language_options/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/literal_remover/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/literal_remover/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/literal_remover/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/multi_catalog/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/multi_catalog/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/multi_catalog/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/non_sql_function/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/non_sql_function/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/non_sql_function/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/numeric_constants/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/numeric_constants/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/numeric_constants/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/numeric_parser/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/numeric_parser/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/numeric_parser/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/numeric_value/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/numeric_value/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/numeric_value/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/options_cc_proto/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/options_cc_proto/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/options_cc_proto/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/parse_helpers/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/parse_helpers/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/parse_helpers/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/parse_location/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/parse_location/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/parse_location/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/parse_location_range_cc_proto/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/parse_location_range_cc_proto/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/parse_resume_location/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/parse_resume_location/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/parse_resume_location/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/parse_resume_location_cc_proto/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/parse_resume_location_cc_proto/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/proto/type_annotation_cc_proto/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/proto/type_annotation_cc_proto/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/proto_value_conversion/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/proto_value_conversion/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/proto_value_conversion/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/signature_match_result/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/signature_match_result/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/signature_match_result/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/simple_constant_cc_proto/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/simple_constant_cc_proto/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/simple_constant_cc_proto/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/simple_table_cc_proto/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/simple_table_cc_proto/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/simple_table_cc_proto/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/simple_value_cc_proto/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/simple_value_cc_proto/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/simple_value_cc_proto/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/sql_formatter/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/sql_function/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/sql_function/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/sql_function/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/sql_tvf/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/sql_tvf/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/sql_tvf/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/strings/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/strings/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/strings/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/templated_sql_function/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/templated_sql_function/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/templated_sql_function/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/templated_sql_tvf/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/templated_sql_tvf/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/templated_sql_tvf/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/type/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/type/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/type/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/type_annotation_cc_proto/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/type_annotation_cc_proto/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/type_annotation_cc_proto/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/type_cc_proto/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/type_cc_proto/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/type_cc_proto/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/type_parameters_cc_proto/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/type_parameters_cc_proto/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/type_parameters_cc_proto/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/types/timestamp_util/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/types/timestamp_util/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/types/timestamp_util/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/types/types/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/types/types/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/types/types/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/types/value_representations/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/types/value_representations/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/value/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/value/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/value/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/value_cc_proto/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/value_cc_proto/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/value_cc_proto/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/value_content/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/value_content/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/public/value_content/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/reference_impl/algebrizer/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/reference_impl/algebrizer/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/reference_impl/common/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/reference_impl/common/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/reference_impl/common/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/reference_impl/evaluation/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/reference_impl/evaluation/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/reference_impl/evaluation/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/reference_impl/functions/hash/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/reference_impl/functions/hash/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/reference_impl/functions/hash/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/reference_impl/functions/json/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/reference_impl/functions/json/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/reference_impl/functions/json/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/reference_impl/functions/register_all/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/reference_impl/functions/register_all/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/reference_impl/functions/uuid/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/reference_impl/functions/uuid/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/reference_impl/functions/uuid/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/reference_impl/parameters/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/reference_impl/parameters/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/reference_impl/parameters/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/reference_impl/proto_util/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/reference_impl/proto_util/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/reference_impl/proto_util/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/reference_impl/rewrite_flags/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/reference_impl/rewrite_flags/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/reference_impl/rewrite_flags/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/reference_impl/statement_evaluator/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/reference_impl/statement_evaluator/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/reference_impl/type_helpers/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/reference_impl/type_helpers/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/reference_impl/type_helpers/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/reference_impl/type_parameter_constraints/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/reference_impl/variable_generator/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/reference_impl/variable_generator/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/resolved_ast/comparator/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/resolved_ast/comparator/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/resolved_ast/comparator/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/resolved_ast/make_node_vector/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/resolved_ast/make_node_vector/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/resolved_ast/make_node_vector/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/resolved_ast/resolved_ast/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/resolved_ast/resolved_ast/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/resolved_ast/resolved_ast/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/resolved_ast/resolved_ast_cc_proto/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/resolved_ast/resolved_ast_cc_proto/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/resolved_ast/resolved_ast_enums_cc_proto/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/resolved_ast/resolved_node_kind_cc_proto/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/resolved_ast/rewrite_utils/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/resolved_ast/rewrite_utils/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/resolved_ast/rewrite_utils/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/resolved_ast/serialization_cc_proto/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/resolved_ast/serialization_cc_proto/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/resolved_ast/sql_builder/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/resolved_ast/sql_builder/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/resolved_ast/sql_builder/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/resolved_ast/validator/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/resolved_ast/validator/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/resolved_ast/validator/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/scripting/control_flow_graph/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/scripting/control_flow_graph/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/scripting/control_flow_graph/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/scripting/error_helpers/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/scripting/error_helpers/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/scripting/error_helpers/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/scripting/parse_helpers/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/scripting/parse_helpers/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/scripting/parse_helpers/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/scripting/parsed_script/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/scripting/parsed_script/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/scripting/parsed_script/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/scripting/script_exception_cc_proto/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/scripting/script_exception_cc_proto/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/scripting/script_executor/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/scripting/script_executor/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/scripting/script_executor/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/scripting/script_executor_state_cc_proto/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/scripting/script_segment/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/scripting/script_segment/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/scripting/script_segment/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/scripting/stack_frame/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/scripting/stack_frame/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/scripting/stack_frame/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/scripting/type_aliases/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/scripting/type_aliases/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/scripting/type_aliases/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/scripting/variable_cc_proto/bridge.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/scripting/variable_cc_proto/bridge_cc.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ccall/go-zetasql/scripting/variable_cc_proto/bridge_extern.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /internal/cmd/updater/.gitignore: -------------------------------------------------------------------------------- 1 | cache 2 | -------------------------------------------------------------------------------- /link.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goccy/go-zetasql/HEAD/link.go -------------------------------------------------------------------------------- /map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goccy/go-zetasql/HEAD/map.go -------------------------------------------------------------------------------- /map_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goccy/go-zetasql/HEAD/map_test.go -------------------------------------------------------------------------------- /parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goccy/go-zetasql/HEAD/parser.go -------------------------------------------------------------------------------- /types/enum.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goccy/go-zetasql/HEAD/types/enum.go -------------------------------------------------------------------------------- /types/type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goccy/go-zetasql/HEAD/types/type.go -------------------------------------------------------------------------------- /vendor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goccy/go-zetasql/HEAD/vendor.go --------------------------------------------------------------------------------