Lines Matching full:function
14 * Moved the *duplicate C object description* warnings for function
18 * Add option 'name' to the "c:function:" directive. With option 'name' the
19 ref-name of a function can be modified. E.g.::
21 .. c:function:: int ioctl( int fd, int request )
25 from 'ioctl' to 'VIDIOC_LOG_STATUS'. The function is referenced by::
30 * Handle signatures of function-like macros well. Don't try to deduce
31 arguments types of function-like macros.
72 u"""Handles signatures of function-like macros.
74 If the objtype is 'function' and the the signature ``sig`` is a
75 function-like macro, the name of the macro is returned. Otherwise
78 if not self.objtype == 'function':
99 # This is a function-like macro, it's arguments are typeless!
120 if self.objtype == 'function':
138 if self.objtype == 'function':
163 'function': CObject,