HomeSort by relevance Sort by last modified time
    Searched refs:FindFieldByName (Results 1 - 20 of 20) sorted by null

  /external/protobuf/src/google/protobuf/
dynamic_message_unittest.cc 165 *message, descriptor->FindFieldByName("foo_int")));
167 *message, descriptor->FindFieldByName("foo_string")));
169 *message, descriptor->FindFieldByName("foo_cord")));
171 *message, descriptor->FindFieldByName("foo_string_piece")));
173 *message, descriptor->FindFieldByName("foo_bytes")));
175 *message, descriptor->FindFieldByName("foo_enum"))->number());
183 *message, descriptor->FindFieldByName("foo_message")));
191 *message, descriptor->FindFieldByName("foogroup")));
194 *message, descriptor->FindFieldByName("foo_lazy_message")));
196 *message, descriptor->FindFieldByName("bar_int")))
    [all...]
generated_message_reflection_unittest.cc 62 unittest::TestAllTypes::descriptor()->FindFieldByName(name);
221 fields.push_back(descriptor->FindFieldByName("optional_double"));
222 fields.push_back(descriptor->FindFieldByName("repeated_int32"));
223 fields.push_back(descriptor->FindFieldByName("optional_string"));
224 fields.push_back(descriptor->FindFieldByName("optional_uint64"));
357 &message, descriptor->FindFieldByName("repeated_foreign_message")));
566 message, descriptor->FindFieldByName("foo_int")));
568 message, descriptor->FindFieldByName("foo_string")));
570 message, descriptor->FindFieldByName("foo_cord")));
572 message, descriptor->FindFieldByName("foo_string_piece")))
    [all...]
repeated_field_reflection_unittest.cc 76 desc->FindFieldByName("repeated_int32");
78 desc->FindFieldByName("repeated_double");
80 desc->FindFieldByName("repeated_string");
82 desc->FindFieldByName("repeated_foreign_message");
150 desc->FindFieldByName("optional_int32");
text_format_unittest.cc 431 message.GetDescriptor()->FindFieldByName("optional_int32"),
443 message.GetDescriptor()->FindFieldByName("optional_int32"),
    [all...]
unknown_field_set_unittest.cc 67 const FieldDescriptor* field = descriptor_->FindFieldByName(name);
178 unittest::TestAllTypes::OptionalGroup::descriptor()->FindFieldByName("a");
410 TestAllTypes::descriptor()->FindFieldByName("optional_nested_enum");
412 TestAllTypes::descriptor()->FindFieldByName("repeated_nested_enum");
wire_format_unittest.cc 746 field = desc->FindFieldByName("repeated_fixed32");
749 field = desc->FindFieldByName("repeated_int32");
752 field = desc->FindFieldByName("repeated_fixed64");
755 field = desc->FindFieldByName("repeated_int64");
758 field = desc->FindFieldByName("repeated_float");
761 field = desc->FindFieldByName("repeated_uint64");
803 unittest::TestAllTypes::descriptor()->FindFieldByName(
824 unittest::TestAllTypes::descriptor()->FindFieldByName(
    [all...]
test_util.cc 93 message->GetDescriptor()->FindFieldByName("optional_string_piece"),
97 message->GetDescriptor()->FindFieldByName("optional_cord"),
134 message->GetDescriptor()->FindFieldByName("repeated_string_piece"),
138 message->GetDescriptor()->FindFieldByName("repeated_cord"),
174 message->GetDescriptor()->FindFieldByName("repeated_string_piece"),
178 message->GetDescriptor()->FindFieldByName("repeated_cord"),
209 message->GetDescriptor()->FindFieldByName("default_string_piece"),
213 message->GetDescriptor()->FindFieldByName("default_cord"),
250 message->GetDescriptor()->FindFieldByName("repeated_string_piece"),
254 message->GetDescriptor()->FindFieldByName("repeated_cord")
    [all...]
descriptor_unittest.cc 396 // TestMessage2 is primarily here to test FindFieldByName and friends.
509 TEST_F(DescriptorTest, FindFieldByName) {
511 // fields. So, in addition to testing that FindFieldByName finds the fields
515 EXPECT_EQ(foo_, message_->FindFieldByName("foo"));
516 EXPECT_EQ(bar_, message_->FindFieldByName("bar"));
517 EXPECT_EQ(baz_, message_->FindFieldByName("baz"));
518 EXPECT_EQ(qux_, message_->FindFieldByName("qux"));
519 EXPECT_TRUE(message_->FindFieldByName("no_such_field") == NULL);
520 EXPECT_TRUE(message_->FindFieldByName("quux") == NULL);
522 EXPECT_EQ(foo2_ , message2_->FindFieldByName("foo" ))
    [all...]
descriptor.h 182 const FieldDescriptor* FindFieldByName(const string& name) const;
332 // then call Descriptor::FindFieldByName(). To get a FieldDescriptor for
    [all...]
text_format.cc 387 field = descriptor->FindFieldByName(field_name);
394 field = descriptor->FindFieldByName(lower_field_name);
    [all...]
descriptor.cc 501 // contents of a single file -- e.g. Descriptor::FindFieldByName() --
    [all...]
  /external/protobuf/python/google/protobuf/pyext/
descriptor.h 77 PyObject* FindFieldByName(CDescriptorPool* self, PyObject* name);
descriptor.cc 173 PyObject* FindFieldByName(CDescriptorPool* self, PyObject* name) {
181 field_descriptor = self->pool->FindFieldByName(full_field_name);
210 { C("FindFieldByName"),
211 (PyCFunction)FindFieldByName,
message.cc 875 descriptor->FindFieldByName(field_name);
    [all...]
  /art/runtime/native/
java_lang_Class.cc 190 ALWAYS_INLINE static inline ArtField* FindFieldByName(
223 auto* art_field = FindFieldByName(self, name, instance_fields, c->NumInstanceFields());
228 art_field = FindFieldByName(self, name, static_fields, c->NumStaticFields());
  /external/protobuf/src/google/protobuf/compiler/
importer_unittest.cc 240 const FieldDescriptor* key_field = item_type->FindFieldByName("key");
242 const FieldDescriptor* items_field = map_type->FindFieldByName("items");
parser.cc     [all...]
parser_unittest.cc     [all...]
  /external/protobuf/src/google/protobuf/compiler/cpp/
cpp_helpers.cc 398 if (descriptor->FindFieldByName(function_name)) {
  /external/protobuf/python/google/protobuf/internal/
cpp_message.py 60 return _pool.FindFieldByName(full_field_name)

Completed in 596 milliseconds