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

  /external/gtest/include/gtest/
gtest-message.h 59 // 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_;
gtest.h     [all...]
  /external/gtest/test/
gtest-message_test.cc 41 using ::testing::internal::StrStream;
147 StrStream ss;
  /external/gtest/include/gtest/internal/
gtest-string.h 89 // 2. In MSVC, streaming a null char pointer to StrStream generates
317 // Gets the content of the StrStream's buffer as a String. Each '\0'
319 String StrStreamToString(StrStream* stream);
gtest-port.h 284 #include <strstream> // NOLINT
480 // std::strstream is deprecated. However, we have to use it on
485 typedef ::std::stringstream StrStream;
487 typedef ::std::strstream StrStream;
  /external/gtest/src/
gtest.cc     [all...]

Completed in 194 milliseconds