Lines Matching refs:cout
43 mPassed = std::cout.precision() == 6; in A()
56 EXPECT_TRUE(std::cout.precision() == 6); in testOstream()
59 std::cout.precision(20); in testOstream()
62 EXPECT_TRUE(std::cout.precision() == 20); in testOstream()
65 std::cout.precision(6); in testOstream()
71 std::cout << "Hi from stdout\n"; in testCoutCerr()
77 std::cout << "line 1" << std::endl in testManip()
84 using std::cout; in testOutputFormat()
86 cout << endl << "Int: " << numeric_limits<int>::max() << endl; in testOutputFormat()
87 cout << "Negative int: " << numeric_limits<int>::min() << endl; in testOutputFormat()
88 cout << "Unsigned int: " << numeric_limits<unsigned int>::max() << endl; in testOutputFormat()
89 cout << "Long: " << numeric_limits<long>::max() << endl; in testOutputFormat()
90 cout << "Negative long: " << numeric_limits<long>::min() << endl; in testOutputFormat()
91 cout << "Unsigned long int: " << numeric_limits<unsigned long>::max() << endl; in testOutputFormat()
92 cout << "Long long: " << numeric_limits<long long>::max() << endl; in testOutputFormat()
93 cout << "Negative long long: " << numeric_limits<long long>::min() << endl; in testOutputFormat()
94 cout << "Unsigned long long: " << numeric_limits<unsigned long long>::max() << endl; in testOutputFormat()
96 cout.precision(std::numeric_limits<double>::digits10); in testOutputFormat()
97 cout << "Double: " << numeric_limits<double>::max() << endl; in testOutputFormat()
98 cout << "Negative double: " << numeric_limits<double>::min() << endl; in testOutputFormat()
99 cout << "Float: " << numeric_limits<float>::max() << endl; in testOutputFormat()
100 cout << "Negative float: " << numeric_limits<float>::min() << endl; in testOutputFormat()
102 cout << "Void *: " << static_cast<void*>(&std::cout) << endl; in testOutputFormat()
103 cout << "NULL *: " << static_cast<void*>(0) << endl; in testOutputFormat()
104 cout << "bool: " << true << " " << false << endl; in testOutputFormat()
105 cout << "char: " << 'A' << endl; in testOutputFormat()
106 cout << "string: " << std::string("hello world") << endl; in testOutputFormat()