Home
last modified time | relevance | path

Searched refs:FieldValuePrinter (Results 1 – 4 of 4) sorted by relevance

/external/protobuf/src/google/protobuf/
Dtext_format.h159 "Please use FastFieldValuePrinter") FieldValuePrinter {
161 FieldValuePrinter();
162 virtual ~FieldValuePrinter();
185 GOOGLE_DISALLOW_EVIL_CONSTRUCTORS(FieldValuePrinter);
292 void SetDefaultFieldValuePrinter(const FieldValuePrinter* printer);
343 const FieldValuePrinter* printer);
Dtext_format.cc1539 TextFormat::FieldValuePrinter::FieldValuePrinter() {} in FieldValuePrinter() function in google::protobuf::TextFormat::FieldValuePrinter
1540 TextFormat::FieldValuePrinter::~FieldValuePrinter() {} in ~FieldValuePrinter()
1554 std::string TextFormat::FieldValuePrinter::PrintBool(bool val) const { in PrintBool()
1557 std::string TextFormat::FieldValuePrinter::PrintInt32(int32 val) const { in PrintInt32()
1560 std::string TextFormat::FieldValuePrinter::PrintUInt32(uint32 val) const { in PrintUInt32()
1563 std::string TextFormat::FieldValuePrinter::PrintInt64(int64 val) const { in PrintInt64()
1566 std::string TextFormat::FieldValuePrinter::PrintUInt64(uint64 val) const { in PrintUInt64()
1569 std::string TextFormat::FieldValuePrinter::PrintFloat(float val) const { in PrintFloat()
1572 std::string TextFormat::FieldValuePrinter::PrintDouble(double val) const { in PrintDouble()
1575 std::string TextFormat::FieldValuePrinter::PrintString( in PrintString()
[all …]
Dtext_format_unittest.cc419 class CustomUInt32FieldValuePrinter : public TextFormat::FieldValuePrinter {
422 return StrCat(FieldValuePrinter::PrintUInt32(val), "u"); in PrintUInt32()
443 class CustomInt32FieldValuePrinter : public TextFormat::FieldValuePrinter {
446 return StrCat("value-is(", FieldValuePrinter::PrintInt32(val), ")"); in PrintInt32()
472 const TextFormat::FieldValuePrinter* const rejected = in TEST_F()
484 static_cast<const TextFormat::FieldValuePrinter*>(nullptr))); in TEST_F()
489 TextFormat::FieldValuePrinter my_field_printer; in TEST_F()
494 class CustomMessageFieldValuePrinter : public TextFormat::FieldValuePrinter {
497 return StrCat(FieldValuePrinter::PrintInt32(v), " # x", in PrintInt32()
544 class CustomMultilineCommentPrinter : public TextFormat::FieldValuePrinter {
/external/protobuf/python/google/protobuf/pyext/
Dmessage.cc1779 class PythonFieldValuePrinter : public TextFormat::FieldValuePrinter {