Lines Matching refs:DebugString

1807 string FileDescriptor::DebugString() const {  in DebugString()  function in google::protobuf::FileDescriptor
1839 enum_type(i)->DebugString(0, &contents); in DebugString()
1856 message_type(i)->DebugString(0, &contents); in DebugString()
1862 service(i)->DebugString(&contents); in DebugString()
1874 extension(i)->DebugString(1, FieldDescriptor::PRINT_LABEL, &contents); in DebugString()
1881 string Descriptor::DebugString() const { in DebugString() function in google::protobuf::Descriptor
1884 DebugString(0, &contents); in DebugString()
1888 void Descriptor::DebugString(int depth, string *contents) const { in DebugString() function in google::protobuf::Descriptor
1914 nested_type(i)->DebugString(depth, contents); in DebugString()
1918 enum_type(i)->DebugString(depth, contents); in DebugString()
1922 field(i)->DebugString(depth, FieldDescriptor::PRINT_LABEL, contents); in DebugString()
1925 field(i)->containing_oneof()->DebugString(depth, contents); in DebugString()
1945 extension(i)->DebugString( in DebugString()
1954 string FieldDescriptor::DebugString() const { in DebugString() function in google::protobuf::FieldDescriptor
1962 DebugString(depth, PRINT_LABEL, &contents); in DebugString()
1969 void FieldDescriptor::DebugString(int depth, in DebugString() function in google::protobuf::FieldDescriptor
2018 message_type()->DebugString(depth, contents); in DebugString()
2024 string OneofDescriptor::DebugString() const { in DebugString() function in google::protobuf::OneofDescriptor
2026 DebugString(0, &contents); in DebugString()
2030 void OneofDescriptor::DebugString(int depth, string* contents) const { in DebugString() function in google::protobuf::OneofDescriptor
2036 field(i)->DebugString(depth, FieldDescriptor::OMIT_LABEL, contents); in DebugString()
2041 string EnumDescriptor::DebugString() const { in DebugString() function in google::protobuf::EnumDescriptor
2043 DebugString(0, &contents); in DebugString()
2047 void EnumDescriptor::DebugString(int depth, string *contents) const { in DebugString() function in google::protobuf::EnumDescriptor
2056 value(i)->DebugString(depth, contents); in DebugString()
2061 string EnumValueDescriptor::DebugString() const { in DebugString() function in google::protobuf::EnumValueDescriptor
2063 DebugString(0, &contents); in DebugString()
2067 void EnumValueDescriptor::DebugString(int depth, string *contents) const { in DebugString() function in google::protobuf::EnumValueDescriptor
2079 string ServiceDescriptor::DebugString() const { in DebugString() function in google::protobuf::ServiceDescriptor
2081 DebugString(&contents); in DebugString()
2085 void ServiceDescriptor::DebugString(string *contents) const { in DebugString() function in google::protobuf::ServiceDescriptor
2091 method(i)->DebugString(1, contents); in DebugString()
2097 string MethodDescriptor::DebugString() const { in DebugString() function in google::protobuf::MethodDescriptor
2099 DebugString(0, &contents); in DebugString()
2103 void MethodDescriptor::DebugString(int depth, string *contents) const { in DebugString() function in google::protobuf::MethodDescriptor
5279 << "Could not create an instance of " << option_field->DebugString(); in SetAggregateOption()