Lines Matching defs:Printf
86 const char *Printf = strpbrk(GetRecord(ID).Attributes, "pP");
87 if (!Printf)
90 HasVAListArg = (*Printf == 'P');
92 ++Printf;
93 assert(*Printf == ':' && "p or P specifier must have be followed by a ':'");
94 ++Printf;
96 assert(strchr(Printf, ':') && "printf specifier must end with a ':'");
97 FormatIdx = strtol(Printf, 0, 10);
115 assert(strchr(Scanf, ':') && "printf specifier must end with a ':'");