Searched defs:TrackingPred (Results 1 – 8 of 8) sorted by relevance
103 struct TrackingPred { in testOne() struct104 constexpr explicit TrackingPred(bool* moved, bool* copied) : moved_(moved), copied_(copied) {} in testOne() argument105 … constexpr TrackingPred(TrackingPred const& other) : moved_(other.moved_), copied_(other.copied_) { in testOne() argument108 …constexpr TrackingPred(TrackingPred&& other) : moved_(other.moved_), copied_(other.copied_) { *mov… in testOne() function112 constexpr bool operator()(int i) const { return i < 3; } in testOne()113 bool* moved_; in testOne()114 bool* copied_; in testOne()
40 struct TrackingPred : TrackInitialization { struct42 constexpr bool operator()(int x, int y) const { return x <= y; } in operator ()()
30 struct TrackingPred : TrackInitialization { struct32 constexpr bool operator()(int x, int y) const { return x <= y; } in operator ()()
31 struct TrackingPred : TrackInitialization { struct33 constexpr bool operator()(int i) const { return i == 1; } in operator ()()
35 struct TrackingPred : TrackInitialization { struct43 static_assert(HasBegin<std::ranges::chunk_by_view<Range, TrackingPred>>); argument
41 struct TrackingPred : TrackInitialization { struct
35 struct TrackingPred : TrackInitialization { struct
45 struct TrackingPred : TrackInitialization { struct47 constexpr bool operator()(int i) const { return i % 2 == 0; } in operator ()()