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