Searched refs:std (Results 326 - 350 of 33291) sorted by relevance

<<11121314151617181920>>

/external/libcxx/test/thread/thread.mutex/thread.mutex.requirements/thread.timedmutex.requirements/thread.timedmutex.class/
H A Ddefault.pass.cpp20 std::timed_mutex m;
/external/libcxx/test/thread/thread.mutex/thread.mutex.requirements/thread.timedmutex.requirements/thread.timedmutex.recursive/
H A Ddefault.pass.cpp20 std::recursive_timed_mutex m;
/external/libcxx/test/utilities/function.objects/refwrap/refwrap.helpers/
H A Dcref_2.pass.cpp22 std::reference_wrapper<const int> r1 = std::cref(i);
23 std::reference_wrapper<const int> r2 = std::cref(r1);
H A Dref_2.pass.cpp22 std::reference_wrapper<int> r1 = std::ref(i);
23 std::reference_wrapper<int> r2 = std::ref(r1);
/external/libcxx/test/utilities/memory/pointer.traits/
H A Drebind.pass.cpp25 static_assert((std::is_same<std::pointer_traits<int*>::rebind<double>, double*>::value), "");
27 static_assert((std::is_same<std::pointer_traits<int*>::rebind<double>::other, double*>::value), "");
/external/libcxx/test/utilities/memory/temporary.buffer/
H A Dtemporary_buffer.pass.cpp25 std::pair<int*, std::ptrdiff_t> ip = std::get_temporary_buffer<int>(5);
28 std::return_temporary_buffer(ip.first);
/external/libcxx/test/utilities/memory/unique.ptr/unique.ptr.runtime/unique.ptr.runtime.ctor/
H A Ddefault03.fail.cpp22 std::unique_ptr<int[], void (*)(void*)> p;
H A Dpointer03.fail.cpp22 std::unique_ptr<int[], void (*)(void*)> p(new int);
/external/libcxx/test/utilities/memory/unique.ptr/unique.ptr.single/unique.ptr.single.ctor/
H A Ddefault03.fail.cpp22 std::unique_ptr<int, void (*)(void*)> p;
H A Dpointer03.fail.cpp22 std::unique_ptr<int, void (*)(void*)> p(new int);
/external/libcxx/test/utilities/memory/util.smartptr/util.smartptr.shared.atomic/
H A Datomic_load_explicit.pass.cpp30 const std::shared_ptr<int> p(new int(3));
31 std::shared_ptr<int> q = std::atomic_load_explicit(&p, std::memory_order_relaxed);
H A Datomic_store_explicit.pass.cpp30 std::shared_ptr<int> p;
31 std::shared_ptr<int> r(new int(3));
32 std::atomic_store_explicit(&p, r, std::memory_order_seq_cst);
/external/libcxx/test/utilities/memory/util.smartptr/util.smartptr.weak/util.smartptr.weak.obs/
H A Dnot_less_than.fail.cpp21 const std::shared_ptr<int> p1(new int);
22 const std::shared_ptr<int> p2(new int);
23 const std::weak_ptr<int> w1(p1);
24 const std::weak_ptr<int> w2(p2);
/external/libcxx/test/utilities/time/time.duration/
H A Ddefault_ratio.pass.cpp24 static_assert((std::is_same<std::chrono::duration<int, std::ratio<1> >,
25 std::chrono::duration<int> >::value), "");
/external/libcxx/test/utilities/time/time.point/
H A Ddefault_duration.pass.cpp24 static_assert((std::is_same<std::chrono::system_clock::duration,
25 std::chrono::time_point<std::chrono::system_clock>::duration>::value), "");
/external/libcxx/test/utilities/tuple/tuple.tuple/tuple.elem/
H A Dtuple.by.type2.fail.cpp19 typedef std::complex<float> cf;
20 auto t1 = std::make_tuple<int, int, std::string, cf> ( 42, 21, "Hi", { 1,2 } );
21 assert ( std::get<int>(t1) == 42 ); // two ints here
H A Dtuple.by.type3.fail.cpp19 typedef std::complex<float> cf;
20 auto t1 = std::make_tuple<double, int, std::string, cf, int> ( 42, 21, "Hi", { 1,2 } );
21 assert ( std::get<int>(t1) == 42 ); // two ints here (one at the end)
/external/libcxx/test/utilities/utility/pairs/pair.astuple/
H A Dget_const.fail.cpp15 // const typename tuple_element<I, std::pair<T1, T2> >::type&
24 typedef std::pair<int, short> P;
26 assert(std::get<0>(p) == 3);
27 assert(std::get<1>(p) == 4);
28 std::get<0>(p) = 5;
/external/oprofile/libutil++/
H A Dfile_manip.h27 bool copy_file(std::string const & source, std::string const & destination);
30 bool is_directory(std::string const & dirname);
39 bool is_files_identical(std::string const & file1, std::string const & file2);
50 std::string const op_realpath(std::string const & name);
53 bool op_file_readable(std::string const & file);
65 bool create_file_list(std::list<std
[all...]
/external/valgrind/main/none/tests/
H A Dgxx304.cpp4 std::ofstream pippo("pluto");
/external/chromium_org/components/os_crypt/
H A Die7_password_win.h18 std::wstring url_hash;
22 std::vector<unsigned char> encrypted_data;
31 std::wstring username;
32 std::wstring password;
39 bool GetUserPassFromData(const std::vector<unsigned char>& data,
40 std::vector<DecryptedCredentials>* credentials);
45 bool DecryptPasswords(const std::wstring& url,
46 const std::vector<unsigned char>& data,
47 std::vector<DecryptedCredentials>* credentials);
50 std
[all...]
/external/chromium_org/ppapi/tests/
H A Dtest_net_address_private.h18 virtual void RunTests(const std::string& filter);
21 std::string TestAreEqual();
22 std::string TestAreHostsEqual();
23 std::string TestDescribe();
24 std::string TestReplacePort();
25 std::string TestGetAnyAddress();
26 std::string TestDescribeIPv6();
27 std::string TestGetFamily();
28 std::string TestGetPort();
29 std
[all...]
/external/libcxx/test/localization/locales/locale.convenience/conversions/conversions.buffer/
H A Dtest.pass.cpp22 std::ofstream bytestream("myfile.txt");
23 std::wbuffer_convert<std::codecvt_utf8<wchar_t> > mybuf(bytestream.rdbuf());
24 std::wostream mystr(&mybuf);
25 mystr << L"Hello" << std::endl;
28 std::ifstream bytestream("myfile.txt");
29 std::wbuffer_convert<std::codecvt_utf8<wchar_t> > mybuf(bytestream.rdbuf());
30 std::wistream mystr(&mybuf);
31 std
[all...]
/external/libcxx/test/strings/c.strings/
H A Dcwctype.pass.cpp93 std::wint_t w = 0;
94 std::wctrans_t wctr = 0;
95 std::wctype_t wct = 0;
96 static_assert((std::is_same<decltype(std::iswalnum(w)), int>::value), "");
97 static_assert((std::is_same<decltype(std::iswalpha(w)), int>::value), "");
98 static_assert((std::is_same<decltype(std::iswblank(w)), int>::value), "");
99 static_assert((std
[all...]
/external/libcxx/test/utilities/memory/default.allocator/
H A Dallocator_void.pass.cpp28 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,
32 std::allocator<int> >::value), "");
33 std
[all...]

Completed in 476 milliseconds

<<11121314151617181920>>