Lines Matching defs:input
631 // that was created by calling float_fractions with the input fractions,
1111 std::stringstream input(GetParam().literal);
1113 ParseNormalFloat(input, GetParam().negate_value, parsed_value);
1114 EXPECT_NE(GetParam().expect_success, input.fail())
1178 std::stringstream input(GetParam().literal);
1180 ParseNormalFloat(input, GetParam().negate_value, parsed_value);
1181 EXPECT_NE(GetParam().expect_success, input.fail())
1220 std::string input;
1229 std::istringstream input(GetParam().input);
1231 input >> value;
1232 EXPECT_NE(GetParam().expect_success, input.fail());
1256 std::istringstream input(GetParam().input);
1258 input >> value;
1259 EXPECT_NE(GetParam().expect_success, input.fail());
1283 std::istringstream input(GetParam().input);
1285 input >> value;
1286 EXPECT_NE(GetParam().expect_success, input.fail())
1287 << " literal: " << GetParam().input;
1290 << " literal: " << GetParam().input;
1356 std::stringstream input(GetParam().literal);
1358 // Hex floats must be read with the stream input operator.
1359 input >> parsed_value;
1361 EXPECT_FALSE(input.fail());
1363 input >> suffix;
1368 EXPECT_TRUE(input.fail());
1389 std::stringstream input(GetParam().literal);
1391 // Hex floats must be read with the stream input operator.
1392 input >> parsed_value;
1394 EXPECT_FALSE(input.fail());
1396 input >> suffix;
1402 EXPECT_TRUE(input.fail());