HomeSort by relevance Sort by last modified time
    Searched defs:UnderscoresToCamelCase (Results 1 - 4 of 4) sorted by null

  /external/protobuf/src/google/protobuf/compiler/javamicro/
javamicro_helpers.cc 102 string UnderscoresToCamelCase(const FieldDescriptor* field) {
110 string UnderscoresToCamelCase(const MethodDescriptor* method) {
  /external/protobuf/src/google/protobuf/compiler/cpp/
cpp_helpers.cc 101 string UnderscoresToCamelCase(const string& input, bool cap_next_letter) {
179 string field_name = UnderscoresToCamelCase(field->name(), true);
  /external/protobuf/src/google/protobuf/compiler/java/
java_helpers.cc 104 string UnderscoresToCamelCase(const string& input, bool cap_next_letter) {
139 string UnderscoresToCamelCase(const FieldDescriptor* field) {
140 return UnderscoresToCamelCase(FieldName(field), false);
144 return UnderscoresToCamelCase(FieldName(field), true);
147 string UnderscoresToCamelCase(const MethodDescriptor* method) {
148 return UnderscoresToCamelCase(method->name(), false);
  /external/protobuf/src/google/protobuf/compiler/javanano/
javanano_helpers.cc 145 string UnderscoresToCamelCase(const FieldDescriptor* field) {
153 string UnderscoresToCamelCase(const MethodDescriptor* method) {
264 return "_" + RenameJavaKeywords(UnderscoresToCamelCase(field)) + "Default";

Completed in 184 milliseconds