Lines Matching refs:converters

40     , registration const& converters)  in rvalue_from_python_stage1()  argument
46 …data.convertible = objects::find_instance_impl(source, converters.target_type, converters.is_share… in rvalue_from_python_stage1()
50 for (rvalue_from_python_chain const* chain = converters.rvalue_chain; in rvalue_from_python_stage1()
83 registration const& converters = *static_cast<registration const*>(converters_); in rvalue_result_from_python() local
86 data = rvalue_from_python_stage1(src, converters); in rvalue_result_from_python()
87 return rvalue_from_python_stage2(src, data, converters); in rvalue_result_from_python()
91 PyObject* source, rvalue_from_python_stage1_data& data, registration const& converters) in rvalue_from_python_stage2() argument
103 , converters.target_type.name() in rvalue_from_python_stage2()
122 , registration const& converters) in get_lvalue_from_python() argument
125 void* x = objects::find_instance_impl(source, converters.target_type); in get_lvalue_from_python()
129 lvalue_from_python_chain const* chain = converters.lvalue_chain; in get_lvalue_from_python()
175 , registration const& converters) in implicit_rvalue_convertible_from_python() argument
177 if (objects::find_instance_impl(source, converters.target_type)) in implicit_rvalue_convertible_from_python()
180 rvalue_from_python_chain const* chain = converters.rvalue_chain; 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() argument
210 , converters.target_type.name() in throw_no_lvalue_from_python()
221 , registration const& converters in lvalue_result_from_python() argument
236 , converters.target_type.name())); in lvalue_result_from_python()
243 void* result = get_lvalue_from_python(source, converters); in lvalue_result_from_python()
245 (throw_no_lvalue_from_python)(source, converters, ref_type); in lvalue_result_from_python()
251 …OST_PYTHON_DECL void throw_no_pointer_from_python(PyObject* source, registration const& converters) in throw_no_pointer_from_python() argument
253 (throw_no_lvalue_from_python)(source, converters, "pointer"); in throw_no_pointer_from_python()
256 …T_PYTHON_DECL void throw_no_reference_from_python(PyObject* source, registration const& converters) in throw_no_reference_from_python() argument
258 (throw_no_lvalue_from_python)(source, converters, "reference"); in throw_no_reference_from_python()
263 , registration const& converters) in reference_result_from_python() argument
265 return (lvalue_result_from_python)(source, converters, "reference"); in reference_result_from_python()
270 , registration const& converters) in pointer_result_from_python() argument
277 return (lvalue_result_from_python)(source, converters, "pointer"); in pointer_result_from_python()