Home
last modified time | relevance | path

Searched refs:FindFieldByCamelcaseName (Results 1 – 5 of 5) sorted by relevance

/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/src/google/protobuf/compiler/cpp/
Dcpp_helpers.cc211 field->containing_type()->FindFieldByCamelcaseName( in FieldConstantName()
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/src/google/protobuf/
Ddescriptor_unittest.cc1141 message_->FindFieldByCamelcaseName("fooFoo")); in TEST_F()
1143 message_->FindFieldByCamelcaseName("fooBar")); in TEST_F()
1145 message_->FindFieldByCamelcaseName("fooBaz")); in TEST_F()
1146 EXPECT_TRUE(message_->FindFieldByCamelcaseName("foo_foo") == NULL); in TEST_F()
1147 EXPECT_TRUE(message_->FindFieldByCamelcaseName("FooBar") == NULL); in TEST_F()
1148 EXPECT_TRUE(message_->FindFieldByCamelcaseName("barFoo") == NULL); in TEST_F()
1149 EXPECT_TRUE(message_->FindFieldByCamelcaseName("nosuchfield") == NULL); in TEST_F()
Ddescriptor.cc588 inline const FieldDescriptor* FindFieldByCamelcaseName(
833 inline const FieldDescriptor* FileDescriptorTables::FindFieldByCamelcaseName( in FindFieldByCamelcaseName() function in google::protobuf::FileDescriptorTables
1346 Descriptor::FindFieldByCamelcaseName(const string& key) const { in FindFieldByCamelcaseName() function in google::protobuf::Descriptor
1348 file()->tables_->FindFieldByCamelcaseName(this, key); in FindFieldByCamelcaseName()
1403 file()->tables_->FindFieldByCamelcaseName(this, key); in FindExtensionByCamelcaseName()
1539 const FieldDescriptor* result = tables_->FindFieldByCamelcaseName(this, key); in FindExtensionByCamelcaseName()
Ddescriptor.h244 const FieldDescriptor* FindFieldByCamelcaseName(
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/python/google/protobuf/pyext/
Ddescriptor_containers.cc966 return GetDescriptor(self)->FindFieldByCamelcaseName(name); in GetByCamelcaseName()