Home | History | Annotate | Download | only in TableGen

Lines Matching refs:Content

2654   // If there is content, print that as well.
2655 std::string ContentStr = DocCategory->getValueAsString("Content");
2658 StringRef Content(ContentStr);
2659 while (Content.startswith("\r") || Content.startswith("\n") ||
2660 Content.startswith(" ") || Content.startswith("\t"))
2661 Content = Content.substr(1);
2662 while (Content.endswith("\r") || Content.endswith("\n") ||
2663 Content.endswith(" ") || Content.endswith("\t"))
2664 Content = Content.substr(0, Content.size() - 1);
2665 OS << Content;
2786 std::string ContentStr = Doc.Documentation->getValueAsString("Content");
2788 StringRef Content(ContentStr);
2789 while (Content.startswith("\r") || Content.startswith("\n") ||
2790 Content.startswith(" ") || Content.startswith("\t"))
2791 Content = Content.substr(1);
2792 while (Content.endswith("\r") || Content.endswith("\n") ||
2793 Content.endswith(" ") || Content.endswith("\t"))
2794 Content = Content.substr(0, Content.size() - 1);
2795 OS << Content;