Home
last modified time | relevance | path

Searched refs:ToCamelCase (Results 1 – 8 of 8) sorted by relevance

/external/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/
DFieldMaskPartial.cs62 … JsonFormatter.WriteString(writer, string.Join(",", paths.Select(JsonFormatter.ToCamelCase))); in ToJson()
/external/protobuf/src/google/protobuf/util/internal/
Dutility.h146 LIBPROTOBUF_EXPORT string ToCamelCase(const StringPiece input);
Dutility.cc203 string ToCamelCase(const StringPiece input) { in ToCamelCase() function
Dprotostream_objectsource.cc665 combined.append(ConvertFieldMaskPath(str, &ToCamelCase)); in RenderFieldMask()
860 ow->RenderString(field_name, ToCamelCase(enum_value->name())); in RenderNonMessageField()
/external/protobuf/csharp/src/Google.Protobuf.Test/
DJsonFormatterTest.cs231 public void ToCamelCase(string original, string expected) in ToCamelCase() method in Google.Protobuf.JsonFormatterTest
233 Assert.AreEqual(expected, JsonFormatter.ToCamelCase(original)); in ToCamelCase()
/external/protobuf/csharp/src/Google.Protobuf/Reflection/
DFieldDescriptor.cs100 … JsonName = Proto.JsonName == "" ? JsonFormatter.ToCamelCase(Proto.Name) : Proto.JsonName; in FieldDescriptor()
/external/protobuf/csharp/src/Google.Protobuf/
DJsonFormatter.cs273 return ToCamelCase(input); in ToCamelCaseForFieldMask()
278 internal static string ToCamelCase(string input) in ToCamelCase() method in Google.Protobuf.JsonFormatter
/external/protobuf/src/google/protobuf/
Ddescriptor.cc167 string ToCamelCase(const string& input, bool lower_first) { in ToCamelCase() function
4221 tables_->AllocateString(ToCamelCase(proto.name(), in BuildFieldOrExtension()
5391 message->name() != ToCamelCase(field->name(), false) + "Entry" || in ValidateMapEntry()