Searched refs:StrStream (Results 1 - 6 of 6) sorted by relevance

/external/protobuf/gtest/include/gtest/
H A Dgtest-message.h59 // It will remember the text in a StrStream.
75 // Note that StrStream behaves differently in gcc and in MSVC. You
88 // We allocate the StrStream separately because it otherwise each use of
92 Message() : ss_(new internal::StrStream) {}
95 Message(const Message& msg) : ss_(new internal::StrStream) { // NOLINT
100 explicit Message(const char* str) : ss_(new internal::StrStream) {
210 internal::StrStream* const ss_;
H A Dgtest.h1423 StrStream expected_ss;
1427 StrStream actual_ss;
/external/protobuf/gtest/test/
H A Dgtest-message_test.cc41 using ::testing::internal::StrStream;
147 StrStream ss;
/external/protobuf/gtest/include/gtest/internal/
H A Dgtest-string.h330 // Gets the content of the StrStream's buffer as a String. Each '\0'
332 String StrStreamToString(StrStream* stream);
H A Dgtest-port.h575 typedef ::std::stringstream StrStream; typedef in namespace:testing::internal
577 typedef ::std::strstream StrStream; typedef in namespace:testing::internal
/external/protobuf/gtest/src/
H A Dgtest.cc1055 StrStream val1_ss;
1059 StrStream val2_ss;
1493 StrStream stream;
1718 // Converts the buffer in a StrStream to a String, converting NUL
1720 String StrStreamToString(StrStream* ss) {
1730 // We need to use a helper StrStream to do this transformation
1732 StrStream helper;
3237 StrStream stream;

Completed in 776 milliseconds