Home | History | Annotate | Download | only in java

Lines Matching refs:string

19 static string
22 string name = file_descriptor.options().java_outer_classname();
38 static string
50 static string
51 make_file_name(const FileDescriptorProto& file_descriptor, const string& class_name)
53 string const package = make_java_package(file_descriptor);
54 string result;
66 static string
67 indent_more(const string& indent)
76 write_enum(stringstream& text, const EnumDescriptorProto& enu, const string& indent)
93 write_field(stringstream& text, const FieldDescriptorProto& field, const string& indent)
95 string optional_comment = field.label() == FieldDescriptorProto::LABEL_OPTIONAL
97 string repeated_comment = field.label() == FieldDescriptorProto::LABEL_REPEATED
99 string proto_type = get_proto_type(field);
100 string packed_comment = field.options().packed()
120 write_message(stringstream& text, const DescriptorProto& message, const string& indent)
123 const string indented = indent_more(indent);
158 const string& filename, bool generate_outer,
163 string const package_name = make_java_package(file_descriptor);
164 string const outer_class_name = make_outer_class_name(file_descriptor);
187 const string indented = generate_outer ? indent_more("") : string();