/third_party/protobuf/php/src/Google/Protobuf/Internal/FieldDescriptorProto/ |
H A D | Label.php | 21 * Generated from protobuf enum <code>LABEL_REQUIRED = 2;</code> 23 const LABEL_REQUIRED = 2; 31 self::LABEL_REQUIRED => 'LABEL_REQUIRED',
|
/third_party/protobuf/python/google/protobuf/internal/ |
H A D | descriptor_test.py | 965 field.label = descriptor.FieldDescriptor.LABEL_REQUIRED 970 field.label = descriptor.FieldDescriptor.LABEL_REQUIRED 976 enum_field.label = descriptor.FieldDescriptor.LABEL_REQUIRED 1010 field.label = descriptor.FieldDescriptor.LABEL_REQUIRED 1015 enum_field.label = descriptor.FieldDescriptor.LABEL_REQUIRED
|
H A D | python_message.py | 1224 if field.label == _FieldDescriptor.LABEL_REQUIRED]
|
/third_party/protobuf/benchmarks/util/ |
H A D | schema_proto2_to_proto3_util.h | 167 return field->label() == FieldDescriptorProto::LABEL_REQUIRED; in ShouldClearLabel()
|
/third_party/protobuf/src/google/protobuf/compiler/java/ |
H A D | java_message_builder.cc | 646 case FieldDescriptor::LABEL_REQUIRED: in GenerateIsInitialized()
|
H A D | java_message.cc | 907 case FieldDescriptor::LABEL_REQUIRED: in GenerateIsInitialized()
|
/third_party/protobuf/src/google/protobuf/compiler/ruby/ |
H A D | ruby_generator.cc | 86 case FieldDescriptor::LABEL_REQUIRED: return "required"; in LabelForField()
|
/third_party/protobuf/src/google/protobuf/util/ |
H A D | type_resolver_util.cc | 255 case FieldDescriptor::LABEL_REQUIRED: in ConvertFieldDescriptor()
|
/third_party/protobuf/src/google/protobuf/ |
H A D | descriptor.h | 644 LABEL_REQUIRED = 2, // required enumerator 693 bool is_required() const; // shorthand for label() == LABEL_REQUIRED 2170 return label() == LABEL_REQUIRED; in is_required()
|
H A D | descriptor_unittest.cc | 669 AddField(message, "foo", 1, FieldDescriptorProto::LABEL_REQUIRED, in SetUp() 686 AddField(message2, "foo", 1, FieldDescriptorProto::LABEL_REQUIRED, in SetUp() 688 AddField(message2, "bar", 2, FieldDescriptorProto::LABEL_REQUIRED, in SetUp() 690 AddField(message2, "quux", 6, FieldDescriptorProto::LABEL_REQUIRED, in SetUp() 978 EXPECT_EQ(FieldDescriptor::LABEL_REQUIRED, foo_->label()); in TEST_F() 4622 " label:LABEL_REQUIRED" in TEST_F() 6032 key->set_label(FieldDescriptorProto::LABEL_REQUIRED); in TEST_F() 6062 value->set_label(FieldDescriptorProto::LABEL_REQUIRED); in TEST_F() 6351 " field { name:'foo' number:1 label:LABEL_REQUIRED type:TYPE_INT32 } " in TEST_F() 6364 " field { name:'bar' number:1 label:LABEL_REQUIRED typ in TEST_F() [all...] |
H A D | descriptor.cc | 216 "required", // LABEL_REQUIRED 4797 if (result->label_ == FieldDescriptor::LABEL_REQUIRED) { in BuildFieldOrExtension()
|
H A D | descriptor.pb.cc | 1064 "\022\n\016LABEL_REQUIRED\020\002\022\022\n\016LABEL_REPEATED\020\003\"" 1277 constexpr FieldDescriptorProto_Label FieldDescriptorProto::LABEL_REQUIRED; member in FieldDescriptorProto
|
H A D | descriptor.pb.h | 1911 static constexpr Label LABEL_REQUIRED = member in PROTOBUF_FINAL
|
/third_party/protobuf/python/compatibility_tests/v2.5.0/tests/google/protobuf/internal/ |
H A D | descriptor_test.py | 605 field.label = descriptor.FieldDescriptor.LABEL_REQUIRED
|
/third_party/protobuf/python/google/protobuf/ |
H A D | descriptor.py | 523 LABEL_REQUIRED = 2 variable in FieldDescriptor
|
/third_party/node/deps/npm/node_modules/@sigstore/protobuf-specs/dist/__generated__/google/protobuf/ |
H A D | descriptor.js | 156 FieldDescriptorProto_Label[FieldDescriptorProto_Label["LABEL_REQUIRED"] = 2] = "LABEL_REQUIRED"; 165 case "LABEL_REQUIRED": 166 return FieldDescriptorProto_Label.LABEL_REQUIRED; 179 case FieldDescriptorProto_Label.LABEL_REQUIRED: 180 return "LABEL_REQUIRED";
|
/third_party/protobuf/src/google/protobuf/compiler/ |
H A D | parser.cc | 2257 *label = FieldDescriptorProto::LABEL_REQUIRED; in ParseLabel()
|
/third_party/protobuf/src/google/protobuf/compiler/php/ |
H A D | php_generator.cc | 432 case FieldDescriptor::LABEL_REQUIRED: return "required"; in LabelForField()
|
/third_party/protobuf/java/core/src/main/java/com/google/protobuf/ |
H A D | Descriptors.java | 1071 return proto.getLabel() == FieldDescriptorProto.Label.LABEL_REQUIRED; in isRequired()
|
/third_party/protobuf/src/google/protobuf/compiler/js/ |
H A D | js_generator.cc | 2664 (field->label() == FieldDescriptor::LABEL_REQUIRED ? ", 1" : "")); in GenerateClassField()
|