Searched refs:token_start (Results 1 - 5 of 5) sorted by relevance

/external/chromium/chrome/browser/importer/
H A Dmork_reader.cc182 size_t token_start; local
193 token_start = idx;
196 key.assign(&line[token_start], idx - token_start);
206 token_start = idx;
216 std::string(&line[token_start], token_end - token_start));
299 size_t token_start = idx; // Index of the first char of the token. local
317 IDString row_id(&line[token_start], token_end - token_start);
354 size_t token_start = idx; local
388 size_t token_start = idx - 1; // Include the '=' or '^' marker. local
[all...]
/external/bison/src/
H A Dscan-gram.l186 boundary token_start IF_LINT (= scanner_cursor);
201 token_start = loc->start;
285 "'" STRING_GROW; token_start = loc->start; BEGIN SC_ESCAPED_CHARACTER;
288 "\"" token_start = loc->start; BEGIN SC_ESCAPED_STRING;
366 <<EOF>> unexpected_eof (token_start, "*/"); BEGIN context_state;
377 <<EOF>> unexpected_eof (token_start, "*/"); BEGIN context_state;
402 loc->start = token_start;
408 \n unexpected_newline (token_start, "\""); BEGIN INITIAL;
409 <<EOF>> unexpected_eof (token_start, "\""); BEGIN INITIAL;
423 loc->start = token_start;
[all...]
H A Dscan-gram.c1257 boundary token_start IF_LINT (= scanner_cursor); variable
1395 token_start = loc->start;
1668 STRING_GROW; token_start = loc->start; BEGIN SC_ESCAPED_CHARACTER;
1674 token_start = loc->start; BEGIN SC_ESCAPED_STRING; variable
1786 unexpected_eof (token_start, "*/"); BEGIN context_state;
1802 unexpected_eof (token_start, "*/"); BEGIN context_state;
1838 loc->start = token_start;
1849 unexpected_newline (token_start, "\""); BEGIN INITIAL;
1853 unexpected_eof (token_start, "\""); BEGIN INITIAL;
1869 loc->start = token_start;
[all...]
/external/chromium/net/base/
H A Dcookie_monster.cc1722 std::string::const_iterator* token_start,
1724 DCHECK(it && token_start && token_end);
1728 // token_start should point at the first character in the token
1731 *token_start = *it;
1742 if (*it != *token_start) { // We could have an empty token name.
1745 SeekBackPast(it, *token_start, kWhitespace);
1828 std::string::const_iterator token_start, token_end;
1829 if (ParseToken(&it, end, &token_start, &token_end))
1830 return std::string(token_start, token_end);
1861 std::string::const_iterator token_start, token_en
[all...]
H A Dcookie_monster.h727 // returns as output arguments token_start and token_end to the start and end
733 std::string::const_iterator* token_start,

Completed in 111 milliseconds