Home
last modified time | relevance | path

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

/external/libchrome/dbus/
Dmock_unittest.cc99 std::string text_message; in CreateMockProxyResponse() local
100 if (reader.PopString(&text_message)) { in CreateMockProxyResponse()
103 writer.AppendString(text_message); in CreateMockProxyResponse()
161 std::string text_message; in TEST_F() local
162 ASSERT_TRUE(reader.PopString(&text_message)); in TEST_F()
164 EXPECT_EQ(kHello, text_message); in TEST_F()
/external/tensorflow/tensorflow/core/platform/
Dlogging_test.cc106 ss_ << entry.text_message() << std::endl; in Send()
/external/protobuf/python/google/protobuf/internal/
Dtext_format_test.py281 text_message = text_format.MessageToString(message, float_format='.15g')
283 self.RemoveRedundantZeros(text_message),
287 text_message = text_format.MessageToString(message,
291 self.RemoveRedundantZeros(text_message),
302 text_message = text_format.MessageToString(message, float_format='.7g',
305 self.RemoveRedundantZeros(text_message),
313 text_message = text_format.MessageToString(message, float_format='.7g')
315 self.RemoveRedundantZeros(text_message),
325 text_message = text_format.MessageToString(message)
327 self.RemoveRedundantZeros(text_message),
/external/tensorflow/tensorflow/core/platform/default/
Dlogging.h500 absl::string_view text_message() const { return message_; } in text_message() function