/external/protobuf/python/google/protobuf/ |
descriptor.py | 296 has_default_value: (bool) True if this field has a default value defined, 376 has_default_value=True): 392 self.has_default_value = has_default_value
|
/external/chromium_org/third_party/protobuf/python/google/protobuf/ |
descriptor.py | 330 has_default_value: (bool) True if this field has a default value defined, 431 has_default_value=True): 447 self.has_default_value = has_default_value 708 has_default_value=False)
|
descriptor_pool.py | 371 has_default_value=False,
|
/external/chromium_org/third_party/protobuf/src/google/protobuf/ |
descriptor_unittest.cc | 614 EXPECT_FALSE(foo_->has_default_value()); 615 EXPECT_FALSE(bar_->has_default_value()); 616 EXPECT_FALSE(baz_->has_default_value()); 617 EXPECT_FALSE(qux_->has_default_value()); [all...] |
descriptor.h | 440 bool has_default_value() const; [all...] |
descriptor.cc | [all...] |
generated_message_reflection.cc | 486 if (field->has_default_value()) { [all...] |
descriptor.pb.cc | [all...] |
/external/protobuf/src/google/protobuf/ |
descriptor_unittest.cc | 612 EXPECT_FALSE(foo_->has_default_value()); 613 EXPECT_FALSE(bar_->has_default_value()); 614 EXPECT_FALSE(baz_->has_default_value()); 615 EXPECT_FALSE(qux_->has_default_value()); [all...] |
descriptor.h | 406 bool has_default_value() const; [all...] |
descriptor.cc | [all...] |
generated_message_reflection.cc | 498 if (field->has_default_value()) { [all...] |
descriptor.pb.h | 3148 inline bool FieldDescriptorProto::has_default_value() const { function in class:google::protobuf::FieldDescriptorProto [all...] |
/external/protobuf/python/google/protobuf/internal/ |
descriptor_test.py | 79 has_default_value=False, default_value=0,
|
generator_test.py | 114 [(f.name, f.has_default_value)
|
/external/protobuf/src/google/protobuf/compiler/java/ |
java_helpers.cc | 303 if (field->has_default_value()) {
|
/external/protobuf/src/google/protobuf/compiler/javamicro/ |
javamicro_helpers.cc | 317 if (field->has_default_value()) {
|
/external/chromium_org/third_party/protobuf/python/google/protobuf/internal/ |
generator_test.py | 118 [(f.name, f.has_default_value)
|
descriptor_test.py | 80 has_default_value=False, default_value=0,
|
python_message.py | 263 if field.has_default_value and field.default_value != []: 292 # default_value. Combine with has_default_value somehow. 449 # default_value. Combine with has_default_value somehow. [all...] |
/external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/java/ |
java_helpers.cc | 326 if (field->has_default_value()) {
|
/external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/python/ |
python_generator.cc | [all...] |
/external/protobuf/src/google/protobuf/compiler/ |
parser.cc | 522 if (field->has_default_value()) { [all...] |
/external/protobuf/src/google/protobuf/compiler/python/ |
python_generator.cc | 850 m["has_default_value"] = field.has_default_value() ? "True" : "False"; 861 " has_default_value=$has_default_value$, default_value=$default_value$,\n" [all...] |
/external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/ |
parser.cc | 777 if (field->has_default_value()) { [all...] |