Home
last modified time | relevance | path

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

12

/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()
Daddress.pass.cpp42 C c = C::from_address((void*)&dummy); in do_test()
/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/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/python/cpython2/Lib/ctypes/test/
Dtest_numbers.py170 v = t.from_address(a.buffer_info()[0])
183 v = t.from_address(a.buffer_info()[0])
195 v = c_char.from_address(a.buffer_info()[0])
208 v = t.from_address(a.buffer_info()[0])
Dtest_loading.py84 f_ord_addr = c_void_p.from_address(a_ord).value
85 f_name_addr = c_void_p.from_address(a_name).value
Dtest_arrays.py102 sz = (c_char * 3).from_address(addressof(p))
113 sz = (c_wchar * 3).from_address(addressof(p))
Dtest_pointers.py30 self.assertEqual(c_int.from_address(address).value, 12345678)
/external/python/cpython3/Lib/ctypes/test/
Dtest_numbers.py170 v = t.from_address(a.buffer_info()[0])
183 v = t.from_address(a.buffer_info()[0])
196 v = c_char.from_address(a.buffer_info()[0])
209 v = t.from_address(a.buffer_info()[0])
Dtest_loading.py79 f_ord_addr = c_void_p.from_address(a_ord).value
80 f_name_addr = c_void_p.from_address(a_name).value
Dtest_arrays.py101 sz = (c_char * 3).from_address(addressof(p))
112 sz = (c_wchar * 3).from_address(addressof(p))
Dtest_pointers.py33 self.assertEqual(c_int.from_address(address).value, 12345678)
/external/webrtc/tools/network_emulator/
Dnetwork_emulator.py102 def _create_dummynet_rule(self, pipe_id, from_address, to_address, argument
120 'ip', 'from', from_address, 'to', to_address]
/external/libchrome/third_party/jinja2/
Ddebug.py350 obj = _Traceback.from_address(id(tb))
352 old = _Traceback.from_address(id(tb.tb_next))
357 next = _Traceback.from_address(id(next))
/external/libcxx/test/std/experimental/language.support/support.coroutines/coroutine.handle/coroutine.handle.capacity/
Doperator_bool.pass.cpp48 C c = C::from_address((void*)&dummy); in do_test()
/external/libcxx/test/std/experimental/language.support/support.coroutines/coroutine.handle/coroutine.handle.con/
Dassign.pass.cpp36 C c = C::from_address(dummy_h); in do_test()
/external/libcxx/test/std/experimental/language.support/support.coroutines/coroutine.handle/coroutine.handle.noop/
Dnoop_coroutine.pass.cpp68 assert(coro::coroutine_handle<>::from_address(h.address()) == base); in main()
/external/python/cpython2/Lib/multiprocessing/
Dsharedctypes.py169 obj = type_.from_address(wrapper.get_address())
/external/v8/tools/
Dll_prof.py407 old_start_address = event.from_address
/external/v8/src/
Dlog.cc512 Address from_address; member
608 event.from_address = from->InstructionStart(); in CodeMoveEvent()

12