Lines Matching defs:current
428 // {start == end} would indicate an empty string). Returns the current
498 CharIt FromStringAccumulator::ParsePowerTwo(CharIt current, CharIt end,
508 digit_t d; // Numeric value of the current character {c}.
509 uint32_t c = *current;
519 ++current;
520 if (current == end) {
525 if (!AddPart(part)) return current;
530 return current;
536 CharIt current = start;
554 digit_t d; // Numeric value of the current character {c}.
555 uint32_t c = *current;
571 ++current;
572 if (current == end) {
577 if (!AddPart(multiplier, part, done)) return current;
579 return current;