Lines Matching defs:format
66 // A control character is one that configures a format element. For
88 void StringStream::Add(base::Vector<const char> format,
94 while (offset < format.length()) {
95 if (format[offset] != '%' || elm == elms.length()) {
96 Put(format[offset]);
104 // format element type
105 temp[format_length++] = format[offset++];
106 while (offset < format.length() && IsControlChar(format[offset]))
107 temp[format_length++] = format[offset++];
108 if (offset >= format.length()) return;
109 char type = format[offset];