FindValueByName 4728 third_party/protobuf/src/google/protobuf/descriptor.cc enum_value = enum_type->FindValueByName(value_name); FindValueByName 612 third_party/protobuf/src/google/protobuf/descriptor.h const EnumValueDescriptor* FindValueByName(const string& name) const; FindValueByName 929 third_party/protobuf/src/google/protobuf/descriptor_unittest.cc TEST_F(EnumDescriptorTest, FindValueByName) { FindValueByName 930 third_party/protobuf/src/google/protobuf/descriptor_unittest.cc EXPECT_EQ(foo_ , enum_ ->FindValueByName("FOO")); FindValueByName 931 third_party/protobuf/src/google/protobuf/descriptor_unittest.cc EXPECT_EQ(bar_ , enum_ ->FindValueByName("BAR")); FindValueByName 932 third_party/protobuf/src/google/protobuf/descriptor_unittest.cc EXPECT_EQ(foo2_, enum2_->FindValueByName("FOO")); FindValueByName 933 third_party/protobuf/src/google/protobuf/descriptor_unittest.cc EXPECT_EQ(baz2_, enum2_->FindValueByName("BAZ")); FindValueByName 935 third_party/protobuf/src/google/protobuf/descriptor_unittest.cc EXPECT_TRUE(enum_ ->FindValueByName("NO_SUCH_VALUE") == NULL); FindValueByName 936 third_party/protobuf/src/google/protobuf/descriptor_unittest.cc EXPECT_TRUE(enum_ ->FindValueByName("BAZ" ) == NULL); FindValueByName 937 third_party/protobuf/src/google/protobuf/descriptor_unittest.cc EXPECT_TRUE(enum2_->FindValueByName("BAR" ) == NULL); FindValueByName 2399 third_party/protobuf/src/google/protobuf/descriptor_unittest.cc const EnumValueDescriptor* enumv = enumd->FindValueByName("VALUE"); FindValueByName 4357 third_party/protobuf/src/google/protobuf/descriptor_unittest.cc EXPECT_TRUE(test_enum->FindValueByName("NO_SUCH_VALUE") == NULL); FindValueByName 4539 third_party/protobuf/src/google/protobuf/descriptor_unittest.cc const EnumValueDescriptor *yes_desc = e_desc->FindValueByName("YES"); FindValueByName 51 third_party/protobuf/src/google/protobuf/generated_message_reflection.cc const EnumValueDescriptor* d = descriptor->FindValueByName(name); FindValueByName 619 third_party/protobuf/src/google/protobuf/text_format.cc enum_value = enum_type->FindValueByName(value);