Home
last modified time | relevance | path

Searched refs:registration (Results 1 – 25 of 273) sorted by relevance

1234567891011

/third_party/boost/libs/python/src/converter/
Dregistry.cpp23 BOOST_PYTHON_DECL PyTypeObject const* registration::expected_from_python_type() const in expected_from_python_type()
42 BOOST_PYTHON_DECL PyTypeObject const* registration::to_python_target_type() const in to_python_target_type()
53 BOOST_PYTHON_DECL PyTypeObject* registration::get_class_object() const in get_class_object()
68 BOOST_PYTHON_DECL PyObject* registration::to_python(void const volatile* source) const in to_python()
105 registration::~registration() in ~registration()
114 typedef registration entry;
237 lvalue_from_python_chain *registration = new lvalue_from_python_chain; in insert() local
238 registration->convert = convert; in insert()
239 registration->next = found->lvalue_chain; in insert()
240 found->lvalue_chain = registration; in insert()
[all …]
Dfrom_python.cpp40 , registration const& converters) in rvalue_from_python_stage1()
83 registration const& converters = *static_cast<registration const*>(converters_); in rvalue_result_from_python()
91 PyObject* source, rvalue_from_python_stage1_data& data, registration const& converters) in rvalue_from_python_stage2()
122 , registration const& converters) in get_lvalue_from_python()
175 , registration const& converters) in implicit_rvalue_convertible_from_python()
198 …void throw_no_lvalue_from_python(PyObject* source, registration const& converters, char const* ref… in throw_no_lvalue_from_python()
221 , registration const& converters in lvalue_result_from_python()
251 BOOST_PYTHON_DECL void throw_no_pointer_from_python(PyObject* source, registration const& converter… in throw_no_pointer_from_python()
256 BOOST_PYTHON_DECL void throw_no_reference_from_python(PyObject* source, registration const& convert… in throw_no_reference_from_python()
263 , registration const& converters) in reference_result_from_python()
[all …]
/third_party/boost/boost/python/converter/
Dfrom_python.hpp13 struct registration;
17 PyObject* source, registration const&);
20 PyObject* source, registration const&);
23 PyObject* source, registration const&);
26 PyObject* source, rvalue_from_python_stage1_data&, registration const&);
31 BOOST_PYTHON_DECL void* reference_result_from_python(PyObject*, registration const&);
32 BOOST_PYTHON_DECL void* pointer_result_from_python(PyObject*, registration const&);
36 BOOST_PYTHON_DECL void throw_no_pointer_from_python(PyObject*, registration const&);
37 BOOST_PYTHON_DECL void throw_no_reference_from_python(PyObject*, registration const&);
Dregistrations.hpp34 struct BOOST_PYTHON_DECL registration struct
37 explicit registration(type_info target, bool is_shared_ptr = false);
38 ~registration();
75 void operator=(registration); // This is not defined, and just keeps MWCW happy.
82 inline registration::registration(type_info target_type, bool is_shared_ptr) in registration() function in boost::python::converter::registration
92 inline bool operator<(registration const& lhs, registration const& rhs) in operator <()
Dregistered.hpp31 struct registration;
38 static registration const& converters;
96 inline registration const&
104 inline registration const&
110 inline registration const&
118 registration const& registered_base<T>::converters = detail::registry_lookup1(type<T>());
Dregistry.hpp15 struct registration;
21 BOOST_PYTHON_DECL registration const& lookup(type_info);
25 BOOST_PYTHON_DECL registration const& lookup_shared_ptr(type_info);
28 BOOST_PYTHON_DECL registration const* query(type_info);
Darg_to_python_base.hpp11 struct registration;
18 arg_to_python_base(void const volatile* source, registration const&);
Dpytype_function.hpp67 const converter::registration *r=converter::registry::query( in get_pytype()
80 const converter::registration *r=converter::registry::query( in get_pytype()
114 const converter::registration *r=converter::registry::query( in get_pytype()
/third_party/boost/libs/asio/include/boost/asio/detail/
Dsignal_set_service.hpp62 class registration class in boost::asio::detail::signal_set_service
66 registration() in registration() function in boost::asio::detail::signal_set_service::registration
90 registration* next_in_table_;
91 registration* prev_in_table_;
94 registration* next_in_set_;
115 registration* signals_;
214 registration* registrations_[max_signal_number];
Dhandler_tracking.hpp166 uintmax_t native_handle, uintmax_t registration);
170 uintmax_t native_handle, uintmax_t registration);
174 uintmax_t registration, unsigned events);
/third_party/boost/boost/asio/detail/
Dsignal_set_service.hpp62 class registration class in boost::asio::detail::signal_set_service
66 registration() in registration() function in boost::asio::detail::signal_set_service::registration
90 registration* next_in_table_;
91 registration* prev_in_table_;
94 registration* next_in_set_;
115 registration* signals_;
214 registration* registrations_[max_signal_number];
Dhandler_tracking.hpp166 uintmax_t native_handle, uintmax_t registration);
170 uintmax_t native_handle, uintmax_t registration);
174 uintmax_t registration, unsigned events);
/third_party/boost/libs/test/doc/test_organization/
Dtest_suites.qbk13 test suite creation and registration facilities:
15 # Test suite with automated registration
23 [#ref_BOOST_AUTO_TEST_SUITE][h3 Automated registration]
24 The solution the __UTF__ presents for automated test suite creation and registration is designed to…
26 and registration. This facility should significantly simplify a test tree construction process in c…
27 manual explicit registration case.
46 …mple creates a test tree that matches exactly the one created in the manual test suite registration
49 [bt_example example12..Test suites with automated registration..run-fail]
57 [bt_example example53..Test suite extension using automated registration facility..run-fail]
59 [h3 Test suites with manual registration]
[all …]
Dtest_cases.qbk25 and register it automatically in a test tree without a necessity to perform manual registration.
27 [h4 Manual registration]
28 While automatic registration is preferred test case declaration API, it is also possible to declare…
33 registration. In other words, within the same test module you can have both test cases implemented …
38 and test case creation/registration points are remote. As a result you may forget to register the t…
41 You need to be sure you exhausted all possible ways to employ automatic registration APIs first bef…
42 to use manual registration. Specifically:
Dnullary_tests.qbk11 automatic and manual registration APIs to declare such test case.
13 [#ref_BOOST_AUTO_TEST_CASE][h4 Automated registration]
26 [bt_example example06..Nullary function based test case with automated registration..run]
28 With this macro you don't need to implement any other registration steps. The macro creates and
31 [#ref_BOOST_TEST_CASE][h4 Manual registration]
49 Both test case creation and registration are performed in the
Dtestorg_summary.qbk20 [Manual registration of a test case]
24 [Automatic declaration and registration of a test case]
28 [Automatic declaration and registration of a test case with a collection of parameters]
32 [Automatic declaration and registration of a typed test case]
/third_party/mbedtls/tests/suites/
Dtest_suite_psa_crypto_se_driver_hal.data147 Key registration: smoke test
150 Key registration: invalid lifetime (volatile internal storage)
153 Key registration: invalid lifetime (internal storage)
156 Key registration: invalid lifetime (no registered driver)
159 Key registration: rejected
162 Key registration: not supported
165 Key registration: key id out of range
168 Key registration: key id min vendor
171 Key registration: key id max vendor except volatile
174 Key registration: key id min volatile
[all …]
/third_party/boost/libs/asio/example/cpp11/handler_tracking/
Dcustom_tracking.hpp162 uintmax_t native_handle, uintmax_t registration) in reactor_registration()
165 ", registration = %" PRIuMAX "\n", native_handle, registration); in reactor_registration()
170 uintmax_t native_handle, uintmax_t registration) in reactor_deregistration()
173 ", registration = %" PRIuMAX "\n", native_handle, registration); in reactor_deregistration()
178 uintmax_t registration, unsigned events) in reactor_events()
182 registration, in reactor_events()
/third_party/boost/doc/html/boost_asio/example/cpp11/handler_tracking/
Dcustom_tracking.hpp162 uintmax_t native_handle, uintmax_t registration) in reactor_registration()
165 ", registration = %" PRIuMAX "\n", native_handle, registration); in reactor_registration()
170 uintmax_t native_handle, uintmax_t registration) in reactor_deregistration()
173 ", registration = %" PRIuMAX "\n", native_handle, registration); in reactor_deregistration()
178 uintmax_t registration, unsigned events) in reactor_events()
182 registration, in reactor_events()
/third_party/boost/boost/asio/detail/impl/
Dsignal_set_service.ipp165 registration* reg = registrations_[i];
258 // Find the appropriate place to insert the registration.
259 registration** insertion_point = &impl.signals_;
260 registration* next = impl.signals_;
270 registration* new_registration = new registration;
299 // Record the new registration in the set.
305 // Insert registration into the registration table.
333 registration** deletion_point = &impl.signals_;
334 registration* reg = impl.signals_;
368 // Remove the registration from the set.
[all …]
/third_party/boost/libs/asio/include/boost/asio/detail/impl/
Dsignal_set_service.ipp165 registration* reg = registrations_[i];
258 // Find the appropriate place to insert the registration.
259 registration** insertion_point = &impl.signals_;
260 registration* next = impl.signals_;
270 registration* new_registration = new registration;
299 // Record the new registration in the set.
305 // Insert registration into the registration table.
333 registration** deletion_point = &impl.signals_;
334 registration* reg = impl.signals_;
368 // Remove the registration from the set.
[all …]
/third_party/boost/libs/vmd/doc/
Dvmd_identifier.qbk71 registration. In order to 'register' an identifier to be recognized by VMD the end-user must create,
77 VMD a registration macro.
79 It is recommended that such registration macros be created in a header file which
82 If a particular registration macro occurs more than once it is
83 not a preprocessing error, so duplicating a registration macro will not lead to any problems
84 since each registration macro of the same name will have the exact same object-like macro
88 that registration macros have been included by header files which a particular end-user
89 of VMD has not created. This should also not lead to particular problems since registration
126 Like the registration macro multiple detection macros of the same identifier
/third_party/cef/libcef/browser/media_router/
Dmedia_router_impl.cc176 CefRefPtr<CefRegistrationImpl> registration = in AddObserver() local
179 &CefMediaRouterImpl::InitializeRegistrationInternal, this, registration)); in AddObserver()
180 return registration.get(); in AddObserver()
221 CefRefPtr<CefRegistrationImpl> registration) { in InitializeRegistrationInternal() argument
224 registration->Initialize(browser_context_getter_); in InitializeRegistrationInternal()
/third_party/cef/tests/ceftests/
Dtest_server.cc405 void InitializeRegistration(CefRefPtr<ObserverRegistration> registration, in InitializeRegistration() argument
408 CefPostTask(TID_UI, base::BindOnce(InitializeRegistration, registration, in InitializeRegistration()
415 registration->Initialize(); in InitializeRegistration()
456 CefRefPtr<ObserverRegistration> registration = in AddObserver() local
458 InitializeRegistration(registration, std::move(callback)); in AddObserver()
459 return registration.get(); in AddObserver()
/third_party/flutter/engine/flutter/lib/ui/
Disolate_name_server.dart40 /// Returns true if registration is successful, and false if the name entry
41 /// already existed (in which case the earlier registration is left
42 /// unchanged). To remove a registration, consider [removePortNameMapping].
60 /// did not exist. To add a registration, consider [registerPortWithName].

1234567891011