Home
last modified time | relevance | path

Searched refs:with_what (Results 1 – 11 of 11) sorted by relevance

/third_party/boost/boost/range/algorithm/
Dreplace.hpp31 const Value& with_what) in replace() argument
34 std::replace(boost::begin(rng), boost::end(rng), what, with_what); in replace()
42 const Value& with_what) in replace() argument
45 std::replace(boost::begin(rng), boost::end(rng), what, with_what); in replace()
Dreplace_copy.hpp31 const Value& with_what) in replace_copy() argument
35 what, with_what); in replace_copy()
Dreplace_copy_if.hpp35 const Value& with_what) in replace_copy_if() argument
39 pred, with_what); in replace_copy_if()
/third_party/boost/libs/range/test/algorithm_test/
Dreplace.cpp30 const int with_what = 5; in test_replace_impl() local
33 std::replace(reference.begin(), reference.end(), what, with_what); in test_replace_impl()
36 boost::replace(target, what, with_what); in test_replace_impl()
43 with_what); in test_replace_impl()
Dreplace_if.cpp35 const int with_what = 5; in test_replace_if_impl() local
39 boost::bind(pred, _1, what), with_what); in test_replace_if_impl()
42 boost::replace_if(target, boost::bind(pred, _1, what), with_what); in test_replace_if_impl()
49 boost::bind(pred, _1, what), with_what); in test_replace_if_impl()
/third_party/boost/libs/range/doc/reference/algorithm/
Dreplace_if.qbk12 ForwardRange& replace_if(ForwardRange& rng, UnaryPredicate pred, const Value& with_what);
15 const ForwardRange& replace_if(const ForwardRange& rng, UnaryPredicate pred, const Value& with_what
20 `replace_if` replaces every element `x` in `rng` for which `pred(x) == true` with `with_what`. Retu…
Dreplace.qbk15 ForwardRange& replace(ForwardRange& rng, const Value& what, const Value& with_what);
21 const ForwardRange& replace(const ForwardRange& rng, const Value& what, const Value& with_what);
26 `replace` every element in `rng` equal to `what` with `with_what`. Return a reference to `rng`.
Dreplace_copy.qbk13 const Value& what, const Value& with_what);
18 …n `rng` such that the corresponding element in the output range `y` is `x == what ? with_what : x`.
Dreplace_copy_if.qbk13 UnaryPredicate pred, const Value& with_what);
18 … in `rng` such that the corresponding element in the output range `y` is `pred(x) ? with_what : x`.
/third_party/boost/boost/exception/
Ddiagnostic_information.hpp122 …mation_impl( boost::exception const * be, std::exception const * se, bool with_what, bool verbose ) in diagnostic_information_impl() argument
133 if( with_what && se ) in diagnostic_information_impl()
168 if( with_what && se && verbose ) in diagnostic_information_impl()
/third_party/boost/libs/type_index/patched/
Dboost_exception.patch104 if( with_what && se && verbose )