Home
last modified time | relevance | path

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

/third_party/boost/boost/graph/
Dundirected_dfs.hpp51 typedef color_traits< EColorValue > EColor; in undir_dfv_impl() typedef
77 put(edge_color, *ei, EColor::black()); in undir_dfv_impl()
91 if (uv_color == EColor::white()) in undir_dfv_impl()
134 typedef color_traits< EColorValue > EColor;
145 put(edge_color, *ei, EColor::black());
151 else if (v_color == Color::gray() && uv_color == EColor::white())
/third_party/boost/libs/tti/doc/
Dtti_using_mm.qbk41 enum EColor // as a nested enumeration
154 Does T have a nested type called 'EColor' ?
156 BOOST_TTI_HAS_TYPE(EColor)
210 Does T have a nested enumeration called 'EColor' ?
212 BOOST_TTI_HAS_ENUM(EColor)
/third_party/boost/libs/graph/test/
Dundirected_dfs.cpp122 typedef typename boost::color_traits< EColorValue > EColor; in go() typedef
174 BOOST_TEST(get(e_color, *ei) == EColor::black()); in go()