Home | History | Annotate | Download | only in support

Lines Matching refs:Arity

267 template <class Alloc, size_t Arity>
268 class UsesAllocatorV1 : public UsesAllocatorTestBase<UsesAllocatorV1<Alloc, Arity>, Alloc>
283 template <class ...Args, EnableIfB<sizeof...(Args) == Arity> = false>
293 template <class First, class ...Args, EnableIfB<sizeof...(Args) == Arity> Dummy = false>
301 template <class Alloc, size_t Arity>
302 class UsesAllocatorV2 : public UsesAllocatorTestBase<UsesAllocatorV2<Alloc, Arity>, Alloc>
317 template <class ...Args, EnableIfB<sizeof...(Args) == Arity> = false>
321 template <class ...Args, EnableIfB<sizeof...(Args) == Arity + 1> = false>
327 template <class Alloc, size_t Arity>
328 class UsesAllocatorV3 : public UsesAllocatorTestBase<UsesAllocatorV3<Alloc, Arity>, Alloc>
343 template <class ...Args, EnableIfB<sizeof...(Args) == Arity> = false>
353 template <class ...Args, EnableIfB<sizeof...(Args) == Arity + 1> = false>
359 template <class Alloc, size_t Arity>
360 class NotUsesAllocator : public UsesAllocatorTestBase<NotUsesAllocator<Alloc, Arity>, Alloc>
374 template <class ...Args, EnableIfB<sizeof...(Args) == Arity> = false>
384 template <class ...Args, EnableIfB<sizeof...(Args) == Arity + 1> = false>