• Home
  • Raw
  • Download

Lines Matching refs:ill_formed

212     !ill_formed<writable_iter_t, decltype(std::declval<arr_type &>().begin())>::
216 !ill_formed<writable_iter_t, decltype(std::declval<arr_type &>().end())>::
221 ill_formed<
226 ill_formed<
231 ill_formed<writable_iter_t, decltype(std::declval<arr_type &>().cbegin())>::
235 ill_formed<writable_iter_t, decltype(std::declval<arr_type &>().cend())>::
240 ill_formed<
245 ill_formed<
250 ill_formed<
255 ill_formed<writable_iter_t, decltype(std::declval<arr_type &>().crend())>::
381 static_assert(ill_formed<lvalue_push_front_t, arr_type>::value, "");
382 static_assert(ill_formed<rvalue_push_front_t, arr_type>::value, "");
383 static_assert(ill_formed<pop_front_t, arr_type>::value, "");
387 static_assert(!ill_formed<lvalue_push_front_t, std_deq_int>::value, "");
388 static_assert(!ill_formed<rvalue_push_front_t, std_deq_int>::value, "");
389 static_assert(!ill_formed<pop_front_t, std_deq_int>::value, "");
404 static_assert(ill_formed<lvalue_push_back_t, arr_type>::value, "");
405 static_assert(ill_formed<rvalue_push_back_t, arr_type>::value, "");
406 static_assert(ill_formed<pop_back_t, arr_type>::value, "");
410 static_assert(!ill_formed<lvalue_push_back_t, std_vec_int>::value, "");
411 static_assert(!ill_formed<rvalue_push_back_t, std_vec_int>::value, "");
412 static_assert(!ill_formed<pop_back_t, std_vec_int>::value, "");
500 static_assert(ill_formed<resize_t, arr_type>::value, "");
502 static_assert(!ill_formed<resize_t, std_vec_int>::value, "");
525 static_assert(ill_formed<lvalue_insert_t, arr_type>::value, "");
526 static_assert(ill_formed<rvalue_insert_t, arr_type>::value, "");
532 static_assert(ill_formed<insert_n_t, arr_type>::value, "");
535 static_assert(ill_formed<insert_il_t, arr_type>::value, "");
537 static_assert(!ill_formed<lvalue_insert_t, std_vec_int>::value, "");
538 static_assert(!ill_formed<rvalue_insert_t, std_vec_int>::value, "");
539 static_assert(!ill_formed<insert_n_t, std_vec_int>::value, "");
540 static_assert(!ill_formed<insert_il_t, std_vec_int>::value, "");
547 static_assert(ill_formed<erase_t, arr_type>::value, "");
549 static_assert(!ill_formed<erase_t, std_vec_int>::value, "");
564 static_assert(ill_formed<assign_t, arr_type>::value, "");
565 static_assert(ill_formed<assign_n_t, arr_type>::value, "");
566 static_assert(ill_formed<assign_il_t, arr_type>::value, "");
567 static_assert(ill_formed<assignment_operator_il_t, arr_type>::value, "");
569 static_assert(!ill_formed<assign_t, std_vec_int>::value, "");
570 static_assert(!ill_formed<assign_n_t, std_vec_int>::value, "");
571 static_assert(!ill_formed<assign_il_t, std_vec_int>::value, "");
572 static_assert(!ill_formed<assignment_operator_il_t, std_vec_int>::value, "");
577 static_assert(ill_formed<clear_t, arr_type>::value, "");
579 static_assert(!ill_formed<clear_t, std_vec_int>::value, "");