HomeSort by relevance Sort by last modified time
    Searched full:is_base_of (Results 76 - 100 of 274) sorted by null

1 2 34 5 6 7 8 91011

  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/diagnostics/std.exceptions/out.of.range/
out_of_range.pass.cpp 20 static_assert((std::is_base_of<std::logic_error, std::out_of_range>::value),
21 "std::is_base_of<std::logic_error, std::out_of_range>::value");
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/diagnostics/std.exceptions/overflow.error/
overflow_error.pass.cpp 20 static_assert((std::is_base_of<std::runtime_error, std::overflow_error>::value),
21 "std::is_base_of<std::runtime_error, std::overflow_error>::value");
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/diagnostics/std.exceptions/range.error/
range_error.pass.cpp 20 static_assert((std::is_base_of<std::runtime_error, std::range_error>::value),
21 "std::is_base_of<std::runtime_error, std::range_error>::value");
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/diagnostics/std.exceptions/runtime.error/
runtime_error.pass.cpp 20 static_assert((std::is_base_of<std::exception, std::runtime_error>::value),
21 "std::is_base_of<std::exception, std::runtime_error>::value");
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/diagnostics/std.exceptions/underflow.error/
underflow_error.pass.cpp 20 static_assert((std::is_base_of<std::runtime_error, std::underflow_error>::value),
21 "std::is_base_of<std::runtime_error, std::underflow_error>::value");
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostream.format/input.streams/iostreamclass/
types.pass.cpp 30 static_assert((std::is_base_of<std::basic_istream<char>, std::basic_iostream<char> >::value), "");
31 static_assert((std::is_base_of<std::basic_ostream<char>, std::basic_iostream<char> >::value), "");
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locale.categories/category.collate/locale.collate/
types.pass.cpp 37 static_assert((std::is_base_of<std::locale::facet, std::collate<char> >::value), "");
47 static_assert((std::is_base_of<std::locale::facet, std::collate<wchar_t> >::value), "");
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locale.categories/category.ctype/locale.codecvt/
types_char.pass.cpp 31 static_assert((std::is_base_of<std::locale::facet, F>::value), "");
32 static_assert((std::is_base_of<std::codecvt_base, F>::value), "");
types_char16_t.pass.cpp 32 static_assert((std::is_base_of<std::locale::facet, F>::value), "");
33 static_assert((std::is_base_of<std::codecvt_base, F>::value), "");
types_char32_t.pass.cpp 32 static_assert((std::is_base_of<std::locale::facet, F>::value), "");
33 static_assert((std::is_base_of<std::codecvt_base, F>::value), "");
types_wchar_t.pass.cpp 31 static_assert((std::is_base_of<std::locale::facet, F>::value), "");
32 static_assert((std::is_base_of<std::codecvt_base, F>::value), "");
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locale.categories/category.monetary/locale.money.get/
types.pass.cpp 26 static_assert((std::is_base_of<std::locale::facet, std::money_get<char> >::value), "");
27 static_assert((std::is_base_of<std::locale::facet, std::money_get<wchar_t> >::value), "");
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locale.categories/category.monetary/locale.money.put/
types.pass.cpp 26 static_assert((std::is_base_of<std::locale::facet, std::money_put<char> >::value), "");
27 static_assert((std::is_base_of<std::locale::facet, std::money_put<wchar_t> >::value), "");
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locale.categories/facet.numpunct/locale.numpunct/
types.pass.cpp 36 static_assert((std::is_base_of<std::locale::facet, std::numpunct<char> >::value), "");
46 static_assert((std::is_base_of<std::locale::facet, std::numpunct<wchar_t> >::value), "");
  /external/libcxx/include/
exception 195 !is_base_of<nested_exception, typename remove_reference<_Tp>::type>::value
199 is_class<_Tp>::value && !is_base_of<nested_exception, _Tp>::value
214 is_base_of<nested_exception, typename remove_reference<_Tp>::type>::value
218 !is_class<_Tp>::value || is_base_of<nested_exception, _Tp>::value
  /external/libcxx/test/std/depr/depr.function.objects/depr.adaptors/depr.function.pointer.adaptors/
pointer_to_binary_function.pass.cpp 23 static_assert((std::is_base_of<std::binary_function<int, short, double>, F>::value), "");
pointer_to_unary_function.pass.cpp 23 static_assert((std::is_base_of<std::unary_function<int, double>, F>::value), "");
  /external/libcxx/test/std/depr/depr.str.strstreams/depr.istrstream/
types.pass.cpp 22 static_assert((std::is_base_of<std::istream, std::istrstream>::value), "");
  /external/libcxx/test/std/depr/depr.str.strstreams/depr.ostrstream/
types.pass.cpp 22 static_assert((std::is_base_of<std::ostream, std::ostrstream>::value), "");
  /external/libcxx/test/std/depr/depr.str.strstreams/depr.strstreambuf/
types.pass.cpp 20 static_assert((std::is_base_of<std::streambuf, std::strstreambuf>::value), "");
  /external/libcxx/test/std/experimental/optional/optional.bad_optional_access/
derive.pass.cpp 22 static_assert(std::is_base_of<std::logic_error, bad_optional_access>::value, "");
  /external/libcxx/test/std/iterators/iterator.primitives/std.iterator.tags/
input_iterator_tag.pass.cpp 20 static_assert((!std::is_base_of<std::output_iterator_tag,
output_iterator_tag.pass.cpp 20 static_assert((!std::is_base_of<std::input_iterator_tag,
  /external/libcxx/test/std/utilities/function.objects/func.wrap/func.wrap.badcall/
bad_function_call.pass.cpp 25 static_assert((std::is_base_of<std::exception, std::bad_function_call>::value), "");
  /external/libcxx/test/std/utilities/memory/util.smartptr/util.smartptr.weakptr/
bad_weak_ptr.pass.cpp 26 static_assert((std::is_base_of<std::exception, std::bad_weak_ptr>::value), "");

Completed in 510 milliseconds

1 2 34 5 6 7 8 91011