Searched refs:PrintToString (Results 1 - 25 of 53) sorted by relevance

123

/external/chromium_org/third_party/WebKit/Source/core/animation/animatable/
H A DAnimatableValueTestHelperTest.cpp53 ::std::string PrintToString(PassRefPtrWillBeRawPtr<AnimatableValue> animValue) function in class:__anon11006::AnimationAnimatableValueTestHelperTest
55 return ::testing::PrintToString(*animValue.get());
62 PrintToString(AnimatableClipPathOperation::create(ShapeClipPathOperation::create(BasicShapeCircle::create().get()).get())),
68 PrintToString(AnimatableColor::create(Color(0x000000FF), Color(0xFFFF0000))));
71 PrintToString(const_cast<AnimatableValue*>(AnimatableValue::neutralValue())),
81 PrintToString(AnimatableSVGLength::create(length1cm)));
84 PrintToString(AnimatableShapeValue::create(ShapeValue::createShapeValue(BasicShapeCircle::create().get(), ContentBox).get())),
92 PrintToString(AnimatableStrokeDasharrayList::create(l2)));
98 PrintToString(AnimatableTransform::create(operations1)));
104 PrintToString(AnimatableTransfor
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/geometry/
H A DFloatBoxTestHelpers.cpp73 << " Actual:" << testing::PrintToString(n) << std::endl
75 << " Which is:" << ::testing::PrintToString(m);
86 << " Actual:" << testing::PrintToString(n) << std::endl
88 << " Which is:" << ::testing::PrintToString(m);
H A DFloatRoundedRectTest.cpp59 << ::testing::PrintToString(radii.topLeft()) << ", "
60 << ::testing::PrintToString(radii.topRight()) << ", "
61 << ::testing::PrintToString(radii.bottomRight()) << ", "
62 << ::testing::PrintToString(radii.bottomLeft()) << ")";
68 << ::testing::PrintToString(roundedRect.rect()) << ", "
69 << ::testing::PrintToString(roundedRect.radii()) << ")";
/external/chromium_org/components/invalidation/
H A Dinvalidation_test_util.cc19 using ::testing::PrintToString;
48 *os << " is equal to " << PrintToString(expected_);
52 *os << " isn't equal to " << PrintToString(expected_);
92 *os << " is equal to " << PrintToString(expected_);
96 *os << " isn't equal to " << PrintToString(expected_);
H A Dobject_id_invalidation_map_test_util.cc17 using ::testing::PrintToString;
94 << PrintToString(actual_only);
101 << PrintToString(expected_only);
109 *os << " is equal to " << PrintToString(expected_);
114 *os << " isn't equal to " << PrintToString(expected_);
H A Dunacked_invalidation_set_test_util.cc17 using ::testing::PrintToString;
74 *os << " is equal to " << PrintToString(expected_);
79 *os << " isn't equal to " << PrintToString(expected_);
134 *os << " is equal to " << PrintToString(expected_);
139 *os << " isn't equal to " << PrintToString(expected_);
/external/chromium_org/base/test/
H A Dsequenced_task_runner_test_template.cc162 << ::testing::PrintToString(expected_order) << "; actual: "
163 << ::testing::PrintToString(task_events);
214 << "Found event " << ::testing::PrintToString(*event)
216 << "; event dump: " << ::testing::PrintToString(events);
223 << "Spurious event " << ::testing::PrintToString(*event)
225 << ::testing::PrintToString(events);
247 << ::testing::PrintToString(post_order)
249 << ::testing::PrintToString(start_order);
255 << ::testing::PrintToString(post_order)
257 << ::testing::PrintToString(end_orde
[all...]
H A Dtest_pending_task_unittest.cc36 EXPECT_THAT(::testing::PrintToString(task),
/external/chromium_org/cc/output/
H A Dbegin_frame_args_unittest.cc52 ::testing::PrintToString(args1));
54 ::testing::PrintToString(args2));
/external/chromium_org/ui/base/ime/win/
H A Dimm32_manager_unittest.cc21 *os << " input_mode: " << testing::PrintToString(data.input_mode)
22 << "; conversion_mode: " << testing::PrintToString(data.conversion_mode);
H A Dtsf_input_scope_unittest.cc23 *os << " input_type: " << testing::PrintToString(data.input_type)
24 << "; input_mode: " << testing::PrintToString(data.input_mode);
/external/chromium_org/media/midi/
H A Dmidi_message_queue_unittest.cc41 << "expected: " << ::testing::PrintToString(expected)
42 << ", actual: " << ::testing::PrintToString(actual);
47 << "expected: " << ::testing::PrintToString(expected)
48 << ", actual: " << ::testing::PrintToString(actual);
/external/protobuf/src/google/protobuf/
H A Dtext_format.h70 static bool PrintToString(const Message& message, string* output);
97 // Like TextFormat::PrintToString
98 bool PrintToString(const Message& message, string* output);
H A Dtext_format.cc58 TextFormat::PrintToString(*this, &debug_string);
69 printer.PrintToString(*this, &debug_string);
85 printer.PrintToString(*this, &debug_string);
855 bool TextFormat::Printer::PrintToString(const Message& message, function in class:google::protobuf::TextFormat::Printer
1108 /* static */ bool TextFormat::PrintToString( function in class:google::protobuf::TextFormat
1110 return Printer().PrintToString(message, output);
H A Dtext_format_unittest.cc155 printer.PrintToString(proto_, &text);
168 printer.PrintToString(proto_, &text);
312 EXPECT_TRUE(printer.PrintToString(message, &text));
335 EXPECT_TRUE(printer.PrintToString(message, &text));
/external/chromium_org/third_party/protobuf/src/google/protobuf/
H A Dtext_format.h73 static bool PrintToString(const Message& message, string* output);
100 // Like TextFormat::PrintToString
101 bool PrintToString(const Message& message, string* output) const;
H A Dtext_format.cc61 TextFormat::PrintToString(*this, &debug_string);
72 printer.PrintToString(*this, &debug_string);
88 printer.PrintToString(*this, &debug_string);
1134 bool TextFormat::Printer::PrintToString(const Message& message, function in class:google::protobuf::TextFormat::Printer
1388 /* static */ bool TextFormat::PrintToString( function in class:google::protobuf::TextFormat
1390 return Printer().PrintToString(message, output);
H A Dtext_format_unittest.cc155 printer.PrintToString(proto_, &text);
168 printer.PrintToString(proto_, &text);
312 EXPECT_TRUE(printer.PrintToString(message, &text));
335 EXPECT_TRUE(printer.PrintToString(message, &text));
/external/chromium_org/testing/gtest/test/
H A Dgtest-param-test_test.cc807 EXPECT_EQ(::testing::PrintToString(GetParam()), test_info->value_param());
830 EXPECT_EQ(::testing::PrintToString(GetParam()), test_info->value_param());
H A Dgtest-printers_test.cc200 using ::testing::PrintToString;
1457 // Useful for testing PrintToString(). We cannot use EXPECT_EQ()
1458 // there as its implementation uses PrintToString(). The caller must
1461 EXPECT_TRUE(PrintToString(value) == (expected_string)) \
1462 << " where " #value " prints as " << (PrintToString(value))
/external/gtest/test/
H A Dgtest-param-test_test.cc807 EXPECT_EQ(::testing::PrintToString(GetParam()), test_info->value_param());
830 EXPECT_EQ(::testing::PrintToString(GetParam()), test_info->value_param());
H A Dgtest-printers_test.cc199 using ::testing::PrintToString;
1409 // Useful for testing PrintToString(). We cannot use EXPECT_EQ()
1410 // there as its implementation uses PrintToString(). The caller must
1413 EXPECT_TRUE(PrintToString(value) == (expected_string)) \
1414 << " where " #value " prints as " << (PrintToString(value))
/external/chromium_org/third_party/WebKit/Source/web/tests/
H A DPinchViewportTest.cpp73 using ::testing::PrintToString;
825 + PrintToString(x) + ", " + PrintToString(y) + "]")
/external/chromium_org/testing/gtest/include/gtest/
H A Dgtest.h1382 return ::testing::PrintToString(value);
1403 return ::testing::PrintToString(static_cast<const void*>(value)); \
1422 return ::testing::PrintToString(value); \
/external/gtest/include/gtest/
H A Dgtest.h1358 return ::testing::PrintToString(value);
1379 return ::testing::PrintToString(static_cast<const void*>(value)); \
1398 return ::testing::PrintToString(value); \

Completed in 821 milliseconds

123