HomeSort by relevance Sort by last modified time
    Searched refs:is_same (Results 201 - 225 of 1584) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/libcxx/test/std/re/re.syn/
ssub_match.pass.cpp 20 static_assert((std::is_same<std::sub_match<std::string::const_iterator>, std::ssub_match>::value), "");
wcmatch.pass.cpp 20 static_assert((std::is_same<std::match_results<const wchar_t*>, std::wcmatch>::value), "");
wcregex_iterator.pass.cpp 20 static_assert((std::is_same<std::regex_iterator<const wchar_t*>, std::wcregex_iterator>::value), "");
wcregex_token_iterator.pass.cpp 20 static_assert((std::is_same<std::regex_token_iterator<const wchar_t*>, std::wcregex_token_iterator>::value), "");
wcsub_match.pass.cpp 20 static_assert((std::is_same<std::sub_match<const wchar_t*>, std::wcsub_match>::value), "");
wregex.pass.cpp 20 static_assert((std::is_same<std::basic_regex<wchar_t>, std::wregex>::value), "");
wsmatch.pass.cpp 20 static_assert((std::is_same<std::match_results<std::wstring::const_iterator>, std::wsmatch>::value), "");
wsregex_iterator.pass.cpp 20 static_assert((std::is_same<std::regex_iterator<std::wstring::const_iterator>, std::wsregex_iterator>::value), "");
wsregex_token_iterator.pass.cpp 20 static_assert((std::is_same<std::regex_token_iterator<std::wstring::const_iterator>, std::wsregex_token_iterator>::value), "");
wssub_match.pass.cpp 20 static_assert((std::is_same<std::sub_match<std::wstring::const_iterator>, std::wssub_match>::value), "");
  /external/libcxx/test/std/strings/basic.string/
types.pass.cpp 49 static_assert((std::is_same<typename S::traits_type, Traits>::value), "");
50 static_assert((std::is_same<typename S::value_type, typename Traits::char_type>::value), "");
51 static_assert((std::is_same<typename S::value_type, typename Allocator::value_type>::value), "");
52 static_assert((std::is_same<typename S::allocator_type, Allocator>::value), "");
53 static_assert((std::is_same<typename S::size_type, typename std::allocator_traits<Allocator>::size_type>::value), "");
54 static_assert((std::is_same<typename S::difference_type, typename std::allocator_traits<Allocator>::difference_type>::value), "");
55 static_assert((std::is_same<typename S::reference, typename S::value_type&>::value), "");
56 static_assert((std::is_same<typename S::const_reference, const typename S::value_type&>::value), "");
57 static_assert((std::is_same<typename S::pointer, typename std::allocator_traits<Allocator>::pointer>::value), "");
58 static_assert((std::is_same<typename S::const_pointer, typename std::allocator_traits<Allocator>::const_pointer>::value), "")
    [all...]
  /external/libcxx/test/std/strings/c.strings/
cwchar.pass.cpp 53 static_assert((std::is_same<decltype(std::fwprintf(fp, L"")), int>::value), "");
54 static_assert((std::is_same<decltype(std::fwscanf(fp, L"")), int>::value), "");
55 static_assert((std::is_same<decltype(std::swprintf(ws, s, L"")), int>::value), "");
56 static_assert((std::is_same<decltype(std::swscanf(L"", L"")), int>::value), "");
57 static_assert((std::is_same<decltype(std::vfwprintf(fp, L"", va)), int>::value), "");
58 static_assert((std::is_same<decltype(std::vfwscanf(fp, L"", va)), int>::value), "");
59 static_assert((std::is_same<decltype(std::vswprintf(ws, s, L"", va)), int>::value), "");
60 static_assert((std::is_same<decltype(std::vswscanf(L"", L"", va)), int>::value), "");
61 static_assert((std::is_same<decltype(std::fgetwc(fp)), std::wint_t>::value), "");
62 static_assert((std::is_same<decltype(std::fgetws(ws, 0, fp)), wchar_t*>::value), "")
    [all...]
  /external/libcxx/test/std/thread/thread.mutex/thread.lock/thread.lock.guard/
types.pass.cpp 27 static_assert((std::is_same<std::lock_guard<std::mutex>::mutex_type,
  /external/libcxx/test/std/thread/thread.mutex/thread.lock/thread.lock.shared/
types.pass.cpp 29 static_assert((std::is_same<std::shared_lock<std::mutex>::mutex_type,
  /external/libcxx/test/std/thread/thread.mutex/thread.lock/thread.lock.unique/
types.pass.cpp 27 static_assert((std::is_same<std::unique_lock<std::mutex>::mutex_type,
  /external/libcxx/test/std/utilities/memory/default.allocator/
allocator_void.pass.cpp 28 static_assert((std::is_same<std::allocator<void>::pointer, void*>::value), "");
29 static_assert((std::is_same<std::allocator<void>::const_pointer, const void*>::value), "");
30 static_assert((std::is_same<std::allocator<void>::value_type, void>::value), "");
31 static_assert((std::is_same<std::allocator<void>::rebind<int>::other,
  /external/libcxx/test/std/utilities/memory/pointer.traits/
difference_type.pass.cpp 24 static_assert((std::is_same<std::pointer_traits<double*>::difference_type, std::ptrdiff_t>::value), "");
  /external/libcxx/test/std/utilities/memory/util.smartptr/util.smartptr.weak/
types.pass.cpp 25 static_assert((std::is_same<std::weak_ptr<A>::element_type, A>::value), "");
  /external/libcxx/test/std/utilities/meta/meta.help/
bool_constant.pass.cpp 24 static_assert((std::is_same<_t::value_type, bool>::value), "");
25 static_assert((std::is_same<_t::type, _t>::value), "");
30 static_assert((std::is_same<_f::value_type, bool>::value), "");
31 static_assert((std::is_same<_f::type, _f>::value), "");
  /external/libcxx/test/std/utilities/time/time.clock/time.clock.system/
consistency.pass.cpp 33 static_assert((std::is_same<C::rep, C::duration::rep>::value), "");
34 static_assert((std::is_same<C::period, C::duration::period>::value), "");
35 static_assert((std::is_same<C::duration, C::time_point::duration>::value), "");
36 static_assert((std::is_same<C::time_point::clock, C>::value), "");
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/libcxx/thread/futures/futures.task/
types.pass.cpp 30 static_assert((std::is_same<std::packaged_task<A(int, char)>::result_type, A>::value), "");
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/libcxx/thread/thread.threads/thread.thread.class/
types.pass.cpp 27 static_assert((std::is_same<std::thread::native_handle_type, pthread_t>::value), "");
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/containers/sequences/list/
types.pass.cpp 36 static_assert((std::is_same<C::value_type, int>::value), "");
37 static_assert((std::is_same<C::allocator_type, std::allocator<int> >::value), "");
38 static_assert((std::is_same<C::reference, std::allocator<int>::reference>::value), "");
39 static_assert((std::is_same<C::const_reference, std::allocator<int>::const_reference>::value), "");
40 static_assert((std::is_same<C::pointer, std::allocator<int>::pointer>::value), "");
41 static_assert((std::is_same<C::const_pointer, std::allocator<int>::const_pointer>::value), "");
45 static_assert((std::is_same<typename C::difference_type,
47 static_assert((std::is_same<typename C::difference_type,
54 static_assert((std::is_same<C::value_type, int>::value), "");
55 static_assert((std::is_same<C::allocator_type, min_allocator<int> >::value), "")
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/depr/depr.ios.members/
streampos.pass.cpp 27 static_assert((std::is_same<std::ios_base::streampos, std::streampos>::value), "");
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/depr/depr.str.strstreams/depr.strstream/
types.pass.cpp 28 static_assert((std::is_same<std::strstream::char_type, char>::value), "");
29 static_assert((std::is_same<std::strstream::int_type, std::char_traits<char>::int_type>::value), "");
30 static_assert((std::is_same<std::strstream::pos_type, std::char_traits<char>::pos_type>::value), "");
31 static_assert((std::is_same<std::strstream::off_type, std::char_traits<char>::off_type>::value), "");

Completed in 1899 milliseconds

1 2 3 4 5 6 7 891011>>