Home
last modified time | relevance | path

Searched refs:FormatInternal (Results 1 – 5 of 5) sorted by relevance

/third_party/protobuf/src/google/protobuf/io/
Dprinter_unittest.cc601 TEST(Printer, FormatInternal) { in TEST() argument
612 printer.FormatInternal(args, vars, "$1$ $2$"); in TEST()
622 printer.FormatInternal({}, vars, "$foo$$ baz$$ empty$"); in TEST()
632 printer.FormatInternal({}, vars, "$empty $$foo $$baz$"); in TEST()
642 printer.FormatInternal(args, vars, "$empty $$1$ $foo $$2$ $baz$"); in TEST()
655 printer.FormatInternal(args, vars, "$empty $\n\n$1$ $foo $$2$\n$baz$"); in TEST()
674 printer.FormatInternal(args, vars, "$empty $\n\n${1$$2$$}$ $3$\n$baz$"); in TEST()
693 EXPECT_DEATH(printer.FormatInternal(args, vars, "$empty $$1$"), "Unused"); in TEST()
700 EXPECT_DEATH(printer.FormatInternal(args, vars, "$2$ $1$"), "order"); in TEST()
707 EXPECT_DEATH(printer.FormatInternal(args, vars, "$0$"), "failed"); in TEST()
[all …]
Dprinter.h282 void FormatInternal(const std::vector<std::string>& args,
Dprinter.cc277 void Printer::FormatInternal(const std::vector<std::string>& args, in FormatInternal() function in google::protobuf::io::Printer
/third_party/protobuf/
Dlibprotobuf.map52 …"google::protobuf::io::Printer::FormatInternal(std::vector<std::__cxx11::basic_string<char, std::c…
148 …"google::protobuf::io::Printer::FormatInternal(std::__1::vector<std::__1::basic_string<char, std::…
/third_party/protobuf/src/google/protobuf/compiler/cpp/
Dcpp_helpers.h706 printer_->FormatInternal({ToString(args)...}, vars_, format); in operator()