HomeSort by relevance Sort by last modified time
    Searched refs:is_same (Results 176 - 200 of 856) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/libcxx/test/re/re.syn/
smatch.pass.cpp 19 static_assert((std::is_same<std::match_results<std::string::const_iterator>, std::smatch>::value), "");
sregex_iterator.pass.cpp 19 static_assert((std::is_same<std::regex_iterator<std::string::const_iterator>, std::sregex_iterator>::value), "");
sregex_token_iterator.pass.cpp 19 static_assert((std::is_same<std::regex_token_iterator<std::string::const_iterator>, std::sregex_token_iterator>::value), "");
ssub_match.pass.cpp 19 static_assert((std::is_same<std::sub_match<std::string::const_iterator>, std::ssub_match>::value), "");
wcmatch.pass.cpp 19 static_assert((std::is_same<std::match_results<const wchar_t*>, std::wcmatch>::value), "");
wcregex_iterator.pass.cpp 19 static_assert((std::is_same<std::regex_iterator<const wchar_t*>, std::wcregex_iterator>::value), "");
wcregex_token_iterator.pass.cpp 19 static_assert((std::is_same<std::regex_token_iterator<const wchar_t*>, std::wcregex_token_iterator>::value), "");
wcsub_match.pass.cpp 19 static_assert((std::is_same<std::sub_match<const wchar_t*>, std::wcsub_match>::value), "");
wregex.pass.cpp 19 static_assert((std::is_same<std::basic_regex<wchar_t>, std::wregex>::value), "");
wsmatch.pass.cpp 19 static_assert((std::is_same<std::match_results<std::wstring::const_iterator>, std::wsmatch>::value), "");
wsregex_iterator.pass.cpp 19 static_assert((std::is_same<std::regex_iterator<std::wstring::const_iterator>, std::wsregex_iterator>::value), "");
wsregex_token_iterator.pass.cpp 19 static_assert((std::is_same<std::regex_token_iterator<std::wstring::const_iterator>, std::wsregex_token_iterator>::value), "");
wssub_match.pass.cpp 19 static_assert((std::is_same<std::sub_match<std::wstring::const_iterator>, std::wssub_match>::value), "");
  /external/libcxx/test/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/strings/c.strings/
cwchar.pass.cpp 45 static_assert((std::is_same<decltype(std::fwprintf(fp, L"")), int>::value), "");
46 static_assert((std::is_same<decltype(std::fwscanf(fp, L"")), int>::value), "");
47 static_assert((std::is_same<decltype(std::swprintf(ws, s, L"")), int>::value), "");
48 static_assert((std::is_same<decltype(std::swscanf(L"", L"")), int>::value), "");
49 static_assert((std::is_same<decltype(std::vfwprintf(fp, L"", va)), int>::value), "");
50 static_assert((std::is_same<decltype(std::vfwscanf(fp, L"", va)), int>::value), "");
51 static_assert((std::is_same<decltype(std::vswprintf(ws, s, L"", va)), int>::value), "");
52 static_assert((std::is_same<decltype(std::vswscanf(L"", L"", va)), int>::value), "");
53 static_assert((std::is_same<decltype(std::vwprintf(L"", va)), int>::value), "");
54 static_assert((std::is_same<decltype(std::vwscanf(L"", va)), int>::value), "")
    [all...]
  /external/libcxx/test/thread/futures/futures.tas/
types.pass.cpp 25 static_assert((std::is_same<std::packaged_task<A(int, char)>::result_type, A>::value), "");
  /external/libcxx/test/thread/thread.mutex/thread.lock/thread.lock.guard/
types.pass.cpp 25 static_assert((std::is_same<std::lock_guard<std::mutex>::mutex_type,
  /external/libcxx/test/thread/thread.mutex/thread.lock/thread.lock.unique/
types.pass.cpp 25 static_assert((std::is_same<std::unique_lock<std::mutex>::mutex_type,
  /external/libcxx/test/thread/thread.threads/thread.thread.class/
types.pass.cpp 24 static_assert((std::is_same<std::thread::native_handle_type, pthread_t>::value), "");
  /external/libcxx/test/utilities/intseq/intseq.intseq/
integer_seq.pass.cpp 35 static_assert ( std::is_same<int3::value_type, int>::value, "int3 type wrong" );
38 static_assert ( std::is_same<size1::value_type, size_t>::value, "size1 type wrong" );
41 static_assert ( std::is_same<ushort2::value_type, unsigned short>::value, "ushort2 type wrong" );
44 static_assert ( std::is_same<bool0::value_type, bool>::value, "bool0 type wrong" );
  /external/libcxx/test/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/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/utilities/memory/pointer.traits/pointer.traits.types/
difference_type.pass.cpp 44 static_assert((std::is_same<std::pointer_traits<A>::difference_type, char>::value), "");
45 static_assert((std::is_same<std::pointer_traits<B>::difference_type, std::ptrdiff_t>::value), "");
46 static_assert((std::is_same<std::pointer_traits<C<double> >::difference_type, std::ptrdiff_t>::value), "");
47 static_assert((std::is_same<std::pointer_traits<D<int> >::difference_type, char>::value), "");
element_type.pass.cpp 45 static_assert((std::is_same<std::pointer_traits<A>::element_type, char>::value), "");
46 static_assert((std::is_same<std::pointer_traits<B<int> >::element_type, char>::value), "");
47 static_assert((std::is_same<std::pointer_traits<C<int> >::element_type, int>::value), "");
48 static_assert((std::is_same<std::pointer_traits<D<double, int> >::element_type, double>::value), "");
  /external/libcxx/test/utilities/memory/util.smartptr/util.smartptr.shared/
types.pass.cpp 25 static_assert((std::is_same<std::shared_ptr<A>::element_type, A>::value), "");

Completed in 1236 milliseconds

1 2 3 4 5 6 78 91011>>