Searched refs:fmtarg (Results 1 – 2 of 2) sorted by relevance
/third_party/FreeBSD/sys/sys/ |
D | cdefs.h | 521 #define __printflike(fmtarg, firstvararg) argument 522 #define __scanflike(fmtarg, firstvararg) argument 523 #define __format_arg(fmtarg) argument 524 #define __strfmonlike(fmtarg, firstvararg) argument 525 #define __strftimelike(fmtarg, firstvararg) argument 527 #define __printflike(fmtarg, firstvararg) \ argument 528 __attribute__((__format__ (__printf__, fmtarg, firstvararg))) 529 #define __scanflike(fmtarg, firstvararg) \ argument 530 __attribute__((__format__ (__scanf__, fmtarg, firstvararg))) 531 #define __format_arg(fmtarg) __attribute__((__format_arg__ (fmtarg))) argument [all …]
|
/third_party/python/Modules/_decimal/ |
D | _decimal.c | 3220 PyObject *fmtarg; in dec_format() local 3231 if (!PyArg_ParseTuple(args, "O|O", &fmtarg, &override)) { in dec_format() 3235 if (PyUnicode_Check(fmtarg)) { in dec_format() 3236 fmt = (char *)PyUnicode_AsUTF8AndSize(fmtarg, &size); in dec_format()
|