Searched refs:with_what (Results 1 – 11 of 11) sorted by relevance
/third_party/boost/boost/range/algorithm/ |
D | replace.hpp | 31 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()
|
D | replace_copy.hpp | 31 const Value& with_what) in replace_copy() argument 35 what, with_what); in replace_copy()
|
D | replace_copy_if.hpp | 35 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/ |
D | replace.cpp | 30 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()
|
D | replace_if.cpp | 35 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/ |
D | replace_if.qbk | 12 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…
|
D | replace.qbk | 15 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`.
|
D | replace_copy.qbk | 13 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`.
|
D | replace_copy_if.qbk | 13 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/ |
D | diagnostic_information.hpp | 122 …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/ |
D | boost_exception.patch | 104 if( with_what && se && verbose )
|