HomeSort by relevance Sort by last modified time
    Searched refs:from_address (Results 1 - 25 of 58) sorted by null

1 2 3

  /external/libcxx/test/std/experimental/language.support/support.coroutines/coroutine.handle/coroutine.handle.export/
from_address.fail.cpp 17 // static coroutine_handle from_address(void*) noexcept
19 // Test that `from_address` is explicitly ill-formed when called with a typed
34 // expected-error@experimental/coroutine:* 3 {{coroutine_handle<void>::from_address cannot be called with non-void pointers}}
35 H::from_address((int*)nullptr); // expected-note {{requested here}}
36 H::from_address((const void*)nullptr); // expected-note {{requested here}}
37 H::from_address((const char*)nullptr); // expected-note {{requested here}}
41 // expected-error@experimental/coroutine:* 1 {{static_assert failed "coroutine_handle<promise_type>::from_address cannot be used with pointers to the coroutine's promise type; use 'from_promise' instead"}}
42 H::from_address((const char*)nullptr); // expected-note {{requested here}}
43 // expected-error@experimental/coroutine:* 1 {{coroutine_handle<promise_type>::from_address cannot be called with non-void pointers}}
44 H::from_address((int*)nullptr); // expected-note {{requested here}
    [all...]
from_address.pass.cpp 18 // static coroutine_handle from_address(void*) noexcept
29 C c = C::from_address(nullptr);
30 static_assert(noexcept(C::from_address(nullptr)), "");
32 static_assert(std::is_same<decltype(C::from_address(nullptr)), C>::value, "");
37 C c = C::from_address((void*)&dummy);
address.pass.cpp 42 C c = C::from_address((void*)&dummy);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/experimental/language.support/support.coroutines/coroutine.handle/coroutine.handle.export/
from_address.fail.cpp 17 // static coroutine_handle from_address(void*) noexcept
19 // Test that `from_address` is explicitly ill-formed when called with a typed
34 // expected-error@experimental/coroutine:* 3 {{coroutine_handle<void>::from_address cannot be called with non-void pointers}}
35 H::from_address((int*)nullptr); // expected-note {{requested here}}
36 H::from_address((const void*)nullptr); // expected-note {{requested here}}
37 H::from_address((const char*)nullptr); // expected-note {{requested here}}
41 // expected-error@experimental/coroutine:* 1 {{static_assert failed "coroutine_handle<promise_type>::from_address cannot be used with pointers to the coroutine's promise type; use 'from_promise' instead"}}
42 H::from_address((const char*)nullptr); // expected-note {{requested here}}
43 // expected-error@experimental/coroutine:* 1 {{coroutine_handle<promise_type>::from_address cannot be called with non-void pointers}}
44 H::from_address((int*)nullptr); // expected-note {{requested here}
    [all...]
from_address.pass.cpp 18 // static coroutine_handle from_address(void*) noexcept
29 C c = C::from_address(nullptr);
30 static_assert(noexcept(C::from_address(nullptr)), "");
32 static_assert(std::is_same<decltype(C::from_address(nullptr)), C>::value, "");
37 C c = C::from_address((void*)&dummy);
address.pass.cpp 42 C c = C::from_address((void*)&dummy);
  /external/autotest/client/common_lib/
mail.py 4 def send(from_address, to_addresses, cc_addresses, subject, message_body):
10 from_address: the email address to put in the "From:" field
33 message["From"] = from_address
38 server.sendmail(from_address, to_addresses + cc_addresses, message.as_string())
mail_unittest.py 33 def sendmail(self, from_address, to_address, message):
34 test_data.mail_from_address = from_address
  /external/libcxx/test/std/experimental/language.support/support.coroutines/coroutine.handle/coroutine.handle.compare/
equal_comp.pass.cpp 33 const C LHS = C::from_address(reinterpret_cast<void*>(LHSVal));
34 const C RHS = C::from_address(reinterpret_cast<void*>(RHSVal));
less_comp.pass.cpp 35 const C LHS = C::from_address(reinterpret_cast<void*>(LHSVal));
36 const C RHS = C::from_address(reinterpret_cast<void*>(RHSVal));
  /external/libcxx/test/std/experimental/language.support/support.coroutines/coroutine.handle/coroutine.handle.hash/
hash.pass.cpp 37 const C LHS = C::from_address(reinterpret_cast<void*>(LHSVal));
38 const C RHS = C::from_address(reinterpret_cast<void*>(RHSVal));
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/experimental/language.support/support.coroutines/coroutine.handle/coroutine.handle.compare/
equal_comp.pass.cpp 33 const C LHS = C::from_address(reinterpret_cast<void*>(LHSVal));
34 const C RHS = C::from_address(reinterpret_cast<void*>(RHSVal));
less_comp.pass.cpp 35 const C LHS = C::from_address(reinterpret_cast<void*>(LHSVal));
36 const C RHS = C::from_address(reinterpret_cast<void*>(RHSVal));
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/experimental/language.support/support.coroutines/coroutine.handle/coroutine.handle.hash/
hash.pass.cpp 37 const C LHS = C::from_address(reinterpret_cast<void*>(LHSVal));
38 const C RHS = C::from_address(reinterpret_cast<void*>(RHSVal));
  /external/libcxx/test/std/experimental/language.support/support.coroutines/coroutine.handle/coroutine.handle.capacity/
operator_bool.pass.cpp 48 C c = C::from_address((void*)&dummy);
  /external/libcxx/test/std/experimental/language.support/support.coroutines/coroutine.handle/coroutine.handle.con/
assign.pass.cpp 36 C c = C::from_address(dummy_h);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/experimental/language.support/support.coroutines/coroutine.handle/coroutine.handle.capacity/
operator_bool.pass.cpp 48 C c = C::from_address((void*)&dummy);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/experimental/language.support/support.coroutines/coroutine.handle/coroutine.handle.con/
assign.pass.cpp 36 C c = C::from_address(dummy_h);
  /external/python/cpython2/Lib/ctypes/test/
test_arrays.py 102 sz = (c_char * 3).from_address(addressof(p))
113 sz = (c_wchar * 3).from_address(addressof(p))
test_loading.py 77 f_ord_addr = c_void_p.from_address(a_ord).value
78 f_name_addr = c_void_p.from_address(a_name).value
  /external/python/cpython3/Lib/ctypes/test/
test_loading.py 77 f_ord_addr = c_void_p.from_address(a_ord).value
78 f_name_addr = c_void_p.from_address(a_name).value
  /external/webrtc/tools/network_emulator/
network_emulator.py 102 def _create_dummynet_rule(self, pipe_id, from_address, to_address,
108 from_address: The IP address to match source address. May be an IP or
120 'ip', 'from', from_address, 'to', to_address]
  /prebuilts/gdb/darwin-x86/lib/python2.7/ctypes/test/
test_arrays.py 96 sz = (c_char * 3).from_address(addressof(p))
111 sz = (c_wchar * 3).from_address(addressof(p))
test_loading.py 71 f_ord_addr = c_void_p.from_address(a_ord).value
72 f_name_addr = c_void_p.from_address(a_name).value
  /prebuilts/gdb/linux-x86/lib/python2.7/ctypes/test/
test_arrays.py 96 sz = (c_char * 3).from_address(addressof(p))
111 sz = (c_wchar * 3).from_address(addressof(p))

Completed in 428 milliseconds

1 2 3