#include <jlm/util/GraphWriter.hpp>
#include <jlm/util/strfmt.hpp>
#include <ostream>
#include <string_view>
Go to the source code of this file.
|
| static bool | jlm::util::graph::looksLikeIdentifier (std::string_view string) |
| |
| static void | jlm::util::graph::printIdentifierSafe (std::ostream &out, std::string_view string) |
| |
| static void | jlm::util::graph::printStringAsHtmlText (std::ostream &out, std::string_view string, bool replaceNewlines) |
| |
| static void | jlm::util::graph::printStringAsHtmlAttributeName (std::ostream &out, std::string_view string) |
| |
| static void | jlm::util::graph::printJsonString (std::ostream &out, std::string_view string) |
| |
| std::ostream & | jlm::util::graph::withIndent (std::ostream &out, size_t indent) |
| |
| static void | jlm::util::graph::outputKeyValuePair (std::ostream &out, std::string_view name, std::string_view value, AttributeOutputFormat format) |
| |
| static std::ostream & | jlm::util::graph::printNextJsonField (std::ostream &out, std::string_view name, size_t indent, bool &firstField) |
| |
| template<typename T > |
| static void | jlm::util::graph::printJsonElementMap (std::ostream &out, size_t indent, const T &elements) |
| |
| static void | jlm::util::graph::outputJsonObjectClosing (std::ostream &out, size_t indent, bool firstField) |
| |