Home
last modified time | relevance | path

Searched refs:bad_graphviz_syntax (Results 1 – 3 of 3) sorted by relevance

/third_party/boost/libs/graph/doc/
Dread_graphviz.rst98 struct bad_graphviz_syntax: public graph_exception {
101 bad_graphviz_syntax(const std::string&);
102 virtual ~bad_graphviz_syntax() throw();
130 The ``bad_graphviz_syntax`` exception occurs when the graph input is not a
/third_party/boost/libs/graph/src/
Dread_graphviz_new.cpp176 bad_graphviz_syntax lex_error(const std::string& errmsg, char bad_char) in lex_error()
180 return bad_graphviz_syntax(errmsg + " (at end of input)"); in lex_error()
184 return bad_graphviz_syntax( in lex_error()
189 bad_graphviz_syntax parse_error( in parse_error()
192 return bad_graphviz_syntax(errmsg + " (token is \"" in parse_error()
/third_party/boost/boost/graph/
Dgraphviz.hpp699 struct BOOST_SYMBOL_VISIBLE bad_graphviz_syntax : public graph_exception struct
702 bad_graphviz_syntax(const std::string& errmsg) : errmsg(errmsg) {} in bad_graphviz_syntax() function
704 ~bad_graphviz_syntax() throw() {}; in ~bad_graphviz_syntax() argument