Home
last modified time | relevance | path

Searched refs:from_address (Results 1 – 25 of 63) sorted by relevance

123

/external/llvm-project/libcxx/test/std/experimental/language.support/support.coroutines/coroutine.handle/coroutine.handle.export/
Dfrom_address.fail.cpp34 H::from_address((int*)nullptr); // expected-note {{requested here}} in main()
35 H::from_address((const void*)nullptr); // expected-note {{requested here}} in main()
36 H::from_address((const char*)nullptr); // expected-note {{requested here}} in main()
41 H::from_address((const char*)nullptr); // expected-note {{requested here}} in main()
43 H::from_address((int*)nullptr); // expected-note {{requested here}} in main()
Dfrom_address.pass.cpp30 C c = C::from_address(nullptr); in do_test()
31 static_assert(noexcept(C::from_address(nullptr)), ""); in do_test()
33 static_assert(std::is_same<decltype(C::from_address(nullptr)), C>::value, ""); in do_test()
38 C c = C::from_address((void*)&dummy); in do_test()
/external/libcxx/test/std/experimental/language.support/support.coroutines/coroutine.handle/coroutine.handle.export/
Dfrom_address.fail.cpp35 H::from_address((int*)nullptr); // expected-note {{requested here}} in main()
36 H::from_address((const void*)nullptr); // expected-note {{requested here}} in main()
37 H::from_address((const char*)nullptr); // expected-note {{requested here}} in main()
42 H::from_address((const char*)nullptr); // expected-note {{requested here}} in main()
44 H::from_address((int*)nullptr); // expected-note {{requested here}} in main()
Dfrom_address.pass.cpp29 C c = C::from_address(nullptr); in do_test()
30 static_assert(noexcept(C::from_address(nullptr)), ""); in do_test()
32 static_assert(std::is_same<decltype(C::from_address(nullptr)), C>::value, ""); in do_test()
37 C c = C::from_address((void*)&dummy); in do_test()
/external/llvm-project/libcxx/include/experimental/
Dcoroutine140 static coroutine_handle from_address(void* __addr) _NOEXCEPT {
146 // FIXME: Should from_address(nullptr) be allowed?
148 static coroutine_handle from_address(nullptr_t) _NOEXCEPT {
153 static coroutine_handle from_address(_Tp*) {
155 "coroutine_handle<void>::from_address cannot be called with "
220 static coroutine_handle from_address(void* __addr) _NOEXCEPT {
227 // the deleted _Promise* overload doesn't make from_address(nullptr)
229 // FIXME: should from_address work with nullptr?
231 static coroutine_handle from_address(nullptr_t) _NOEXCEPT {
236 static coroutine_handle from_address(_Tp*) {
[all …]
/external/libcxx/include/experimental/
Dcoroutine142 static coroutine_handle from_address(void* __addr) _NOEXCEPT {
148 // FIXME: Should from_address(nullptr) be allowed?
150 static coroutine_handle from_address(nullptr_t) _NOEXCEPT {
155 static coroutine_handle from_address(_Tp*) {
157 "coroutine_handle<void>::from_address cannot be called with "
222 static coroutine_handle from_address(void* __addr) _NOEXCEPT {
229 // the deleted _Promise* overload doesn't make from_address(nullptr)
231 // FIXME: should from_address work with nullptr?
233 static coroutine_handle from_address(nullptr_t) _NOEXCEPT {
238 static coroutine_handle from_address(_Tp*) {
[all …]
/external/autotest/client/common_lib/
Dmail.py4 def send(from_address, to_addresses, cc_addresses, subject, message_body): argument
33 message["From"] = from_address
38 server.sendmail(from_address, to_addresses + cc_addresses, message.as_string())
Dmail_unittest.py33 def sendmail(self, from_address, to_address, message): argument
34 test_data.mail_from_address = from_address
/external/llvm-project/clang/test/CoverageMapping/
Dcoroutine.cpp12 static coroutine_handle from_address(void *) noexcept { return {}; } in from_address() function
16 static coroutine_handle from_address(void *) { return {}; } in from_address() function
/external/llvm-project/clang/test/SemaCXX/
Dcoroutine-seh.cpp7 static coroutine_handle from_address(void *) noexcept;
10 static coroutine_handle from_address(void *) noexcept;
Dcoroutine-rvo.cpp6 static coroutine_handle from_address(void *) noexcept;
10 static coroutine_handle from_address(void *) noexcept;
/external/llvm-project/clang/test/SemaCXX/Inputs/
Dstd-coroutine.h13 static coroutine_handle from_address(void *) noexcept;
19 static coroutine_handle from_address(void *);
/external/llvm-project/clang/test/CodeGenCoroutines/
Dcoro-return.cpp8 static coroutine_handle from_address(void *) noexcept { return {}; } in from_address() function
11 static coroutine_handle from_address(void *) { return {}; } in from_address() function
Dcoro-cleanup.cpp9 static coroutine_handle from_address(void *) noexcept;
12 static coroutine_handle from_address(void *) noexcept;
Dcoro-gro.cpp10 static coroutine_handle from_address(void *) noexcept;
13 static coroutine_handle from_address(void *) noexcept;
Dcoro-eh-cleanup.cpp12 static coroutine_handle from_address(void *) noexcept;
19 static coroutine_handle from_address(void *) noexcept;
Dcoro-lambda.cpp11 static coroutine_handle from_address(void *) noexcept;
18 static coroutine_handle from_address(void *) noexcept;
/external/llvm-project/clang/test/CodeGenCXX/
Dubsan-coroutines.cpp14 static coroutine_handle from_address(void *) noexcept;
21 static coroutine_handle from_address(void *) noexcept;
/external/llvm-project/libcxx/test/std/experimental/language.support/support.coroutines/coroutine.handle/coroutine.handle.compare/
Dequal_comp.pass.cpp32 const C LHS = C::from_address(reinterpret_cast<void*>(LHSVal)); in do_test()
33 const C RHS = C::from_address(reinterpret_cast<void*>(RHSVal)); in do_test()
Dless_comp.pass.cpp34 const C LHS = C::from_address(reinterpret_cast<void*>(LHSVal)); in do_test()
35 const C RHS = C::from_address(reinterpret_cast<void*>(RHSVal)); in do_test()
/external/libcxx/test/std/experimental/language.support/support.coroutines/coroutine.handle/coroutine.handle.compare/
Dequal_comp.pass.cpp33 const C LHS = C::from_address(reinterpret_cast<void*>(LHSVal)); in do_test()
34 const C RHS = C::from_address(reinterpret_cast<void*>(RHSVal)); in do_test()
Dless_comp.pass.cpp35 const C LHS = C::from_address(reinterpret_cast<void*>(LHSVal)); in do_test()
36 const C RHS = C::from_address(reinterpret_cast<void*>(RHSVal)); in do_test()
/external/libcxx/test/std/experimental/language.support/support.coroutines/coroutine.handle/coroutine.handle.hash/
Dhash.pass.cpp37 const C LHS = C::from_address(reinterpret_cast<void*>(LHSVal)); in do_test()
38 const C RHS = C::from_address(reinterpret_cast<void*>(RHSVal)); in do_test()
/external/llvm-project/libcxx/test/std/experimental/language.support/support.coroutines/coroutine.handle/coroutine.handle.hash/
Dhash.pass.cpp36 const C LHS = C::from_address(reinterpret_cast<void*>(LHSVal)); in do_test()
37 const C RHS = C::from_address(reinterpret_cast<void*>(RHSVal)); in do_test()
/external/llvm-project/clang/test/PCH/
Dcoroutines.cpp16 static coroutine_handle from_address(void *) noexcept;
19 static coroutine_handle from_address(void *) noexcept;

123