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

  /external/protobuf/src/google/protobuf/
any.cc 104 *type_url_field = descriptor->FindFieldByNumber(1);
105 *value_field = descriptor->FindFieldByNumber(2);
descriptor_unittest.cc 741 TEST_F(DescriptorTest, FindFieldByNumber) {
742 EXPECT_EQ(foo_, message_->FindFieldByNumber(1));
743 EXPECT_EQ(bar_, message_->FindFieldByNumber(6));
744 EXPECT_EQ(baz_, message_->FindFieldByNumber(500000000));
745 EXPECT_EQ(qux_, message_->FindFieldByNumber(15));
746 EXPECT_TRUE(message_->FindFieldByNumber(837592) == NULL);
747 EXPECT_TRUE(message_->FindFieldByNumber(2) == NULL);
749 EXPECT_EQ(foo2_ , message2_->FindFieldByNumber(1));
750 EXPECT_EQ(bar2_ , message2_->FindFieldByNumber(2));
751 EXPECT_EQ(quux2_, message2_->FindFieldByNumber(6))
    [all...]
text_format.cc 81 *type_url_field = descriptor->FindFieldByNumber(1);
82 *value_field = descriptor->FindFieldByNumber(2);
429 field = descriptor->FindFieldByNumber(field_number);
    [all...]
generated_message_reflection.cc 534 field1 = descriptor_->FindFieldByNumber(oneof_case1);
567 descriptor_->FindFieldByNumber(oneof_case2);
    [all...]
unknown_field_set_unittest.cc 121 const FieldDescriptor* field = descriptor_->FindFieldByNumber(i);
descriptor.h 230 const FieldDescriptor* FindFieldByNumber(int number) const;
    [all...]
wire_format.cc 403 field = descriptor->FindFieldByNumber(field_number);
    [all...]
descriptor.cc 584 inline const FieldDescriptor* FindFieldByNumber(
822 inline const FieldDescriptor* FileDescriptorTables::FindFieldByNumber(
    [all...]
  /external/protobuf/csharp/src/Google.Protobuf.Test/Reflection/
DescriptorsTest.cs 113 Assert.AreEqual(field, messageType.FindFieldByNumber(1));
114 Assert.Null(messageType.FindFieldByNumber(571283));
219 .Select(fieldNumber => TestAllTypes.Descriptor.FindFieldByNumber(fieldNumber))
  /external/protobuf/src/google/protobuf/compiler/ruby/
ruby_generator.cc 120 field->message_type()->FindFieldByNumber(1);
122 field->message_type()->FindFieldByNumber(2);
  /external/protobuf/csharp/src/Google.Protobuf/Reflection/
MessageDescriptor.cs 208 public FieldDescriptor FindFieldByNumber(int number) => File.DescriptorPool.FindFieldByNumber(this, number);
287 var fieldDescriptor = messageDescriptor.FindFieldByNumber(number);
DescriptorPool.cs 209 internal FieldDescriptor FindFieldByNumber(MessageDescriptor messageDescriptor, int number)
  /frameworks/base/tools/incident_report/
main.cpp 54 FieldDescriptor const* field = descriptor->FindFieldByNumber(fieldId);
325 field = descriptor->FindFieldByNumber(id);
  /external/protobuf/src/google/protobuf/util/internal/
protostream_objectsource.cc 77 const google::protobuf::Field* FindFieldByNumber(
155 const google::protobuf::Field* field = FindFieldByNumber(type, tag >> 3);
278 FindFieldByNumber(*field_type, 1);
    [all...]
  /prebuilts/misc/darwin-x86_64/protobuf2.5/include/google/protobuf/
descriptor.h 176 const FieldDescriptor* FindFieldByNumber(int number) const;
    [all...]
  /prebuilts/misc/linux-x86_64/protobuf2.5/include/google/protobuf/
descriptor.h 176 const FieldDescriptor* FindFieldByNumber(int number) const;
    [all...]
  /prebuilts/misc/windows/protobuf2.5/include/google/protobuf/
descriptor.h 176 const FieldDescriptor* FindFieldByNumber(int number) const;
    [all...]
  /prebuilts/tools/linux-x86_64/protoc/include/google/protobuf/
descriptor.h 176 const FieldDescriptor* FindFieldByNumber(int number) const;
    [all...]
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/
descriptor.h 230 const FieldDescriptor* FindFieldByNumber(int number) const;
    [all...]
  /external/protobuf/php/ext/google/protobuf/
upb.h     [all...]
  /external/protobuf/ruby/ext/google/protobuf_c/
upb.h     [all...]
  /external/protobuf/python/google/protobuf/pyext/
descriptor_containers.cc     [all...]
  /external/protobuf/src/google/protobuf/compiler/
parser_unittest.cc     [all...]
  /external/tensorflow/tensorflow/compiler/xla/client/
computation_builder.cc 99 OpRequest::descriptor()->FindFieldByNumber(op_request->op_case())->name();
    [all...]

Completed in 1162 milliseconds