reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

unittests/Support/YAMLIOTest.cpp
 1108       out << value.str;
 1112       value.str = scalar.str();
 1128     map.name.str = "An Item";
 1129     map.description.str = "Hello\nWorld";
 1130     map.ingredients.str = "SubItem 1\nSub Item 2\n\nSub Item 3\n";
 1131     map.recipes.str = "\n\nTest 1\n\n\n";
 1132     map.warningLabels.str = "";
 1133     map.documentation.str = "\n\n";
 1146     EXPECT_EQ(map2.name.str, "An Item\n");
 1147     EXPECT_EQ(map2.description.str, "Hello\nWorld\n");
 1148     EXPECT_EQ(map2.ingredients.str, "SubItem 1\nSub Item 2\n\nSub Item 3\n");
 1149     EXPECT_EQ(map2.recipes.str, "\n\nTest 1\n");
 1150     EXPECT_TRUE(map2.warningLabels.str.empty());
 1151     EXPECT_TRUE(map2.documentation.str.empty());
 1164     doc.str = "Hello\nWorld";
 1182     EXPECT_EQ(documents2[0].str, "Hello\nWorld\n");
 1190     doc.str = "Just a block\nscalar doc";
 1202     EXPECT_EQ(doc.str, "Just a block\nscalar doc\n");