Lines Matching defs:boost
24 namespace clang::tidy::boost {
27 /// Base replacer that handles the boost include path and namespace
47 return ("boost::" + Namespace + (Namespace.empty() ? "" : "::") + Function)
54 return ((IncludeSystem ? "<boost/" : "boost/") + Path +
66 /// `boost/algorithm/<FUNC_NAME>.hpp` and the function is named
67 /// `boost::range::<FUNC_NAME>`
84 /// `boost/algorithm/<CUSTOM_HEADER>.hpp` and the function is named
85 /// `boost::range::<FUNC_NAME>`
104 /// `boost/algorithm/<SUB_HEADER>.hpp` and the function is named
105 /// `boost::algorithm::<FUNC_NAME>`
128 /// `boost/algorithm/<SUB_HEADER>/<HEADER_NAME>.hpp` and the function is named
129 /// `boost::algorithm::<FUNC_NAME>`
178 /// root boost namespace
230 SmallString<64>{"boost", (Namespace.empty() ? "" : "::"),
346 D << (Call.getDirectCallee()->isInStdNamespace() ? "boost" : "ranged");
354 {"::boost::range_adl_barrier::begin", "::boost::range_adl_barrier::end"},
355 {"::boost::range_adl_barrier::const_begin",
356 "::boost::range_adl_barrier::const_end"},
365 {"::boost::rbegin", "::boost::rend"},
366 {"::boost::const_rbegin", "::boost::const_rend"},
369 UseReversePipe ? "boost::adaptors::reversed" : "boost::adaptors::reverse",
370 IncludeBoostSystem ? "<boost/range/adaptor/reversed.hpp>"
371 : "boost/range/adaptor/reversed.hpp",
374 } // namespace clang::tidy::boost