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

  /external/protobuf/src/google/protobuf/
text_format.h 92 // You can derive from this FieldValuePrinter if you want to have
95 class LIBPROTOBUF_EXPORT FieldValuePrinter {
97 FieldValuePrinter();
98 virtual ~FieldValuePrinter();
122 GOOGLE_DISALLOW_EVIL_CONSTRUCTORS(FieldValuePrinter);
181 // sequences. This will change the default FieldValuePrinter.
184 // Set the default FieldValuePrinter that is used for all fields that
187 void SetDefaultFieldValuePrinter(const FieldValuePrinter* printer);
208 // Register a custom field-specific FieldValuePrinter for fields
214 const FieldValuePrinter* printer)
    [all...]
text_format.cc     [all...]
text_format_unittest.cc 392 class CustomUInt32FieldValuePrinter : public TextFormat::FieldValuePrinter {
395 return StrCat(FieldValuePrinter::PrintUInt32(val), "u");
416 class CustomInt32FieldValuePrinter : public TextFormat::FieldValuePrinter {
419 return StrCat("value-is(", FieldValuePrinter::PrintInt32(val), ")");
446 TextFormat::FieldValuePrinter my_field_printer;
451 class CustomMessageFieldValuePrinter : public TextFormat::FieldValuePrinter {
454 return StrCat(FieldValuePrinter::PrintInt32(v), " # x", ToHex(v));
501 class CustomMultilineCommentPrinter : public TextFormat::FieldValuePrinter {
    [all...]
  /external/protobuf/python/google/protobuf/pyext/
message.cc     [all...]

Completed in 120 milliseconds