OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:FindEnumValueByName
(Results
1 - 9
of
9
) sorted by null
/external/protobuf/src/google/protobuf/
descriptor_unittest.cc
308
TEST_F(FileDescriptorTest,
FindEnumValueByName
) {
309
EXPECT_EQ(foo_enum_value_, foo_file_->
FindEnumValueByName
("FOO_ENUM_VALUE"));
310
EXPECT_EQ(bar_enum_value_, bar_file_->
FindEnumValueByName
("BAR_ENUM_VALUE"));
312
EXPECT_TRUE(foo_file_->
FindEnumValueByName
("BAR_ENUM_VALUE") == NULL);
313
EXPECT_TRUE(bar_file_->
FindEnumValueByName
("FOO_ENUM_VALUE") == NULL);
314
EXPECT_TRUE(baz_file_->
FindEnumValueByName
("FOO_ENUM_VALUE") == NULL);
316
EXPECT_TRUE(foo_file_->
FindEnumValueByName
("NO_SUCH_VALUE") == NULL);
317
EXPECT_TRUE(foo_file_->
FindEnumValueByName
("FooMessage") == NULL);
[
all
...]
descriptor.h
231
const EnumValueDescriptor*
FindEnumValueByName
(const string& name) const;
[
all
...]
test_util.cc
[
all
...]
descriptor.cc
[
all
...]
/prebuilts/misc/darwin-x86_64/protobuf2.5/include/google/protobuf/
descriptor.h
218
const EnumValueDescriptor*
FindEnumValueByName
(const string& name) const;
[
all
...]
/prebuilts/misc/linux-x86_64/protobuf2.5/include/google/protobuf/
descriptor.h
218
const EnumValueDescriptor*
FindEnumValueByName
(const string& name) const;
[
all
...]
/prebuilts/misc/windows/protobuf2.5/include/google/protobuf/
descriptor.h
218
const EnumValueDescriptor*
FindEnumValueByName
(const string& name) const;
[
all
...]
/prebuilts/tools/linux-x86_64/protoc/include/google/protobuf/
descriptor.h
218
const EnumValueDescriptor*
FindEnumValueByName
(const string& name) const;
[
all
...]
/prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/
descriptor.h
281
const EnumValueDescriptor*
FindEnumValueByName
(const string& name) const;
[
all
...]
Completed in 521 milliseconds