OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:has_default_value
(Results
1 - 13
of
13
) sorted by null
/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/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
...]
descriptor.pb.cc
[
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
355
if (field->
has_default_value
()) {
/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
...]
Completed in 341 milliseconds