Home | History | Annotate | Download | only in binary_heap_

Lines Matching refs:Pred

49     template<typename _VTp, typename Pred, typename _Alloc, bool No_Throw>
53 template<typename _VTp, typename Pred, typename _Alloc>
54 struct entry_pred<_VTp, Pred, _Alloc, true>
56 typedef Pred type;
60 template<typename _VTp, typename Pred, typename _Alloc>
61 struct entry_pred<_VTp, Pred, _Alloc, false>
69 struct type : public Pred
75 type(const Pred& other) : Pred(other) { }
79 { return Pred::operator()(*p_v); }