ID
stringlengths
36
36
Language
stringclasses
1 value
Repository Name
stringclasses
13 values
File Name
stringlengths
2
48
File Path in Repository
stringlengths
11
111
File Path for Unit Test
stringlengths
13
116
Code
stringlengths
0
278k
Unit Test - (Ground Truth)
stringlengths
78
663k
Code Url
stringlengths
91
198
Test Code Url
stringlengths
93
203
Commit Hash
stringclasses
13 values
b5213f53-4bff-4a65-a833-0de7b1b67a3f
cpp
google/cel-cpp
source_position
eval/public/source_position.cc
eval/public/source_position_test.cc
#include "eval/public/source_position.h" #include <utility> namespace google { namespace api { namespace expr { namespace runtime { using google::api::expr::v1alpha1::SourceInfo; namespace { std::pair<int, int32_t> GetLineAndLineOffset(const SourceInfo* source_info, int32_t po...
#include "eval/public/source_position.h" #include "google/api/expr/v1alpha1/syntax.pb.h" #include "internal/testing.h" namespace google { namespace api { namespace expr { namespace runtime { namespace { using ::testing::Eq; using google::api::expr::v1alpha1::SourceInfo; class SourcePositionTest : public testing::Test {...
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/eval/public/source_position.cc
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/eval/public/source_position_test.cc
4552db5798fb0853b131b783d8875794334fae7f
0f006b4a-ddcc-4597-8679-08dd5fc18a8a
cpp
google/cel-cpp
cel_number
eval/public/cel_number.cc
eval/public/cel_number_test.cc
#include "eval/public/cel_number.h" #include "eval/public/cel_value.h" namespace google::api::expr::runtime { absl::optional<CelNumber> GetNumberFromCelValue(const CelValue& value) { if (int64_t val; value.GetValue(&val)) { return CelNumber(val); } else if (uint64_t val; value.GetValue(&val)) { return CelNu...
#include "eval/public/cel_number.h" #include <cstdint> #include <limits> #include "absl/types/optional.h" #include "eval/public/cel_value.h" #include "internal/testing.h" namespace google::api::expr::runtime { namespace { using ::testing::Optional; TEST(CelNumber, GetNumberFromCelValue) { EXPECT_THAT(GetNumberFromCel...
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/eval/public/cel_number.cc
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/eval/public/cel_number_test.cc
4552db5798fb0853b131b783d8875794334fae7f
d99df65f-ba6b-42d7-bf07-86c166969517
cpp
google/cel-cpp
cel_value
eval/public/cel_value.cc
eval/public/cel_value_test.cc
#include "eval/public/cel_value.h" #include <cstdint> #include <string> #include <utility> #include <vector> #include "absl/base/attributes.h" #include "absl/base/no_destructor.h" #include "absl/status/status.h" #include "absl/strings/match.h" #include "absl/strings/str_cat.h" #include "absl/strings/str_format.h" #incl...
#include "eval/public/cel_value.h" #include <cstdint> #include <string> #include "absl/status/status.h" #include "absl/status/statusor.h" #include "absl/strings/cord.h" #include "absl/strings/match.h" #include "absl/strings/string_view.h" #include "absl/time/time.h" #include "absl/types/optional.h" #include "common/mem...
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/eval/public/cel_value.cc
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/eval/public/cel_value_test.cc
4552db5798fb0853b131b783d8875794334fae7f
6d7c5496-6c39-4052-b4be-06ee7b55571d
cpp
google/cel-cpp
matchers
eval/public/testing/matchers.cc
eval/public/testing/matchers_test.cc
#include "eval/public/testing/matchers.h" #include <ostream> #include <utility> #include "google/protobuf/message.h" #include "gmock/gmock.h" #include "gtest/gtest.h" #include "absl/strings/string_view.h" #include "eval/public/set_util.h" #include "internal/casts.h" namespace google::api::expr::runtime { void PrintTo(c...
#include "eval/public/testing/matchers.h" #include "absl/status/status.h" #include "absl/time/time.h" #include "eval/public/containers/container_backed_list_impl.h" #include "eval/public/structs/cel_proto_wrapper.h" #include "eval/testutil/test_message.pb.h" #include "internal/testing.h" #include "testutil/util.h" name...
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/eval/public/testing/matchers.cc
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/eval/public/testing/matchers_test.cc
4552db5798fb0853b131b783d8875794334fae7f
7d226d97-756f-49e0-8122-2a6f998635ce
cpp
google/cel-cpp
protobuf_descriptor_type_provider
eval/public/structs/protobuf_descriptor_type_provider.cc
eval/public/structs/protobuf_descriptor_type_provider_test.cc
#include "eval/public/structs/protobuf_descriptor_type_provider.h" #include <memory> #include <utility> #include "google/protobuf/descriptor.h" #include "absl/synchronization/mutex.h" #include "eval/public/structs/proto_message_type_adapter.h" namespace google::api::expr::runtime { absl::optional<LegacyTypeAdapter> Pro...
#include "eval/public/structs/protobuf_descriptor_type_provider.h" #include <optional> #include "google/protobuf/wrappers.pb.h" #include "eval/public/cel_value.h" #include "eval/public/structs/legacy_type_info_apis.h" #include "eval/public/testing/matchers.h" #include "extensions/protobuf/memory_manager.h" #include "in...
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/eval/public/structs/protobuf_descriptor_type_provider.cc
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/eval/public/structs/protobuf_descriptor_type_provider_test.cc
4552db5798fb0853b131b783d8875794334fae7f
72404f3d-ecd2-4b7c-a0d4-46a6e8782029
cpp
google/cel-cpp
proto_message_type_adapter
eval/public/structs/proto_message_type_adapter.cc
eval/public/structs/proto_message_type_adapter_test.cc
#include "eval/public/structs/proto_message_type_adapter.h" #include <cstdint> #include <limits> #include <string> #include <utility> #include <vector> #include "google/protobuf/util/message_differencer.h" #include "absl/base/no_destructor.h" #include "absl/log/absl_check.h" #include "absl/status/status.h" #include "ab...
#include "eval/public/structs/proto_message_type_adapter.h" #include <vector> #include "google/protobuf/wrappers.pb.h" #include "google/protobuf/descriptor.pb.h" #include "absl/status/status.h" #include "base/attribute.h" #include "common/value.h" #include "eval/public/cel_value.h" #include "eval/public/containers/cont...
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/eval/public/structs/proto_message_type_adapter.cc
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/eval/public/structs/proto_message_type_adapter_test.cc
4552db5798fb0853b131b783d8875794334fae7f
2c67b126-fa63-44ac-8f6f-a4423e067344
cpp
google/cel-cpp
legacy_type_provider
eval/public/structs/legacy_type_provider.cc
eval/public/structs/legacy_type_provider_test.cc
#include "eval/public/structs/legacy_type_provider.h" #include <cstdint> #include <utility> #include "absl/status/status.h" #include "absl/status/statusor.h" #include "absl/strings/cord.h" #include "absl/strings/str_cat.h" #include "absl/strings/string_view.h" #include "absl/strings/strip.h" #include "absl/types/option...
#include "eval/public/structs/legacy_type_provider.h" #include <optional> #include <string> #include "absl/strings/string_view.h" #include "eval/public/structs/legacy_type_info_apis.h" #include "internal/testing.h" namespace google::api::expr::runtime { namespace { class LegacyTypeProviderTestEmpty : public LegacyTypeP...
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/eval/public/structs/legacy_type_provider.cc
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/eval/public/structs/legacy_type_provider_test.cc
4552db5798fb0853b131b783d8875794334fae7f
e7b63123-db7e-4476-8c0c-afa1dc0e5c67
cpp
google/cel-cpp
cel_proto_descriptor_pool_builder
eval/public/structs/cel_proto_descriptor_pool_builder.cc
eval/public/structs/cel_proto_descriptor_pool_builder_test.cc
#include "eval/public/structs/cel_proto_descriptor_pool_builder.h" #include <string> #include "google/protobuf/any.pb.h" #include "google/protobuf/duration.pb.h" #include "google/protobuf/empty.pb.h" #include "google/protobuf/field_mask.pb.h" #include "google/protobuf/struct.pb.h" #include "google/protobuf/timestamp.pb...
#include "eval/public/structs/cel_proto_descriptor_pool_builder.h" #include <string> #include <vector> #include "google/protobuf/any.pb.h" #include "absl/container/flat_hash_map.h" #include "eval/testutil/test_message.pb.h" #include "internal/testing.h" namespace google::api::expr::runtime { namespace { using ::absl_te...
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/eval/public/structs/cel_proto_descriptor_pool_builder.cc
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/eval/public/structs/cel_proto_descriptor_pool_builder_test.cc
4552db5798fb0853b131b783d8875794334fae7f
1728e1b9-6e09-4311-b043-433a6e8d79b4
cpp
google/cel-cpp
cel_proto_wrap_util
eval/public/structs/cel_proto_wrap_util.cc
eval/public/structs/cel_proto_wrap_util_test.cc
#include "eval/public/structs/cel_proto_wrap_util.h" #include <math.h> #include <cstdint> #include <limits> #include <memory> #include <string> #include <type_traits> #include <utility> #include <vector> #include "google/protobuf/any.pb.h" #include "google/protobuf/duration.pb.h" #include "google/protobuf/struct.pb.h" ...
#include "eval/public/structs/cel_proto_wrap_util.h" #include <cassert> #include <limits> #include <memory> #include <string> #include <utility> #include <vector> #include "google/protobuf/any.pb.h" #include "google/protobuf/duration.pb.h" #include "google/protobuf/empty.pb.h" #include "google/protobuf/struct.pb.h" #in...
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/eval/public/structs/cel_proto_wrap_util.cc
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/eval/public/structs/cel_proto_wrap_util_test.cc
4552db5798fb0853b131b783d8875794334fae7f
3f3c60b9-ff73-42be-a9ee-70a0a1e549dc
cpp
google/cel-cpp
cel_proto_wrapper
eval/public/structs/cel_proto_wrapper.cc
eval/public/structs/cel_proto_wrapper_test.cc
#include "eval/public/structs/cel_proto_wrapper.h" #include "absl/types/optional.h" #include "eval/public/cel_value.h" #include "eval/public/message_wrapper.h" #include "eval/public/structs/cel_proto_wrap_util.h" #include "eval/public/structs/proto_message_type_adapter.h" #include "google/protobuf/arena.h" #include "go...
#include "eval/public/structs/cel_proto_wrapper.h" #include <cassert> #include <limits> #include <memory> #include <string> #include <utility> #include <vector> #include "google/protobuf/any.pb.h" #include "google/protobuf/duration.pb.h" #include "google/protobuf/empty.pb.h" #include "google/protobuf/struct.pb.h" #incl...
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/eval/public/structs/cel_proto_wrapper.cc
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/eval/public/structs/cel_proto_wrapper_test.cc
4552db5798fb0853b131b783d8875794334fae7f
772caff1-e862-49bd-948f-2822a6bfb7e6
cpp
google/cel-cpp
field_access_impl
eval/public/structs/field_access_impl.cc
eval/public/structs/field_access_impl_test.cc
#include "eval/public/structs/field_access_impl.h" #include <cstdint> #include <string> #include <type_traits> #include <utility> #include "google/protobuf/any.pb.h" #include "google/protobuf/struct.pb.h" #include "google/protobuf/wrappers.pb.h" #include "google/protobuf/arena.h" #include "google/protobuf/map_field.h" ...
#include "eval/public/structs/field_access_impl.h" #include <array> #include <limits> #include <string> #include "google/protobuf/arena.h" #include "google/protobuf/descriptor.h" #include "google/protobuf/message.h" #include "google/protobuf/text_format.h" #include "absl/status/status.h" #include "absl/strings/string_v...
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/eval/public/structs/field_access_impl.cc
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/eval/public/structs/field_access_impl_test.cc
4552db5798fb0853b131b783d8875794334fae7f
d5168485-2112-465c-ac4b-17cbb673ffaa
cpp
google/cel-cpp
internal_field_backed_map_impl
eval/public/containers/internal_field_backed_map_impl.cc
eval/public/containers/internal_field_backed_map_impl_test.cc
#include "eval/public/containers/internal_field_backed_map_impl.h" #include <limits> #include <memory> #include <string> #include <utility> #include "google/protobuf/descriptor.h" #include "google/protobuf/map_field.h" #include "google/protobuf/message.h" #include "absl/status/status.h" #include "absl/status/statusor.h...
#include "eval/public/containers/internal_field_backed_map_impl.h" #include <array> #include <limits> #include <memory> #include <string> #include <vector> #include "absl/status/status.h" #include "absl/strings/str_cat.h" #include "eval/public/structs/cel_proto_wrapper.h" #include "eval/testutil/test_message.pb.h" #inc...
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/eval/public/containers/internal_field_backed_map_impl.cc
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/eval/public/containers/internal_field_backed_map_impl_test.cc
4552db5798fb0853b131b783d8875794334fae7f
7cbce453-224d-4a29-a1d3-b3103ddb6369
cpp
google/cel-cpp
container_backed_map_impl
eval/public/containers/container_backed_map_impl.cc
eval/public/containers/container_backed_map_impl_test.cc
#include "eval/public/containers/container_backed_map_impl.h" #include <memory> #include <utility> #include "absl/container/node_hash_map.h" #include "absl/hash/hash.h" #include "absl/status/status.h" #include "absl/status/statusor.h" #include "absl/types/optional.h" #include "absl/types/span.h" #include "eval/public/c...
#include "eval/public/containers/container_backed_map_impl.h" #include <string> #include <utility> #include <vector> #include "absl/status/status.h" #include "eval/public/cel_value.h" #include "internal/testing.h" namespace google::api::expr::runtime { namespace { using ::absl_testing::StatusIs; using ::testing::Eq; us...
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/eval/public/containers/container_backed_map_impl.cc
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/eval/public/containers/container_backed_map_impl_test.cc
4552db5798fb0853b131b783d8875794334fae7f
7c09d3ef-e487-42e4-a509-9fceb37513e6
cpp
google/cel-cpp
field_access
eval/public/containers/field_access.cc
eval/public/containers/field_access_test.cc
#include "eval/public/containers/field_access.h" #include "google/protobuf/arena.h" #include "google/protobuf/map_field.h" #include "absl/status/status.h" #include "eval/public/structs/cel_proto_wrapper.h" #include "eval/public/structs/field_access_impl.h" #include "internal/status_macros.h" namespace google::api::expr...
#include "eval/public/containers/field_access.h" #include <array> #include <limits> #include "google/protobuf/arena.h" #include "google/protobuf/message.h" #include "google/protobuf/text_format.h" #include "absl/status/status.h" #include "absl/strings/string_view.h" #include "absl/time/time.h" #include "eval/public/cel...
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/eval/public/containers/field_access.cc
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/eval/public/containers/field_access_test.cc
4552db5798fb0853b131b783d8875794334fae7f
5d5ceec1-cfc9-48bb-8370-fd4852f50c2f
cpp
google/cel-cpp
internal_field_backed_list_impl
eval/public/containers/internal_field_backed_list_impl.cc
eval/public/containers/internal_field_backed_list_impl_test.cc
#include "eval/public/containers/internal_field_backed_list_impl.h" #include "eval/public/cel_value.h" #include "eval/public/structs/field_access_impl.h" namespace google::api::expr::runtime::internal { int FieldBackedListImpl::size() const { return reflection_->FieldSize(*message_, descriptor_); } CelValue FieldBack...
#include "eval/public/containers/internal_field_backed_list_impl.h" #include <memory> #include <string> #include "eval/public/structs/cel_proto_wrapper.h" #include "eval/testutil/test_message.pb.h" #include "internal/testing.h" #include "testutil/util.h" namespace google::api::expr::runtime::internal { namespace { usin...
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/eval/public/containers/internal_field_backed_list_impl.cc
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/eval/public/containers/internal_field_backed_list_impl_test.cc
4552db5798fb0853b131b783d8875794334fae7f
65052c89-6330-4bd5-a6a6-108f90936938
cpp
google/cel-cpp
function_step
eval/eval/function_step.cc
eval/eval/function_step_test.cc
#include "eval/eval/function_step.h" #include <algorithm> #include <cstddef> #include <cstdint> #include <memory> #include <string> #include <utility> #include <vector> #include "absl/container/inlined_vector.h" #include "absl/status/status.h" #include "absl/status/statusor.h" #include "absl/strings/str_cat.h" #include...
#include "eval/eval/function_step.h" #include <cmath> #include <cstdint> #include <memory> #include <string> #include <utility> #include <vector> #include "absl/strings/string_view.h" #include "base/ast_internal/expr.h" #include "base/builtins.h" #include "base/type_provider.h" #include "common/kind.h" #include "eval/e...
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/eval/eval/function_step.cc
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/eval/eval/function_step_test.cc
4552db5798fb0853b131b783d8875794334fae7f
4de906d9-9497-4934-a017-1a1942bc3514
cpp
google/cel-cpp
select_step
eval/eval/select_step.cc
eval/eval/select_step_test.cc
#include "eval/eval/select_step.h" #include <cstdint> #include <memory> #include <string> #include <utility> #include "absl/log/absl_log.h" #include "absl/status/status.h" #include "absl/status/statusor.h" #include "absl/strings/string_view.h" #include "absl/types/optional.h" #include "base/kind.h" #include "common/cas...
#include "eval/eval/select_step.h" #include <string> #include <utility> #include <vector> #include "google/api/expr/v1alpha1/syntax.pb.h" #include "google/protobuf/wrappers.pb.h" #include "absl/log/absl_check.h" #include "absl/status/status.h" #include "absl/status/statusor.h" #include "absl/strings/string_view.h" #inc...
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/eval/eval/select_step.cc
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/eval/eval/select_step_test.cc
4552db5798fb0853b131b783d8875794334fae7f
90e4c0d3-86b4-4bd3-b131-1140cb425e65
cpp
google/cel-cpp
optional_or_step
eval/eval/optional_or_step.cc
eval/eval/optional_or_step_test.cc
#include "eval/eval/optional_or_step.h" #include <cstdint> #include <memory> #include <utility> #include "absl/base/optimization.h" #include "absl/status/status.h" #include "absl/status/statusor.h" #include "absl/types/optional.h" #include "absl/types/span.h" #include "common/casting.h" #include "common/value.h" #inclu...
#include "eval/eval/optional_or_step.h" #include <memory> #include "absl/memory/memory.h" #include "absl/status/status.h" #include "common/casting.h" #include "common/memory.h" #include "common/type_reflector.h" #include "common/value.h" #include "common/value_kind.h" #include "common/value_testing.h" #include "eval/ev...
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/eval/eval/optional_or_step.cc
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/eval/eval/optional_or_step_test.cc
4552db5798fb0853b131b783d8875794334fae7f
08a67a1f-f0f3-4b9c-a899-9e6205fa1417
cpp
google/cel-cpp
container_access_step
eval/eval/container_access_step.cc
eval/eval/container_access_step_test.cc
#include "eval/eval/container_access_step.h" #include <cstdint> #include <memory> #include <utility> #include "absl/status/status.h" #include "absl/status/statusor.h" #include "absl/strings/str_cat.h" #include "absl/types/optional.h" #include "absl/types/span.h" #include "base/ast_internal/expr.h" #include "base/attrib...
#include "eval/eval/container_access_step.h" #include <memory> #include <string> #include <tuple> #include <utility> #include <vector> #include "google/api/expr/v1alpha1/syntax.pb.h" #include "google/protobuf/struct.pb.h" #include "absl/status/status.h" #include "base/builtins.h" #include "base/type_provider.h" #includ...
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/eval/eval/container_access_step.cc
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/eval/eval/container_access_step_test.cc
4552db5798fb0853b131b783d8875794334fae7f
549e11be-6e45-424a-9e28-1f27ebc88b6f
cpp
google/cel-cpp
attribute_utility
eval/eval/attribute_utility.cc
eval/eval/attribute_utility_test.cc
#include "eval/eval/attribute_utility.h" #include <cstdint> #include <string> #include <utility> #include "absl/status/statusor.h" #include "absl/types/optional.h" #include "absl/types/span.h" #include "base/attribute.h" #include "base/attribute_set.h" #include "base/function_descriptor.h" #include "base/function_resul...
#include "eval/eval/attribute_utility.h" #include <vector> #include "base/attribute_set.h" #include "base/type_provider.h" #include "common/type_factory.h" #include "common/value_manager.h" #include "common/values/legacy_value_manager.h" #include "eval/public/cel_attribute.h" #include "eval/public/cel_value.h" #include...
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/eval/eval/attribute_utility.cc
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/eval/eval/attribute_utility_test.cc
4552db5798fb0853b131b783d8875794334fae7f
5faa292a-7336-44ec-befc-743505f72bdc
cpp
google/cel-cpp
lazy_init_step
eval/eval/lazy_init_step.cc
eval/eval/lazy_init_step_test.cc
#include "eval/eval/lazy_init_step.h" #include <cstddef> #include <cstdint> #include <memory> #include <utility> #include "google/api/expr/v1alpha1/value.pb.h" #include "absl/base/nullability.h" #include "absl/status/status.h" #include "common/value.h" #include "eval/eval/attribute_trail.h" #include "eval/eval/direct_e...
#include "eval/eval/lazy_init_step.h" #include <cstddef> #include <vector> #include "base/type_provider.h" #include "common/value.h" #include "common/value_manager.h" #include "eval/eval/const_value_step.h" #include "eval/eval/evaluator_core.h" #include "extensions/protobuf/memory_manager.h" #include "internal/testing....
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/eval/eval/lazy_init_step.cc
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/eval/eval/lazy_init_step_test.cc
4552db5798fb0853b131b783d8875794334fae7f
4a87b44a-4717-441e-a13c-b109bc1d14e6
cpp
google/cel-cpp
create_struct_step
eval/eval/create_struct_step.cc
eval/eval/create_struct_step_test.cc
#include "eval/eval/create_struct_step.h" #include <cstdint> #include <memory> #include <string> #include <utility> #include <vector> #include "absl/container/flat_hash_set.h" #include "absl/status/status.h" #include "absl/status/statusor.h" #include "absl/strings/str_cat.h" #include "absl/strings/string_view.h" #inclu...
#include "eval/eval/create_struct_step.h" #include <cstdint> #include <memory> #include <string> #include <tuple> #include <utility> #include <vector> #include "google/api/expr/v1alpha1/syntax.pb.h" #include "absl/status/status.h" #include "absl/status/statusor.h" #include "absl/strings/string_view.h" #include "absl/ty...
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/eval/eval/create_struct_step.cc
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/eval/eval/create_struct_step_test.cc
4552db5798fb0853b131b783d8875794334fae7f
5a78cd31-7e4a-41ac-97e8-3fcb5cc4806a
cpp
google/cel-cpp
comprehension_step
eval/eval/comprehension_step.cc
eval/eval/comprehension_step_test.cc
#include "eval/eval/comprehension_step.h" #include <cstddef> #include <cstdint> #include <memory> #include <utility> #include "absl/log/absl_check.h" #include "absl/status/status.h" #include "absl/status/statusor.h" #include "absl/strings/str_cat.h" #include "absl/types/span.h" #include "base/attribute.h" #include "bas...
#include "eval/eval/comprehension_step.h" #include <memory> #include <string> #include <utility> #include <vector> #include "google/api/expr/v1alpha1/syntax.pb.h" #include "google/protobuf/struct.pb.h" #include "absl/status/status.h" #include "absl/status/statusor.h" #include "absl/strings/string_view.h" #include "base...
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/eval/eval/comprehension_step.cc
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/eval/eval/comprehension_step_test.cc
4552db5798fb0853b131b783d8875794334fae7f
fcf11a49-e7c8-4437-8649-1838443687e3
cpp
google/cel-cpp
const_value_step
eval/eval/const_value_step.cc
eval/eval/const_value_step_test.cc
#include "eval/eval/const_value_step.h" #include <cstdint> #include <memory> #include <utility> #include "absl/status/statusor.h" #include "base/ast_internal/expr.h" #include "common/value.h" #include "common/value_manager.h" #include "eval/eval/compiler_constant_step.h" #include "eval/eval/direct_expression_step.h" #i...
#include "eval/eval/const_value_step.h" #include <utility> #include "absl/status/status.h" #include "absl/status/statusor.h" #include "absl/time/time.h" #include "base/ast_internal/expr.h" #include "base/type_provider.h" #include "common/type_factory.h" #include "common/type_manager.h" #include "common/value_manager.h"...
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/eval/eval/const_value_step.cc
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/eval/eval/const_value_step_test.cc
4552db5798fb0853b131b783d8875794334fae7f
5ff5ffc2-ffe7-4983-91e4-849fceabbab5
cpp
google/cel-cpp
attribute_trail
eval/eval/attribute_trail.cc
eval/eval/attribute_trail_test.cc
#include "eval/eval/attribute_trail.h" #include <algorithm> #include <iterator> #include <string> #include <utility> #include <vector> #include "base/attribute.h" namespace google::api::expr::runtime { AttributeTrail AttributeTrail::Step(cel::AttributeQualifier qualifier) const { if (empty()) return AttributeTrail();...
#include "eval/eval/attribute_trail.h" #include <string> #include "google/api/expr/v1alpha1/syntax.pb.h" #include "eval/public/cel_attribute.h" #include "eval/public/cel_value.h" #include "internal/testing.h" namespace google::api::expr::runtime { TEST(AttributeTrailTest, AttributeTrailEmptyStep) { std::string step =...
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/eval/eval/attribute_trail.cc
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/eval/eval/attribute_trail_test.cc
4552db5798fb0853b131b783d8875794334fae7f
7d452a69-88af-4529-984c-856044aa2621
cpp
google/cel-cpp
logic_step
eval/eval/logic_step.cc
eval/eval/logic_step_test.cc
#include "eval/eval/logic_step.h" #include <cstddef> #include <cstdint> #include <memory> #include <utility> #include "absl/status/status.h" #include "absl/status/statusor.h" #include "absl/types/optional.h" #include "absl/types/span.h" #include "base/builtins.h" #include "common/casting.h" #include "common/value.h" #i...
#include "eval/eval/logic_step.h" #include <memory> #include <string> #include <tuple> #include <utility> #include <vector> #include "absl/status/status.h" #include "absl/strings/str_cat.h" #include "absl/strings/string_view.h" #include "base/ast_internal/expr.h" #include "base/attribute.h" #include "base/attribute_set...
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/eval/eval/logic_step.cc
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/eval/eval/logic_step_test.cc
4552db5798fb0853b131b783d8875794334fae7f
da2a6451-f55a-441f-80f9-ef5b7e5838ea
cpp
google/cel-cpp
compiler_constant_step
eval/eval/compiler_constant_step.cc
eval/eval/compiler_constant_step_test.cc
#include "eval/eval/compiler_constant_step.h" #include "absl/status/status.h" #include "common/value.h" #include "eval/eval/attribute_trail.h" #include "eval/eval/evaluator_core.h" namespace google::api::expr::runtime { using ::cel::Value; absl::Status DirectCompilerConstantStep::Evaluate( ExecutionFrameBase& frame...
#include "eval/eval/compiler_constant_step.h" #include <memory> #include "base/type_provider.h" #include "common/native_type.h" #include "common/type_factory.h" #include "common/type_manager.h" #include "common/value.h" #include "common/value_manager.h" #include "common/values/legacy_value_manager.h" #include "eval/eva...
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/eval/eval/compiler_constant_step.cc
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/eval/eval/compiler_constant_step_test.cc
4552db5798fb0853b131b783d8875794334fae7f
fde120b0-1aa9-42e2-bdb5-409300d0c5d4
cpp
google/cel-cpp
shadowable_value_step
eval/eval/shadowable_value_step.cc
eval/eval/shadowable_value_step_test.cc
#include "eval/eval/shadowable_value_step.h" #include <cstdint> #include <memory> #include <string> #include <utility> #include "absl/memory/memory.h" #include "absl/status/status.h" #include "absl/status/statusor.h" #include "common/value.h" #include "eval/eval/attribute_trail.h" #include "eval/eval/direct_expression_...
#include "eval/eval/shadowable_value_step.h" #include <string> #include <utility> #include "absl/status/statusor.h" #include "base/type_provider.h" #include "common/value.h" #include "eval/eval/cel_expression_flat_impl.h" #include "eval/eval/evaluator_core.h" #include "eval/internal/interop.h" #include "eval/public/act...
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/eval/eval/shadowable_value_step.cc
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/eval/eval/shadowable_value_step_test.cc
4552db5798fb0853b131b783d8875794334fae7f
fc3560e5-2b8f-44c2-a833-d7c51b00604e
cpp
google/cel-cpp
ternary_step
eval/eval/ternary_step.cc
eval/eval/ternary_step_test.cc
#include "eval/eval/ternary_step.h" #include <cstddef> #include <cstdint> #include <memory> #include <utility> #include "absl/status/status.h" #include "absl/status/statusor.h" #include "base/builtins.h" #include "common/casting.h" #include "common/value.h" #include "eval/eval/attribute_trail.h" #include "eval/eval/dir...
#include "eval/eval/ternary_step.h" #include <memory> #include <string> #include <utility> #include <vector> #include "absl/base/nullability.h" #include "absl/status/status.h" #include "base/ast_internal/expr.h" #include "base/attribute.h" #include "base/attribute_set.h" #include "base/type_provider.h" #include "common...
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/eval/eval/ternary_step.cc
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/eval/eval/ternary_step_test.cc
4552db5798fb0853b131b783d8875794334fae7f
5d32953b-d4e0-443f-b032-8a137a203bae
cpp
google/cel-cpp
evaluator_stack
eval/eval/evaluator_stack.cc
eval/eval/evaluator_stack_test.cc
#include "eval/eval/evaluator_stack.h" namespace google::api::expr::runtime { void EvaluatorStack::Clear() { stack_.clear(); attribute_stack_.clear(); current_size_ = 0; } }
#include "eval/eval/evaluator_stack.h" #include "base/attribute.h" #include "base/type_provider.h" #include "common/type_factory.h" #include "common/type_manager.h" #include "common/value.h" #include "common/value_manager.h" #include "common/values/legacy_value_manager.h" #include "extensions/protobuf/memory_manager.h"...
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/eval/eval/evaluator_stack.cc
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/eval/eval/evaluator_stack_test.cc
4552db5798fb0853b131b783d8875794334fae7f
8c0d2933-3526-4cfe-b392-f834ea6bc8ef
cpp
google/cel-cpp
regex_match_step
eval/eval/regex_match_step.cc
eval/eval/regex_match_step_test.cc
#include "eval/eval/regex_match_step.h" #include <cstdint> #include <cstdio> #include <memory> #include <string> #include <utility> #include "absl/status/status.h" #include "absl/strings/cord.h" #include "absl/strings/string_view.h" #include "common/casting.h" #include "common/value.h" #include "eval/eval/attribute_tra...
#include "eval/eval/regex_match_step.h" #include "google/api/expr/v1alpha1/checked.pb.h" #include "google/api/expr/v1alpha1/syntax.pb.h" #include "google/protobuf/arena.h" #include "absl/status/status.h" #include "absl/status/statusor.h" #include "eval/public/activation.h" #include "eval/public/builtin_func_registrar.h...
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/eval/eval/regex_match_step.cc
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/eval/eval/regex_match_step_test.cc
4552db5798fb0853b131b783d8875794334fae7f
3c493440-0107-46b2-90da-81f8f83f4b45
cpp
google/cel-cpp
create_map_step
eval/eval/create_map_step.cc
eval/eval/create_map_step_test.cc
#include "eval/eval/create_map_step.h" #include <cstddef> #include <cstdint> #include <memory> #include <utility> #include <vector> #include "absl/container/flat_hash_set.h" #include "absl/status/status.h" #include "absl/status/statusor.h" #include "absl/strings/string_view.h" #include "absl/types/optional.h" #include ...
#include "eval/eval/create_map_step.h" #include <memory> #include <string> #include <tuple> #include <utility> #include <vector> #include "google/api/expr/v1alpha1/syntax.pb.h" #include "absl/status/statusor.h" #include "absl/strings/str_cat.h" #include "base/ast_internal/expr.h" #include "base/type_provider.h" #includ...
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/eval/eval/create_map_step.cc
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/eval/eval/create_map_step_test.cc
4552db5798fb0853b131b783d8875794334fae7f
1560fb68-ac27-4a30-ae6c-29abc590bc38
cpp
google/cel-cpp
create_list_step
eval/eval/create_list_step.cc
eval/eval/create_list_step_test.cc
#include "eval/eval/create_list_step.h" #include <cstddef> #include <cstdint> #include <memory> #include <utility> #include <vector> #include "absl/container/flat_hash_set.h" #include "absl/status/status.h" #include "absl/status/statusor.h" #include "absl/types/optional.h" #include "base/ast_internal/expr.h" #include "...
#include "eval/eval/create_list_step.h" #include <memory> #include <string> #include <utility> #include <vector> #include "absl/status/status.h" #include "absl/status/statusor.h" #include "absl/strings/str_cat.h" #include "base/ast_internal/expr.h" #include "base/attribute.h" #include "base/attribute_set.h" #include "b...
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/eval/eval/create_list_step.cc
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/eval/eval/create_list_step_test.cc
4552db5798fb0853b131b783d8875794334fae7f
df1fb9f3-b27e-4aba-9bd1-117f8935c674
cpp
google/cel-cpp
evaluator_core
eval/eval/evaluator_core.cc
eval/eval/evaluator_core_test.cc
#include "eval/eval/evaluator_core.h" #include <cstddef> #include <limits> #include <memory> #include <utility> #include "absl/base/optimization.h" #include "absl/log/absl_check.h" #include "absl/log/absl_log.h" #include "absl/status/status.h" #include "absl/status/statusor.h" #include "absl/strings/str_cat.h" #include...
#include "eval/eval/evaluator_core.h" #include <cstdint> #include <memory> #include <utility> #include "google/api/expr/v1alpha1/syntax.pb.h" #include "base/type_provider.h" #include "eval/compiler/cel_expression_builder_flat_impl.h" #include "eval/eval/cel_expression_flat_impl.h" #include "eval/internal/interop.h" #in...
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/eval/eval/evaluator_core.cc
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/eval/eval/evaluator_core_test.cc
4552db5798fb0853b131b783d8875794334fae7f
64487d51-1c0d-4732-87e3-c169ab23ba5d
cpp
google/cel-cpp
ident_step
eval/eval/ident_step.cc
eval/eval/ident_step_test.cc
#include "eval/eval/ident_step.h" #include <cstddef> #include <cstdint> #include <memory> #include <string> #include <utility> #include "absl/base/nullability.h" #include "absl/status/status.h" #include "absl/status/statusor.h" #include "absl/strings/str_cat.h" #include "absl/strings/string_view.h" #include "base/ast_i...
#include "eval/eval/ident_step.h" #include <memory> #include <string> #include <utility> #include <vector> #include "absl/status/status.h" #include "base/type_provider.h" #include "common/casting.h" #include "common/memory.h" #include "common/value.h" #include "eval/eval/attribute_trail.h" #include "eval/eval/cel_expre...
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/eval/eval/ident_step.cc
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/eval/eval/ident_step_test.cc
4552db5798fb0853b131b783d8875794334fae7f
4df1949d-aa72-4d9a-8547-771218cf3f33
cpp
google/cel-cpp
resolver
eval/compiler/resolver.cc
eval/compiler/resolver_test.cc
#include "eval/compiler/resolver.h" #include <cstdint> #include <memory> #include <string> #include <utility> #include <vector> #include "absl/base/nullability.h" #include "absl/container/flat_hash_map.h" #include "absl/status/statusor.h" #include "absl/strings/match.h" #include "absl/strings/str_cat.h" #include "absl/...
#include "eval/compiler/resolver.h" #include <memory> #include <string> #include <vector> #include "absl/status/status.h" #include "absl/types/optional.h" #include "base/type_provider.h" #include "common/memory.h" #include "common/type_factory.h" #include "common/type_manager.h" #include "common/value.h" #include "comm...
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/eval/compiler/resolver.cc
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/eval/compiler/resolver_test.cc
4552db5798fb0853b131b783d8875794334fae7f
e70903f9-fbb2-42e6-8fd2-9a94528cd959
cpp
google/cel-cpp
qualified_reference_resolver
eval/compiler/qualified_reference_resolver.cc
eval/compiler/qualified_reference_resolver_test.cc
#include "eval/compiler/qualified_reference_resolver.h" #include <cstdint> #include <memory> #include <string> #include <utility> #include <vector> #include "absl/container/flat_hash_map.h" #include "absl/container/flat_hash_set.h" #include "absl/status/status.h" #include "absl/status/statusor.h" #include "absl/strings...
#include "eval/compiler/qualified_reference_resolver.h" #include <memory> #include <string> #include <vector> #include "google/api/expr/v1alpha1/syntax.pb.h" #include "absl/container/flat_hash_map.h" #include "absl/memory/memory.h" #include "absl/status/status.h" #include "absl/strings/str_cat.h" #include "base/ast.h" ...
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/eval/compiler/qualified_reference_resolver.cc
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/eval/compiler/qualified_reference_resolver_test.cc
4552db5798fb0853b131b783d8875794334fae7f
b066412e-e4c6-4b4d-93a2-74a41007ff22
cpp
google/cel-cpp
regex_precompilation_optimization
eval/compiler/regex_precompilation_optimization.cc
eval/compiler/regex_precompilation_optimization_test.cc
#include "eval/compiler/regex_precompilation_optimization.h" #include <cstddef> #include <cstdint> #include <memory> #include <string> #include <utility> #include <vector> #include "absl/base/nullability.h" #include "absl/container/flat_hash_map.h" #include "absl/status/status.h" #include "absl/strings/string_view.h" #...
#include "eval/compiler/regex_precompilation_optimization.h" #include <cstdint> #include <memory> #include <string> #include <vector> #include "google/api/expr/v1alpha1/checked.pb.h" #include "google/api/expr/v1alpha1/syntax.pb.h" #include "absl/status/status.h" #include "base/ast_internal/ast_impl.h" #include "common/...
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/eval/compiler/regex_precompilation_optimization.cc
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/eval/compiler/regex_precompilation_optimization_test.cc
4552db5798fb0853b131b783d8875794334fae7f
fcbc8bdc-6acd-472b-9af9-1b6f734351ec
cpp
google/cel-cpp
instrumentation
eval/compiler/instrumentation.cc
eval/compiler/instrumentation_test.cc
#include "eval/compiler/instrumentation.h" #include <cstdint> #include <memory> #include <utility> #include "absl/status/status.h" #include "absl/status/statusor.h" #include "base/ast_internal/ast_impl.h" #include "base/ast_internal/expr.h" #include "eval/compiler/flat_expr_builder_extensions.h" #include "eval/eval/eva...
#include "eval/compiler/instrumentation.h" #include <cstdint> #include <utility> #include <vector> #include "google/api/expr/v1alpha1/syntax.pb.h" #include "absl/container/flat_hash_map.h" #include "absl/status/status.h" #include "base/ast_internal/ast_impl.h" #include "common/type.h" #include "common/value.h" #include...
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/eval/compiler/instrumentation.cc
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/eval/compiler/instrumentation_test.cc
4552db5798fb0853b131b783d8875794334fae7f
3a728add-5ac0-4d23-a38f-13f2c4ccb9dd
cpp
google/cel-cpp
cel_expression_builder_flat_impl
eval/compiler/cel_expression_builder_flat_impl.cc
eval/compiler/cel_expression_builder_flat_impl_test.cc
#include "eval/compiler/cel_expression_builder_flat_impl.h" #include <memory> #include <utility> #include <vector> #include "google/api/expr/v1alpha1/checked.pb.h" #include "google/api/expr/v1alpha1/syntax.pb.h" #include "absl/base/macros.h" #include "absl/log/check.h" #include "absl/status/status.h" #include "absl/sta...
#include "eval/compiler/cel_expression_builder_flat_impl.h" #include <cstdint> #include <iterator> #include <memory> #include <string> #include <vector> #include "google/api/expr/v1alpha1/checked.pb.h" #include "google/api/expr/v1alpha1/syntax.pb.h" #include "absl/algorithm/container.h" #include "absl/status/status.h" ...
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/eval/compiler/cel_expression_builder_flat_impl.cc
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/eval/compiler/cel_expression_builder_flat_impl_test.cc
4552db5798fb0853b131b783d8875794334fae7f
9c3fc5bd-4746-4545-bf0f-040ceafb6a90
cpp
google/cel-cpp
flat_expr_builder_extensions
eval/compiler/flat_expr_builder_extensions.cc
eval/compiler/flat_expr_builder_extensions_test.cc
#include "eval/compiler/flat_expr_builder_extensions.h" #include <algorithm> #include <cstddef> #include <iterator> #include <memory> #include <utility> #include <vector> #include "absl/algorithm/container.h" #include "absl/base/nullability.h" #include "absl/log/absl_check.h" #include "absl/memory/memory.h" #include "a...
#include "eval/compiler/flat_expr_builder_extensions.h" #include <utility> #include "absl/status/status.h" #include "absl/status/statusor.h" #include "base/ast_internal/expr.h" #include "common/memory.h" #include "common/native_type.h" #include "common/value_manager.h" #include "common/values/legacy_value_manager.h" #i...
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/eval/compiler/flat_expr_builder_extensions.cc
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/eval/compiler/flat_expr_builder_extensions_test.cc
4552db5798fb0853b131b783d8875794334fae7f
4538cf80-68bd-46c3-8ce6-1a1a490cd832
cpp
google/cel-cpp
flat_expr_builder
eval/compiler/flat_expr_builder.cc
eval/compiler/flat_expr_builder_test.cc
#include "eval/compiler/flat_expr_builder.h" #include <algorithm> #include <cstddef> #include <cstdint> #include <deque> #include <iterator> #include <memory> #include <stack> #include <string> #include <utility> #include <vector> #include "absl/algorithm/container.h" #include "absl/base/attributes.h" #include "absl/ba...
#include "eval/compiler/flat_expr_builder.h" #include <functional> #include <memory> #include <string> #include <utility> #include <vector> #include "google/api/expr/v1alpha1/checked.pb.h" #include "google/api/expr/v1alpha1/syntax.pb.h" #include "google/protobuf/field_mask.pb.h" #include "google/protobuf/descriptor.pb....
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/eval/compiler/flat_expr_builder.cc
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/eval/compiler/flat_expr_builder_test.cc
4552db5798fb0853b131b783d8875794334fae7f
b26549bb-b46f-41f7-a477-29175952794c
cpp
google/cel-cpp
ast_impl
base/ast_internal/ast_impl.cc
base/ast_internal/ast_impl_test.cc
#include "base/ast_internal/ast_impl.h" #include <cstdint> #include "absl/container/flat_hash_map.h" namespace cel::ast_internal { namespace { const Type& DynSingleton() { static auto* singleton = new Type(TypeKind(DynamicType())); return *singleton; } } const Type& AstImpl::GetType(int64_t expr_id) const { aut...
#include "base/ast_internal/ast_impl.h" #include <utility> #include "absl/container/flat_hash_map.h" #include "base/ast.h" #include "base/ast_internal/expr.h" #include "internal/testing.h" namespace cel::ast_internal { namespace { using ::testing::Pointee; using ::testing::Truly; TEST(AstImpl, RawExprCtor) { Expr exp...
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/base/ast_internal/ast_impl.cc
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/base/ast_internal/ast_impl_test.cc
4552db5798fb0853b131b783d8875794334fae7f
718a66b1-78f4-4b2a-a875-0a7f0a41e8b3
cpp
google/cel-cpp
unknown_set
base/internal/unknown_set.cc
eval/public/unknown_set_test.cc
#include "base/internal/unknown_set.h" #include "absl/base/no_destructor.h" namespace cel::base_internal { const AttributeSet& EmptyAttributeSet() { static const absl::NoDestructor<AttributeSet> empty_attribute_set; return *empty_attribute_set; } const FunctionResultSet& EmptyFunctionResultSet() { static const ab...
#include "eval/public/unknown_set.h" #include <vector> #include "google/api/expr/v1alpha1/syntax.pb.h" #include "google/protobuf/arena.h" #include "eval/public/cel_attribute.h" #include "eval/public/cel_function.h" #include "eval/public/unknown_attribute_set.h" #include "eval/public/unknown_function_result_set.h" #incl...
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/base/internal/unknown_set.cc
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/eval/public/unknown_set_test.cc
4552db5798fb0853b131b783d8875794334fae7f
deff4997-313c-46ca-95fa-0d88650e66ce
cpp
google/cel-cpp
validation_result
checker/validation_result.h
checker/validation_result_test.cc
#ifndef THIRD_PARTY_CEL_CPP_CHECKER_VALIDATION_RESULT_H_ #define THIRD_PARTY_CEL_CPP_CHECKER_VALIDATION_RESULT_H_ #include <memory> #include <utility> #include <vector> #include "absl/base/nullability.h" #include "absl/status/status.h" #include "absl/status/statusor.h" #include "absl/types/span.h" #include "checker/typ...
#include "checker/validation_result.h" #include <memory> #include "absl/status/status.h" #include "absl/status/status_matchers.h" #include "base/ast_internal/ast_impl.h" #include "checker/type_check_issue.h" #include "internal/testing.h" namespace cel { namespace { using ::absl_testing::IsOkAndHolds; using ::absl_testi...
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/checker/validation_result.h
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/checker/validation_result_test.cc
4552db5798fb0853b131b783d8875794334fae7f
041b580d-8df5-43b4-8016-2a8c94f4e2bf
cpp
google/cel-cpp
function_adapter
base/function_adapter.h
runtime/internal/function_adapter_test.cc
#ifndef THIRD_PARTY_CEL_CPP_BASE_FUNCTION_ADAPTER_H_ #define THIRD_PARTY_CEL_CPP_BASE_FUNCTION_ADAPTER_H_ #include "runtime/function_adapter.h" #endif
#include "runtime/internal/function_adapter.h" #include <cstdint> #include "absl/status/status.h" #include "absl/status/statusor.h" #include "absl/time/time.h" #include "common/casting.h" #include "common/kind.h" #include "common/memory.h" #include "common/value.h" #include "common/values/legacy_type_reflector.h" #incl...
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/base/function_adapter.h
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/runtime/internal/function_adapter_test.cc
4552db5798fb0853b131b783d8875794334fae7f
09a57f31-d339-4157-a72f-009e87e78a55
cpp
google/cel-cpp
issue_collector
runtime/internal/issue_collector.h
runtime/internal/issue_collector_test.cc
#ifndef THIRD_PARTY_CEL_CPP_RUNTIME_INTERNAL_ISSUE_COLLECTOR_H_ #define THIRD_PARTY_CEL_CPP_RUNTIME_INTERNAL_ISSUE_COLLECTOR_H_ #include <utility> #include <vector> #include "absl/status/status.h" #include "absl/types/span.h" #include "runtime/runtime_issue.h" namespace cel::runtime_internal { class IssueCollector { p...
#include "runtime/internal/issue_collector.h" #include "absl/status/status.h" #include "internal/testing.h" #include "runtime/runtime_issue.h" namespace cel::runtime_internal { namespace { using ::absl_testing::StatusIs; using ::testing::ElementsAre; using ::testing::Truly; template <typename Matcher, typename T> bool ...
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/runtime/internal/issue_collector.h
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/runtime/internal/issue_collector_test.cc
4552db5798fb0853b131b783d8875794334fae7f
781f69a4-78b6-4034-b79d-a1bec23c3e92
cpp
google/cel-cpp
align
internal/align.h
internal/align_test.cc
#ifndef THIRD_PARTY_CEL_CPP_INTERNAL_ALIGN_H_ #define THIRD_PARTY_CEL_CPP_INTERNAL_ALIGN_H_ #include <cstddef> #include <cstdint> #include <type_traits> #include "absl/base/casts.h" #include "absl/base/config.h" #include "absl/base/macros.h" #include "absl/numeric/bits.h" namespace cel::internal { template <typename T>...
#include "internal/align.h" #include <cstddef> #include <cstdint> #include "internal/testing.h" namespace cel::internal { namespace { TEST(AlignmentMask, Masks) { EXPECT_EQ(AlignmentMask(size_t{1}), size_t{0}); EXPECT_EQ(AlignmentMask(size_t{2}), size_t{1}); EXPECT_EQ(AlignmentMask(size_t{4}), size_t{3}); } TEST(...
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/internal/align.h
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/internal/align_test.cc
4552db5798fb0853b131b783d8875794334fae7f
47921c4c-501b-4155-a145-ae15dcab82ac
cpp
google/cel-cpp
message_type_name
internal/message_type_name.h
internal/message_type_name_test.cc
#ifndef THIRD_PARTY_CEL_CPP_INTERNAL_MESSAGE_TYPE_NAME_H_ #define THIRD_PARTY_CEL_CPP_INTERNAL_MESSAGE_TYPE_NAME_H_ #include <string> #include <type_traits> #include "absl/base/no_destructor.h" #include "absl/strings/string_view.h" #include "google/protobuf/message.h" #include "google/protobuf/message_lite.h" namespace...
#include "internal/message_type_name.h" #include "google/protobuf/any.pb.h" #include "internal/testing.h" namespace cel::internal { namespace { TEST(MessageTypeNameFor, Generated) { EXPECT_EQ(MessageTypeNameFor<google::protobuf::Any>(), "google.protobuf.Any"); } } }
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/internal/message_type_name.h
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/internal/message_type_name_test.cc
4552db5798fb0853b131b783d8875794334fae7f
61403832-c7b7-416d-abcd-da425f14f1b7
cpp
google/cel-cpp
to_address
internal/to_address.h
internal/to_address_test.cc
#ifndef THIRD_PARTY_CEL_CPP_INTERNAL_TO_ADDRESS_H_ #define THIRD_PARTY_CEL_CPP_INTERNAL_TO_ADDRESS_H_ #include <memory> #include <type_traits> #include <utility> #include "absl/base/attributes.h" #include "absl/meta/type_traits.h" namespace cel::internal { #if defined(__cpp_lib_to_address) && __cpp_lib_to_address >= 20...
#include "internal/to_address.h" #include <memory> #include "internal/testing.h" namespace cel { namespace { TEST(ToAddress, RawPointer) { char c; EXPECT_EQ(internal::to_address(&c), &c); } struct ImplicitFancyPointer { using element_type = char; char* operator->() const { return ptr; } char* ptr; }; struct E...
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/internal/to_address.h
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/internal/to_address_test.cc
4552db5798fb0853b131b783d8875794334fae7f
721cbde5-7ea7-4461-a9c7-5f9a290fb85e
cpp
google/cel-cpp
copy_on_write
internal/copy_on_write.h
internal/copy_on_write_test.cc
#ifndef THIRD_PARTY_CEL_CPP_INTERNAL_COPY_ON_WRITE_H_ #define THIRD_PARTY_CEL_CPP_INTERNAL_COPY_ON_WRITE_H_ #include <algorithm> #include <atomic> #include <memory> #include <type_traits> #include <utility> #include "absl/base/attributes.h" #include "absl/base/optimization.h" #include "absl/log/absl_check.h" namespace ...
#include "internal/copy_on_write.h" #include <cstdint> #include "internal/testing.h" namespace cel::internal { namespace { TEST(CopyOnWrite, Basic) { CopyOnWrite<int32_t> original; EXPECT_EQ(&original.mutable_get(), &original.get()); { auto duplicate = original; EXPECT_EQ(&duplicate.get(), &original.get()...
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/internal/copy_on_write.h
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/internal/copy_on_write_test.cc
4552db5798fb0853b131b783d8875794334fae7f
b804e38d-6c4c-4a92-943d-a3e71a5cf3d9
cpp
google/cel-cpp
number
internal/number.h
internal/number_test.cc
#ifndef THIRD_PARTY_CEL_CPP_INTERNAL_NUMBER_H_ #define THIRD_PARTY_CEL_CPP_INTERNAL_NUMBER_H_ #include <cmath> #include <cstdint> #include <limits> #include "absl/types/variant.h" namespace cel::internal { constexpr int64_t kInt64Max = std::numeric_limits<int64_t>::max(); constexpr int64_t kInt64Min = std::numeric_limi...
#include "internal/number.h" #include <cstdint> #include <limits> #include "internal/testing.h" namespace cel::internal { namespace { constexpr double kNan = std::numeric_limits<double>::quiet_NaN(); constexpr double kInfinity = std::numeric_limits<double>::infinity(); TEST(Number, Basic) { EXPECT_GT(Number(1.1), Num...
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/internal/number.h
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/internal/number_test.cc
4552db5798fb0853b131b783d8875794334fae7f
4a05b0eb-d44a-4a63-8905-bc98c7271120
cpp
google/cel-cpp
benchmark
internal/benchmark.h
eval/tests/benchmark_test.cc
#ifndef THIRD_PARTY_CEL_CPP_INTERNAL_BENCHMARK_H_ #define THIRD_PARTY_CEL_CPP_INTERNAL_BENCHMARK_H_ #include "benchmark/benchmark.h" #endif
#include "internal/benchmark.h" #include <string> #include <utility> #include <vector> #include "google/api/expr/v1alpha1/syntax.pb.h" #include "google/protobuf/struct.pb.h" #include "google/rpc/context/attribute_context.pb.h" #include "google/protobuf/text_format.h" #include "absl/base/attributes.h" #include "absl/con...
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/internal/benchmark.h
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/eval/tests/benchmark_test.cc
4552db5798fb0853b131b783d8875794334fae7f
0038681c-5490-4984-af4b-34301d2f6652
cpp
google/cel-cpp
arena_string
common/internal/arena_string.h
common/arena_string_test.cc
#ifndef THIRD_PARTY_CEL_CPP_COMMON_INTERNAL_ARENA_STRING_H_ #define THIRD_PARTY_CEL_CPP_COMMON_INTERNAL_ARENA_STRING_H_ #include "absl/strings/string_view.h" namespace cel::common_internal { class ArenaString final { public: ArenaString() = default; ArenaString(const ArenaString&) = default; ArenaString& operato...
#include "common/arena_string.h" #include "absl/hash/hash.h" #include "absl/hash/hash_testing.h" #include "absl/strings/string_view.h" #include "internal/testing.h" namespace cel { namespace { using ::testing::Eq; using ::testing::Ge; using ::testing::Gt; using ::testing::IsEmpty; using ::testing::Le; using ::testing::...
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/common/internal/arena_string.h
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/common/arena_string_test.cc
4552db5798fb0853b131b783d8875794334fae7f
ea068d7a-4c02-4749-9466-cbba7ff68004
cpp
google/cel-cpp
data
common/data.h
common/data_test.cc
#ifndef THIRD_PARTY_CEL_CPP_COMMON_DATA_H_ #define THIRD_PARTY_CEL_CPP_COMMON_DATA_H_ #include <cstdint> #include "absl/base/nullability.h" #include "absl/log/absl_check.h" #include "common/internal/metadata.h" #include "google/protobuf/arena.h" namespace cel { class Data; template <typename T> struct Ownable; template...
#include "common/data.h" #include "absl/base/nullability.h" #include "common/internal/reference_count.h" #include "internal/testing.h" #include "google/protobuf/arena.h" namespace cel { namespace { using ::testing::IsNull; class DataTest final : public Data { public: DataTest() noexcept : Data() {} explicit DataTe...
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/common/data.h
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/common/data_test.cc
4552db5798fb0853b131b783d8875794334fae7f
877c9521-8b29-4b65-b866-ac4f0be049d7
cpp
google/cel-cpp
allocator
common/allocator.h
common/allocator_test.cc
#ifndef THIRD_PARTY_CEL_CPP_COMMON_ALLOCATOR_H_ #define THIRD_PARTY_CEL_CPP_COMMON_ALLOCATOR_H_ #include <cstddef> #include <new> #include <type_traits> #include "absl/base/attributes.h" #include "absl/base/nullability.h" #include "absl/log/absl_check.h" #include "absl/numeric/bits.h" #include "common/arena.h" #include...
#include "common/allocator.h" #include "absl/strings/str_cat.h" #include "internal/testing.h" #include "google/protobuf/arena.h" namespace cel { namespace { using ::testing::NotNull; TEST(AllocatorKind, AbslStringify) { EXPECT_EQ(absl::StrCat(AllocatorKind::kArena), "ARENA"); EXPECT_EQ(absl::StrCat(AllocatorKind::k...
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/common/allocator.h
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/common/allocator_test.cc
4552db5798fb0853b131b783d8875794334fae7f
df17418c-8f4a-4b2b-acdf-84b34d9ea22d
cpp
google/cel-cpp
arena_string_pool
common/arena_string_pool.h
common/arena_string_pool_test.cc
#ifndef THIRD_PARTY_CEL_CPP_COMMON_ARENA_STRING_POOL_H_ #define THIRD_PARTY_CEL_CPP_COMMON_ARENA_STRING_POOL_H_ #include <memory> #include "absl/base/attributes.h" #include "absl/base/nullability.h" #include "absl/strings/string_view.h" #include "common/arena_string.h" #include "internal/string_pool.h" #include "google...
#include "common/arena_string_pool.h" #include "internal/testing.h" #include "google/protobuf/arena.h" namespace cel { namespace { TEST(ArenaStringPool, InternString) { google::protobuf::Arena arena; auto string_pool = NewArenaStringPool(&arena); auto expected = string_pool->InternString("Hello World!"); auto g...
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/common/arena_string_pool.h
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/common/arena_string_pool_test.cc
4552db5798fb0853b131b783d8875794334fae7f
ffee8254-4227-43c8-9032-3f027718dad1
cpp
google/cel-cpp
duration_type
common/types/duration_type.h
common/types/duration_type_test.cc
#ifndef THIRD_PARTY_CEL_CPP_COMMON_TYPES_DURATION_TYPE_H_ #define THIRD_PARTY_CEL_CPP_COMMON_TYPES_DURATION_TYPE_H_ #include <ostream> #include <string> #include <utility> #include "absl/strings/string_view.h" #include "common/type_kind.h" namespace cel { class Type; class TypeParameters; class DurationType final { pu...
#include <sstream> #include "absl/hash/hash.h" #include "common/type.h" #include "internal/testing.h" namespace cel { namespace { TEST(DurationType, Kind) { EXPECT_EQ(DurationType().kind(), DurationType::kKind); EXPECT_EQ(Type(DurationType()).kind(), DurationType::kKind); } TEST(DurationType, Name) { EXPECT_EQ(Du...
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/common/types/duration_type.h
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/common/types/duration_type_test.cc
4552db5798fb0853b131b783d8875794334fae7f
6e61aff3-efe6-4cc0-b730-40fab8599639
cpp
google/cel-cpp
uint_wrapper_type
common/types/uint_wrapper_type.h
common/types/uint_wrapper_type_test.cc
#ifndef THIRD_PARTY_CEL_CPP_COMMON_TYPES_UINT_WRAPPER_TYPE_H_ #define THIRD_PARTY_CEL_CPP_COMMON_TYPES_UINT_WRAPPER_TYPE_H_ #include <ostream> #include <string> #include <utility> #include "absl/strings/string_view.h" #include "common/type_kind.h" namespace cel { class Type; class TypeParameters; class UintWrapperType ...
#include <sstream> #include "absl/hash/hash.h" #include "common/type.h" #include "internal/testing.h" namespace cel { namespace { TEST(UintWrapperType, Kind) { EXPECT_EQ(UintWrapperType().kind(), UintWrapperType::kKind); EXPECT_EQ(Type(UintWrapperType()).kind(), UintWrapperType::kKind); } TEST(UintWrapperType, Name...
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/common/types/uint_wrapper_type.h
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/common/types/uint_wrapper_type_test.cc
4552db5798fb0853b131b783d8875794334fae7f
d67fd247-b4ef-42cf-bc1c-4fa0a8cfd35b
cpp
google/cel-cpp
type_param_type
common/types/type_param_type.h
common/types/type_param_type_test.cc
#ifndef THIRD_PARTY_CEL_CPP_COMMON_TYPES_TYPE_PARAM_TYPE_H_ #define THIRD_PARTY_CEL_CPP_COMMON_TYPES_TYPE_PARAM_TYPE_H_ #include <ostream> #include <string> #include <utility> #include "absl/base/attributes.h" #include "absl/strings/string_view.h" #include "common/type_kind.h" namespace cel { class Type; class TypePara...
#include "common/type.h" #include <sstream> #include "absl/hash/hash.h" #include "internal/testing.h" namespace cel { namespace { TEST(TypeParamType, Kind) { EXPECT_EQ(TypeParamType("T").kind(), TypeParamType::kKind); EXPECT_EQ(Type(TypeParamType("T")).kind(), TypeParamType::kKind); } TEST(TypeParamType, Name) { ...
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/common/types/type_param_type.h
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/common/types/type_param_type_test.cc
4552db5798fb0853b131b783d8875794334fae7f
c15ad434-bb08-4201-adc4-f39173e7f27c
cpp
google/cel-cpp
double_type
common/types/double_type.h
common/types/double_type_test.cc
#ifndef THIRD_PARTY_CEL_CPP_COMMON_TYPES_DOUBLE_TYPE_H_ #define THIRD_PARTY_CEL_CPP_COMMON_TYPES_DOUBLE_TYPE_H_ #include <ostream> #include <string> #include <utility> #include "absl/strings/string_view.h" #include "common/type_kind.h" namespace cel { class Type; class TypeParameters; class DoubleType final { public: ...
#include <sstream> #include "absl/hash/hash.h" #include "common/type.h" #include "internal/testing.h" namespace cel { namespace { TEST(DoubleType, Kind) { EXPECT_EQ(DoubleType().kind(), DoubleType::kKind); EXPECT_EQ(Type(DoubleType()).kind(), DoubleType::kKind); } TEST(DoubleType, Name) { EXPECT_EQ(DoubleType().n...
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/common/types/double_type.h
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/common/types/double_type_test.cc
4552db5798fb0853b131b783d8875794334fae7f
fb108b70-21f6-4315-9b31-59c2e7d8fca6
cpp
google/cel-cpp
error_type
common/types/error_type.h
common/types/error_type_test.cc
#ifndef THIRD_PARTY_CEL_CPP_COMMON_TYPES_ERROR_TYPE_H_ #define THIRD_PARTY_CEL_CPP_COMMON_TYPES_ERROR_TYPE_H_ #include <ostream> #include <string> #include <utility> #include "absl/strings/string_view.h" #include "common/type_kind.h" namespace cel { class Type; class TypeParameters; class ErrorType final { public: s...
#include <sstream> #include "absl/hash/hash.h" #include "common/type.h" #include "internal/testing.h" namespace cel { namespace { TEST(ErrorType, Kind) { EXPECT_EQ(ErrorType().kind(), ErrorType::kKind); EXPECT_EQ(Type(ErrorType()).kind(), ErrorType::kKind); } TEST(ErrorType, Name) { EXPECT_EQ(ErrorType().name(), ...
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/common/types/error_type.h
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/common/types/error_type_test.cc
4552db5798fb0853b131b783d8875794334fae7f
2c0d47c7-2213-4e44-90ad-237902404512
cpp
google/cel-cpp
timestamp_type
common/types/timestamp_type.h
common/types/timestamp_type_test.cc
#ifndef THIRD_PARTY_CEL_CPP_COMMON_TYPES_TIMESTAMP_TYPE_H_ #define THIRD_PARTY_CEL_CPP_COMMON_TYPES_TIMESTAMP_TYPE_H_ #include <ostream> #include <string> #include <utility> #include "absl/strings/string_view.h" #include "common/type_kind.h" namespace cel { class Type; class TypeParameters; class TimestampType final { ...
#include <sstream> #include "absl/hash/hash.h" #include "common/type.h" #include "internal/testing.h" namespace cel { namespace { TEST(TimestampType, Kind) { EXPECT_EQ(TimestampType().kind(), TimestampType::kKind); EXPECT_EQ(Type(TimestampType()).kind(), TimestampType::kKind); } TEST(TimestampType, Name) { EXPECT...
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/common/types/timestamp_type.h
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/common/types/timestamp_type_test.cc
4552db5798fb0853b131b783d8875794334fae7f
71a2284b-c8c4-47ae-8f89-1b9d6cb5b1aa
cpp
google/cel-cpp
uint_type
common/types/uint_type.h
common/types/uint_type_test.cc
#ifndef THIRD_PARTY_CEL_CPP_COMMON_TYPES_UINT_TYPE_H_ #define THIRD_PARTY_CEL_CPP_COMMON_TYPES_UINT_TYPE_H_ #include <ostream> #include <string> #include <utility> #include "absl/strings/string_view.h" #include "common/type_kind.h" namespace cel { class Type; class TypeParameters; class UintType final { public: stat...
#include <sstream> #include "absl/hash/hash.h" #include "common/type.h" #include "internal/testing.h" namespace cel { namespace { TEST(UintType, Kind) { EXPECT_EQ(UintType().kind(), UintType::kKind); EXPECT_EQ(Type(UintType()).kind(), UintType::kKind); } TEST(UintType, Name) { EXPECT_EQ(UintType().name(), UintTyp...
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/common/types/uint_type.h
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/common/types/uint_type_test.cc
4552db5798fb0853b131b783d8875794334fae7f
735cb486-ca91-4254-8dcb-7d65517afcb1
cpp
google/cel-cpp
int_wrapper_type
common/types/int_wrapper_type.h
common/types/int_wrapper_type_test.cc
#ifndef THIRD_PARTY_CEL_CPP_COMMON_TYPES_INT_WRAPPER_TYPE_H_ #define THIRD_PARTY_CEL_CPP_COMMON_TYPES_INT_WRAPPER_TYPE_H_ #include <ostream> #include <string> #include <utility> #include "absl/strings/string_view.h" #include "common/type_kind.h" namespace cel { class Type; class TypeParameters; class IntWrapperType fin...
#include <sstream> #include "absl/hash/hash.h" #include "common/type.h" #include "internal/testing.h" namespace cel { namespace { TEST(IntWrapperType, Kind) { EXPECT_EQ(IntWrapperType().kind(), IntWrapperType::kKind); EXPECT_EQ(Type(IntWrapperType()).kind(), IntWrapperType::kKind); } TEST(IntWrapperType, Name) { ...
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/common/types/int_wrapper_type.h
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/common/types/int_wrapper_type_test.cc
4552db5798fb0853b131b783d8875794334fae7f
76550dac-69ef-42d5-8854-311eb683d6cd
cpp
google/cel-cpp
null_type
common/types/null_type.h
common/types/null_type_test.cc
#ifndef THIRD_PARTY_CEL_CPP_COMMON_TYPES_NULL_TYPE_H_ #define THIRD_PARTY_CEL_CPP_COMMON_TYPES_NULL_TYPE_H_ #include <ostream> #include <string> #include <utility> #include "absl/strings/string_view.h" #include "common/type_kind.h" namespace cel { class Type; class TypeParameters; class NullType final { public: stat...
#include <sstream> #include "absl/hash/hash.h" #include "common/type.h" #include "internal/testing.h" namespace cel { namespace { TEST(NullType, Kind) { EXPECT_EQ(NullType().kind(), NullType::kKind); EXPECT_EQ(Type(NullType()).kind(), NullType::kKind); } TEST(NullType, Name) { EXPECT_EQ(NullType().name(), NullTyp...
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/common/types/null_type.h
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/common/types/null_type_test.cc
4552db5798fb0853b131b783d8875794334fae7f
3ebbc352-a229-49cf-9041-6f9176427a0c
cpp
google/cel-cpp
bool_type
common/types/bool_type.h
common/types/bool_type_test.cc
#ifndef THIRD_PARTY_CEL_CPP_COMMON_TYPES_BOOL_TYPE_H_ #define THIRD_PARTY_CEL_CPP_COMMON_TYPES_BOOL_TYPE_H_ #include <ostream> #include <string> #include <utility> #include "absl/strings/string_view.h" #include "common/type_kind.h" namespace cel { class Type; class TypeParameters; class BoolType final { public: stat...
#include <sstream> #include "absl/hash/hash.h" #include "common/type.h" #include "internal/testing.h" namespace cel { namespace { TEST(BoolType, Kind) { EXPECT_EQ(BoolType().kind(), BoolType::kKind); EXPECT_EQ(Type(BoolType()).kind(), BoolType::kKind); } TEST(BoolType, Name) { EXPECT_EQ(BoolType().name(), BoolTyp...
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/common/types/bool_type.h
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/common/types/bool_type_test.cc
4552db5798fb0853b131b783d8875794334fae7f
df77bd3e-397c-4a38-83b1-b0e4b4a814d7
cpp
google/cel-cpp
bytes_wrapper_type
common/types/bytes_wrapper_type.h
common/types/bytes_wrapper_type_test.cc
#ifndef THIRD_PARTY_CEL_CPP_COMMON_TYPES_BYTES_WRAPPER_TYPE_H_ #define THIRD_PARTY_CEL_CPP_COMMON_TYPES_BYTES_WRAPPER_TYPE_H_ #include <ostream> #include <string> #include <utility> #include "absl/strings/string_view.h" #include "common/type_kind.h" namespace cel { class Type; class TypeParameters; class BytesWrapperTy...
#include <sstream> #include "absl/hash/hash.h" #include "common/type.h" #include "internal/testing.h" namespace cel { namespace { TEST(BytesWrapperType, Kind) { EXPECT_EQ(BytesWrapperType().kind(), BytesWrapperType::kKind); EXPECT_EQ(Type(BytesWrapperType()).kind(), BytesWrapperType::kKind); } TEST(BytesWrapperType...
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/common/types/bytes_wrapper_type.h
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/common/types/bytes_wrapper_type_test.cc
4552db5798fb0853b131b783d8875794334fae7f
e878a070-b00e-42a5-8095-09a09366c7e6
cpp
google/cel-cpp
string_type
common/types/string_type.h
common/types/string_type_test.cc
#ifndef THIRD_PARTY_CEL_CPP_COMMON_TYPES_STRING_TYPE_H_ #define THIRD_PARTY_CEL_CPP_COMMON_TYPES_STRING_TYPE_H_ #include <ostream> #include <string> #include <utility> #include "absl/strings/string_view.h" #include "common/type_kind.h" namespace cel { class Type; class TypeParameters; class StringType final { public: ...
#include <sstream> #include "absl/hash/hash.h" #include "common/type.h" #include "internal/testing.h" namespace cel { namespace { TEST(StringType, Kind) { EXPECT_EQ(StringType().kind(), StringType::kKind); EXPECT_EQ(Type(StringType()).kind(), StringType::kKind); } TEST(StringType, Name) { EXPECT_EQ(StringType().n...
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/common/types/string_type.h
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/common/types/string_type_test.cc
4552db5798fb0853b131b783d8875794334fae7f
13107c29-57b7-48ab-a8cf-a9ea30beefd5
cpp
google/cel-cpp
unknown_type
common/types/unknown_type.h
common/types/unknown_type_test.cc
#ifndef THIRD_PARTY_CEL_CPP_COMMON_TYPES_UNKNOWN_TYPE_H_ #define THIRD_PARTY_CEL_CPP_COMMON_TYPES_UNKNOWN_TYPE_H_ #include <ostream> #include <string> #include <utility> #include "absl/strings/string_view.h" #include "common/type_kind.h" namespace cel { class Type; class TypeParameters; class UnknownType final { publi...
#include <sstream> #include "absl/hash/hash.h" #include "common/type.h" #include "internal/testing.h" namespace cel { namespace { TEST(UnknownType, Kind) { EXPECT_EQ(UnknownType().kind(), UnknownType::kKind); EXPECT_EQ(Type(UnknownType()).kind(), UnknownType::kKind); } TEST(UnknownType, Name) { EXPECT_EQ(UnknownT...
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/common/types/unknown_type.h
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/common/types/unknown_type_test.cc
4552db5798fb0853b131b783d8875794334fae7f
c0a082eb-4df1-4931-b681-2dda0d5de58d
cpp
google/cel-cpp
bool_wrapper_type
common/types/bool_wrapper_type.h
common/types/bool_wrapper_type_test.cc
#ifndef THIRD_PARTY_CEL_CPP_COMMON_TYPES_BOOL_WRAPPER_TYPE_H_ #define THIRD_PARTY_CEL_CPP_COMMON_TYPES_BOOL_WRAPPER_TYPE_H_ #include <ostream> #include <string> #include <utility> #include "absl/strings/string_view.h" #include "common/type_kind.h" namespace cel { class Type; class TypeParameters; class BoolWrapperType ...
#include <sstream> #include "absl/hash/hash.h" #include "common/type.h" #include "internal/testing.h" namespace cel { namespace { TEST(BoolWrapperType, Kind) { EXPECT_EQ(BoolWrapperType().kind(), BoolWrapperType::kKind); EXPECT_EQ(Type(BoolWrapperType()).kind(), BoolWrapperType::kKind); } TEST(BoolWrapperType, Name...
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/common/types/bool_wrapper_type.h
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/common/types/bool_wrapper_type_test.cc
4552db5798fb0853b131b783d8875794334fae7f
952e58de-4b22-4a59-8c11-cd3e4ecf4b7e
cpp
google/cel-cpp
bytes_type
common/types/bytes_type.h
common/types/bytes_type_test.cc
#ifndef THIRD_PARTY_CEL_CPP_COMMON_TYPES_BYTES_TYPE_H_ #define THIRD_PARTY_CEL_CPP_COMMON_TYPES_BYTES_TYPE_H_ #include <ostream> #include <string> #include <utility> #include "absl/strings/string_view.h" #include "common/type_kind.h" namespace cel { class Type; class TypeParameters; class BytesType final { public: s...
#include <sstream> #include "absl/hash/hash.h" #include "common/type.h" #include "internal/testing.h" namespace cel { namespace { TEST(BytesType, Kind) { EXPECT_EQ(BytesType().kind(), BytesType::kKind); EXPECT_EQ(Type(BytesType()).kind(), BytesType::kKind); } TEST(BytesType, Name) { EXPECT_EQ(BytesType().name(), ...
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/common/types/bytes_type.h
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/common/types/bytes_type_test.cc
4552db5798fb0853b131b783d8875794334fae7f
7d89dd65-9a99-458f-9936-e05ead4d4730
cpp
google/cel-cpp
string_wrapper_type
common/types/string_wrapper_type.h
common/types/string_wrapper_type_test.cc
#ifndef THIRD_PARTY_CEL_CPP_COMMON_TYPES_STRING_WRAPPER_TYPE_H_ #define THIRD_PARTY_CEL_CPP_COMMON_TYPES_STRING_WRAPPER_TYPE_H_ #include <ostream> #include <string> #include <utility> #include "absl/strings/string_view.h" #include "common/type_kind.h" namespace cel { class Type; class TypeParameters; class StringWrappe...
#include <sstream> #include "absl/hash/hash.h" #include "common/type.h" #include "internal/testing.h" namespace cel { namespace { TEST(StringWrapperType, Kind) { EXPECT_EQ(StringWrapperType().kind(), StringWrapperType::kKind); EXPECT_EQ(Type(StringWrapperType()).kind(), StringWrapperType::kKind); } TEST(StringWrapp...
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/common/types/string_wrapper_type.h
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/common/types/string_wrapper_type_test.cc
4552db5798fb0853b131b783d8875794334fae7f
965ee7f5-f994-44d4-af96-e70540dd901a
cpp
google/cel-cpp
dyn_type
common/types/dyn_type.h
common/types/dyn_type_test.cc
#ifndef THIRD_PARTY_CEL_CPP_COMMON_TYPES_DYN_TYPE_H_ #define THIRD_PARTY_CEL_CPP_COMMON_TYPES_DYN_TYPE_H_ #include <ostream> #include <string> #include <utility> #include "absl/strings/string_view.h" #include "common/type_kind.h" namespace cel { class Type; class TypeParameters; class DynType final { public: static ...
#include <sstream> #include "absl/hash/hash.h" #include "common/type.h" #include "internal/testing.h" namespace cel { namespace { TEST(DynType, Kind) { EXPECT_EQ(DynType().kind(), DynType::kKind); EXPECT_EQ(Type(DynType()).kind(), DynType::kKind); } TEST(DynType, Name) { EXPECT_EQ(DynType().name(), DynType::kName...
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/common/types/dyn_type.h
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/common/types/dyn_type_test.cc
4552db5798fb0853b131b783d8875794334fae7f
5d78d715-f803-4538-adf8-a21734a52fc6
cpp
google/cel-cpp
any_type
common/types/any_type.h
common/types/any_type_test.cc
#ifndef THIRD_PARTY_CEL_CPP_COMMON_TYPES_ANY_TYPE_H_ #define THIRD_PARTY_CEL_CPP_COMMON_TYPES_ANY_TYPE_H_ #include <ostream> #include <string> #include <utility> #include "absl/strings/string_view.h" #include "common/type_kind.h" namespace cel { class Type; class TypeParameters; class AnyType final { public: static ...
#include <sstream> #include "absl/hash/hash.h" #include "common/type.h" #include "internal/testing.h" namespace cel { namespace { TEST(AnyType, Kind) { EXPECT_EQ(AnyType().kind(), AnyType::kKind); EXPECT_EQ(Type(AnyType()).kind(), AnyType::kKind); } TEST(AnyType, Name) { EXPECT_EQ(AnyType().name(), AnyType::kName...
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/common/types/any_type.h
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/common/types/any_type_test.cc
4552db5798fb0853b131b783d8875794334fae7f
51c0f3b9-a0e8-42c4-a1a0-6013986f3d2b
cpp
google/cel-cpp
int_type
common/types/int_type.h
common/types/int_type_test.cc
#ifndef THIRD_PARTY_CEL_CPP_COMMON_TYPES_INT_TYPE_H_ #define THIRD_PARTY_CEL_CPP_COMMON_TYPES_INT_TYPE_H_ #include <ostream> #include <string> #include <utility> #include "absl/strings/string_view.h" #include "common/type_kind.h" namespace cel { class Type; class TypeParameters; class IntType final { public: static ...
#include <sstream> #include "absl/hash/hash.h" #include "common/type.h" #include "internal/testing.h" namespace cel { namespace { TEST(IntType, Kind) { EXPECT_EQ(IntType().kind(), IntType::kKind); EXPECT_EQ(Type(IntType()).kind(), IntType::kKind); } TEST(IntType, Name) { EXPECT_EQ(IntType().name(), IntType::kName...
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/common/types/int_type.h
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/common/types/int_type_test.cc
4552db5798fb0853b131b783d8875794334fae7f
1036b1df-8b68-4267-bcd2-83a33e692cb7
cpp
google/cel-cpp
double_wrapper_type
common/types/double_wrapper_type.h
common/types/double_wrapper_type_test.cc
#ifndef THIRD_PARTY_CEL_CPP_COMMON_TYPES_DOUBLE_WRAPPER_TYPE_H_ #define THIRD_PARTY_CEL_CPP_COMMON_TYPES_DOUBLE_WRAPPER_TYPE_H_ #include <ostream> #include <string> #include <utility> #include "absl/strings/string_view.h" #include "common/type_kind.h" namespace cel { class Type; class TypeParameters; class DoubleWrappe...
#include <sstream> #include "absl/hash/hash.h" #include "common/type.h" #include "internal/testing.h" namespace cel { namespace { TEST(DoubleWrapperType, Kind) { EXPECT_EQ(DoubleWrapperType().kind(), DoubleWrapperType::kKind); EXPECT_EQ(Type(DoubleWrapperType()).kind(), DoubleWrapperType::kKind); } TEST(DoubleWrapp...
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/common/types/double_wrapper_type.h
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/common/types/double_wrapper_type_test.cc
4552db5798fb0853b131b783d8875794334fae7f
deabf8d9-6a66-4e47-89da-b1da47e70165
cpp
google/cel-cpp
legacy_type_reflector
common/values/legacy_type_reflector.h
common/legacy_type_reflector_test.cc
#ifndef THIRD_PARTY_CEL_CPP_COMMON_VALUES_LEGACY_TYPE_REFLECTOR_H_ #define THIRD_PARTY_CEL_CPP_COMMON_VALUES_LEGACY_TYPE_REFLECTOR_H_ #include "common/type_reflector.h" #endif
#include <utility> #include "absl/status/status.h" #include "common/legacy_value.h" #include "common/memory.h" #include "common/type_reflector.h" #include "common/value.h" #include "common/value_testing.h" #include "common/values/legacy_value_manager.h" #include "internal/testing.h" namespace cel { namespace { using ::...
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/common/values/legacy_type_reflector.h
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/common/legacy_type_reflector_test.cc
4552db5798fb0853b131b783d8875794334fae7f
5eb69629-495f-4efe-8e13-19cb96a2dada
cpp
google/cel-cpp
data_interface
common/internal/data_interface.h
common/internal/data_interface_test.cc
#ifndef THIRD_PARTY_CEL_CPP_COMMON_INTERNAL_DATA_INTERFACE_H_ #define THIRD_PARTY_CEL_CPP_COMMON_INTERNAL_DATA_INTERFACE_H_ #include <type_traits> #include "absl/base/attributes.h" #include "common/native_type.h" namespace cel { class TypeInterface; class ValueInterface; namespace common_internal { class DataInterface;...
#include "common/internal/data_interface.h" #include <memory> #include "common/native_type.h" #include "internal/testing.h" namespace cel::common_internal { namespace { namespace data_interface_test { class TestInterface final : public DataInterface { private: NativeTypeId GetNativeTypeId() const override { retu...
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/common/internal/data_interface.h
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/common/internal/data_interface_test.cc
4552db5798fb0853b131b783d8875794334fae7f
5b3f7e47-3d28-4c3f-83c1-0913c8b1626a
cpp
google/cel-cpp
message_wrapper
base/internal/message_wrapper.h
eval/public/message_wrapper_test.cc
#ifndef THIRD_PARTY_CEL_CPP_BASE_INTERNAL_MESSAGE_WRAPPER_H_ #define THIRD_PARTY_CEL_CPP_BASE_INTERNAL_MESSAGE_WRAPPER_H_ #include <cstdint> namespace cel::base_internal { inline constexpr uintptr_t kMessageWrapperTagMask = 0b1; inline constexpr uintptr_t kMessageWrapperPtrMask = ~kMessageWrapperTagMask; inline constex...
#include "eval/public/message_wrapper.h" #include <type_traits> #include "google/protobuf/message.h" #include "google/protobuf/message_lite.h" #include "eval/public/structs/trivial_legacy_type_info.h" #include "eval/testutil/test_message.pb.h" #include "internal/casts.h" #include "internal/testing.h" namespace google::...
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/base/internal/message_wrapper.h
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/eval/public/message_wrapper_test.cc
4552db5798fb0853b131b783d8875794334fae7f
45587220-e750-404f-9906-bd0f0490ad7b
cpp
google/cel-cpp
unknown_attribute_set
eval/public/unknown_attribute_set.h
eval/public/unknown_attribute_set_test.cc
#ifndef THIRD_PARTY_CEL_CPP_EVAL_PUBLIC_UNKNOWN_ATTRIBUTE_SET_H_ #define THIRD_PARTY_CEL_CPP_EVAL_PUBLIC_UNKNOWN_ATTRIBUTE_SET_H_ #include "base/attribute_set.h" namespace google { namespace api { namespace expr { namespace runtime { using UnknownAttributeSet = ::cel::AttributeSet; } } } } #endif
#include "eval/public/unknown_attribute_set.h" #include <memory> #include <string> #include <vector> #include "eval/public/cel_attribute.h" #include "eval/public/cel_value.h" #include "internal/testing.h" namespace google { namespace api { namespace expr { namespace runtime { namespace { using ::testing::Eq; using goog...
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/eval/public/unknown_attribute_set.h
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/eval/public/unknown_attribute_set_test.cc
4552db5798fb0853b131b783d8875794334fae7f
f5697065-59c0-4051-9bd7-069f12d245b5
cpp
google/cel-cpp
cel_function_adapter
eval/public/cel_function_adapter.h
eval/public/cel_function_adapter_test.cc
#ifndef THIRD_PARTY_CEL_CPP_EVAL_PUBLIC_CEL_FUNCTION_ADAPTER_H_ #define THIRD_PARTY_CEL_CPP_EVAL_PUBLIC_CEL_FUNCTION_ADAPTER_H_ #include <cstdint> #include <functional> #include <optional> #include <type_traits> #include <utility> #include "google/protobuf/message.h" #include "absl/status/status.h" #include "eval/publi...
#include "eval/public/cel_function_adapter.h" #include <functional> #include <string> #include <utility> #include <vector> #include "internal/status_macros.h" #include "internal/testing.h" namespace google { namespace api { namespace expr { namespace runtime { namespace { TEST(CelFunctionAdapterTest, TestAdapterNoArg) ...
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/eval/public/cel_function_adapter.h
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/eval/public/cel_function_adapter_test.cc
4552db5798fb0853b131b783d8875794334fae7f
e8d77878-5c89-4f56-bedc-a9c773970949
cpp
google/cel-cpp
legacy_type_adapter
eval/public/structs/legacy_type_adapter.h
eval/public/structs/legacy_type_adapter_test.cc
#ifndef THIRD_PARTY_CEL_CPP_EVAL_PUBLIC_STRUCTS_LEGACY_TYPE_ADPATER_H_ #define THIRD_PARTY_CEL_CPP_EVAL_PUBLIC_STRUCTS_LEGACY_TYPE_ADPATER_H_ #include <cstdint> #include <vector> #include "absl/status/status.h" #include "absl/status/statusor.h" #include "absl/strings/string_view.h" #include "absl/types/span.h" #include...
#include "eval/public/structs/legacy_type_adapter.h" #include <vector> #include "google/protobuf/arena.h" #include "eval/public/cel_value.h" #include "eval/public/structs/trivial_legacy_type_info.h" #include "eval/public/testing/matchers.h" #include "eval/testutil/test_message.pb.h" #include "extensions/protobuf/memory...
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/eval/public/structs/legacy_type_adapter.h
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/eval/public/structs/legacy_type_adapter_test.cc
4552db5798fb0853b131b783d8875794334fae7f
e400d552-8f2c-4626-b7d9-d0f1ab1d67fe
cpp
google/cel-cpp
trivial_legacy_type_info
eval/public/structs/trivial_legacy_type_info.h
eval/public/structs/trivial_legacy_type_info_test.cc
#ifndef THIRD_PARTY_CEL_CPP_EVAL_PUBLIC_STRUCTS_TRIVIAL_LEGACY_TYPE_INFO_H_ #define THIRD_PARTY_CEL_CPP_EVAL_PUBLIC_STRUCTS_TRIVIAL_LEGACY_TYPE_INFO_H_ #include <string> #include "absl/base/no_destructor.h" #include "absl/strings/string_view.h" #include "eval/public/message_wrapper.h" #include "eval/public/structs/lega...
#include "eval/public/structs/trivial_legacy_type_info.h" #include "eval/public/message_wrapper.h" #include "internal/testing.h" namespace google::api::expr::runtime { namespace { TEST(TrivialTypeInfo, GetTypename) { TrivialTypeInfo info; MessageWrapper wrapper; EXPECT_EQ(info.GetTypename(wrapper), "opaque"); E...
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/eval/public/structs/trivial_legacy_type_info.h
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/eval/public/structs/trivial_legacy_type_info_test.cc
4552db5798fb0853b131b783d8875794334fae7f
d2483bbb-3d3a-4291-b99e-8aba17f70f7e
cpp
google/cel-cpp
field_backed_list_impl
eval/public/containers/field_backed_list_impl.h
eval/public/containers/field_backed_list_impl_test.cc
#ifndef THIRD_PARTY_CEL_CPP_EVAL_PUBLIC_CONTAINERS_FIELD_BACKED_LIST_IMPL_H_ #define THIRD_PARTY_CEL_CPP_EVAL_PUBLIC_CONTAINERS_FIELD_BACKED_LIST_IMPL_H_ #include "eval/public/cel_value.h" #include "eval/public/containers/internal_field_backed_list_impl.h" #include "eval/public/structs/cel_proto_wrapper.h" namespace go...
#include "eval/public/containers/field_backed_list_impl.h" #include <memory> #include <string> #include "eval/testutil/test_message.pb.h" #include "internal/testing.h" #include "testutil/util.h" namespace google { namespace api { namespace expr { namespace runtime { namespace { using ::testing::Eq; using ::testing::Dou...
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/eval/public/containers/field_backed_list_impl.h
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/eval/public/containers/field_backed_list_impl_test.cc
4552db5798fb0853b131b783d8875794334fae7f
458e0be5-a6e4-4cfb-b5e8-68bac274c1b0
cpp
google/cel-cpp
field_backed_map_impl
eval/public/containers/field_backed_map_impl.h
eval/public/containers/field_backed_map_impl_test.cc
#ifndef THIRD_PARTY_CEL_CPP_EVAL_PUBLIC_CONTAINERS_FIELD_BACKED_MAP_IMPL_H_ #define THIRD_PARTY_CEL_CPP_EVAL_PUBLIC_CONTAINERS_FIELD_BACKED_MAP_IMPL_H_ #include "google/protobuf/descriptor.h" #include "google/protobuf/message.h" #include "absl/status/statusor.h" #include "eval/public/cel_value.h" #include "eval/public/...
#include "eval/public/containers/field_backed_map_impl.h" #include <array> #include <limits> #include <memory> #include <string> #include <vector> #include "absl/status/status.h" #include "absl/strings/str_cat.h" #include "eval/testutil/test_message.pb.h" #include "internal/testing.h" namespace google::api::expr::runti...
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/eval/public/containers/field_backed_map_impl.h
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/eval/public/containers/field_backed_map_impl_test.cc
4552db5798fb0853b131b783d8875794334fae7f
75518bb5-a390-42b6-b985-bea3835768f4
cpp
google/cel-cpp
comprehension_slots
eval/eval/comprehension_slots.h
eval/eval/comprehension_slots_test.cc
#ifndef THIRD_PARTY_CEL_CPP_EVAL_EVAL_COMPREHENSION_SLOTS_H_ #define THIRD_PARTY_CEL_CPP_EVAL_EVAL_COMPREHENSION_SLOTS_H_ #include <cstddef> #include <utility> #include <vector> #include "absl/base/no_destructor.h" #include "absl/log/absl_check.h" #include "absl/types/optional.h" #include "common/value.h" #include "eva...
#include "eval/eval/comprehension_slots.h" #include "base/attribute.h" #include "base/type_provider.h" #include "common/memory.h" #include "common/type.h" #include "common/type_factory.h" #include "common/type_manager.h" #include "common/value.h" #include "common/value_manager.h" #include "common/values/legacy_value_ma...
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/eval/eval/comprehension_slots.h
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/eval/eval/comprehension_slots_test.cc
4552db5798fb0853b131b783d8875794334fae7f