Lines Matching refs:function
44 * For providing a substitute for a function that is missing on some
58 * For providing a replacement for a function that exists on all platforms,
77 * For providing a replacement for a function that exists on some platforms
110 declares a replacement function, named rpl_func, with the given prototype,
122 declares the system function, named func, with the given prototype,
153 except that the C function rpl_func may have a slightly different
171 that redirects to the system provided function func, if GNULIB_NAMESPACE
196 except that the C function func may have a slightly different declaration.
214 except that the C function is picked among a set of overloaded functions,
220 The inner cast: When the function is defined as a set of overloaded
222 When the function is defined as a single variant, it works as a
251 "The symbol ::" #func " refers to the system function. " \
279 "The symbol ::" #func " refers to the system function. " \
300 # define _GL_WARN_ON_USE(function, message) \
301 extern __typeof__ (function) function __attribute__ ((__warning__ (message)))
303 /* Verify the existence of the function. */
304 # define _GL_WARN_ON_USE(function, message) \
305 extern __typeof__ (function) function
307 # define _GL_WARN_ON_USE(function, message) \
312 /* _GL_WARN_ON_USE_CXX (function, rettype, parameters_and_attributes, "string")
313 is like _GL_WARN_ON_USE (function, "string"), except that the function is
320 # define _GL_WARN_ON_USE_CXX(function,rettype,parameters_and_attributes,msg) \
321 extern rettype function parameters_and_attributes \
324 /* Verify the existence of the function. */
325 # define _GL_WARN_ON_USE_CXX(function,rettype,parameters_and_attributes,msg) \
326 extern rettype function parameters_and_attributes
328 # define _GL_WARN_ON_USE_CXX(function,rettype,parameters_and_attributes,msg) \