Lines Matching defs:percent
319 char* percent;
328 // Find each percent sign.
329 while ((percent = strchr(ptr, '%')) != NULL)
333 // If the percent sign is not where we are, write what's inbetween
335 if (percent != ptr)
337 size_t len = (size_t) (percent - ptr);
341 c = percent[1];
386 assert((c == 'l' || c == 'z') && percent[2] == 'u');
401 ptr = percent + 2 + (c == 'l' || c == 'z');
404 // If we get here, there are no more percent signs, so we just output