Lines Matching refs:cur
537 int cur = start;
542 key->begin = cur;
543 while (cur < end && spec[cur] != '&' && spec[cur] != '=')
544 cur++;
545 key->len = cur - key->begin;
548 if (cur < end && spec[cur] == '=')
549 cur++;
552 value->begin = cur;
553 while (cur < end && spec[cur] != '&')
554 cur++;
555 value->len = cur - value->begin;
558 if (cur < end && spec[cur] == '&')
559 cur++;
562 *query = url_parse::MakeRange(cur, end);
584 int cur = 0;
586 cur = scheme.end() + 1; // Advance over the ':' at the end of the scheme.
591 cur = username.end() + 1; // Advance over the '@' or ':' at the end.
597 cur = password.end() + 1; // Advance over the '@' at the end.
603 cur = host.end();
611 cur = port.end();
617 cur = path.end();
625 cur = query.end();
637 return cur;