Lines Matching defs:out
24 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
561 EXPECT_THROW_MSG(format("{0}"), FormatError, "argument index out of range");
568 "argument index out of range");
596 FormatError, "argument index out of range");
598 FormatError, "argument index out of range");
602 FormatError, "argument index out of range");
638 EXPECT_THROW_MSG(format("{}"), FormatError, "argument index out of range");
924 FormatError, "argument index out of range");
1043 FormatError, "argument index out of range");
1415 MemoryWriter out;
1416 out << "The answer is " << 42 << "\n";
1417 out.write("({:+f}, {:+f})", -3.14, 3.14);
1418 EXPECT_EQ("The answer is 42\n(-3.140000, +3.140000)", out.str());