Lines Matching defs:cur
104 char cur = *str++;
105 while (cur != '\0' && (out_buffer_pos_ < (out_buffer_.length() - 1))) {
106 PrintChar(cur);
107 cur = *str++;
334 char cur = *format++;
335 while ((cur != 0) && (out_buffer_pos_ < (out_buffer_.length() - 1))) {
336 if (cur == '\'') { // Single quote is used as the formatting escape.
339 out_buffer_[out_buffer_pos_++] = cur;
341 cur = *format++;