Home
last modified time | relevance | path

Searched defs:arg_from_python (Results 1 – 2 of 2) sorted by relevance

/third_party/boost/boost/python/
Darg_from_python.hpp18 struct arg_from_python struct
35 >::type base;
42 struct arg_from_python<PyObject*> struct
44 typedef PyObject* result_type;
46 arg_from_python(PyObject* p) : m_source(p) {} in arg_from_python() function
47 bool convertible() const { return true; } in convertible()
48 PyObject* operator()() const { return m_source; } in operator ()()
50 PyObject* m_source;
54 struct arg_from_python<PyObject* const&> struct
56 typedef PyObject* const& result_type;
[all …]
/third_party/boost/boost/parameter/
Dpython.hpp93 struct arg_from_python<parameter::aux::maybe<T> > struct
96 arg_from_python(PyObject* p) in arg_from_python() function
101 bool convertible() const in convertible()
106 parameter::aux::maybe<T> operator()() in operator ()()
120 bool empty;