Lines Matching defs:f
21 int apply_int_int(PyObject* f, int x) in apply_int_int()
26 void apply_void_int(PyObject* f, int x) in apply_void_int()
48 X apply_X_X(PyObject* f, X x) in apply_X_X()
53 void apply_void_X_ref(PyObject* f, X& x) in apply_void_X_ref()
58 X& apply_X_ref_handle(PyObject* f, handle<> obj) in apply_X_ref_handle()
63 X* apply_X_ptr_handle_cref(PyObject* f, handle<> const& obj) in apply_X_ptr_handle_cref()
68 void apply_void_X_cref(PyObject* f, X const& x) in apply_void_X_cref()
73 void apply_void_X_ptr(PyObject* f, X* x) in apply_void_X_ptr()
78 void apply_void_X_deep_ptr(PyObject* f, X* x) in apply_void_X_deep_ptr()
83 char const* apply_cstring_cstring(PyObject* f, char const* s) in apply_cstring_cstring()
88 char const* apply_cstring_pyobject(PyObject* f, PyObject* s) in apply_cstring_pyobject()
93 char apply_char_char(PyObject* f, char c) in apply_char_char()
98 char const* apply_to_string_literal(PyObject* f) in apply_to_string_literal()
110 object apply_object_object(PyObject* f, object x) in apply_object_object()