Home
last modified time | relevance | path

Searched refs:token_start (Results 1 – 6 of 6) sorted by relevance

/external/chromium/chrome/browser/importer/
Dmork_reader.cc182 size_t token_start; in ParseMap() local
193 token_start = idx; in ParseMap()
196 key.assign(&line[token_start], idx - token_start); in ParseMap()
206 token_start = idx; in ParseMap()
216 std::string(&line[token_start], token_end - token_start)); in ParseMap()
299 size_t token_start = idx; // Index of the first char of the token. in ParseTable() local
317 IDString row_id(&line[token_start], token_end - token_start); in ParseTable()
354 size_t token_start = idx; in ParseTable() local
365 column.assign(&line[token_start], token_end - token_start); in ParseTable()
367 column = MorkUnescape(line.substr(token_start, in ParseTable()
[all …]
/external/bison/src/
Dscan-gram.l138 boundary token_start PACIFY_CC (= scanner_cursor);
153 token_start = loc->start;
254 "'" token_start = loc->start; BEGIN SC_ESCAPED_CHARACTER;
257 "\"" token_start = loc->start; BEGIN SC_ESCAPED_STRING;
413 <<EOF>> unexpected_eof (token_start, "*/"); BEGIN context_state;
424 <<EOF>> unexpected_eof (token_start, "*/"); BEGIN context_state;
449 unexpected_newline (token_start, "\"");
451 loc->start = token_start;
457 unexpected_eof (token_start, "\"");
459 loc->start = token_start;
[all …]
Dscan-gram.c1326 boundary token_start PACIFY_CC (= scanner_cursor);
1464 token_start = loc->start;
1772 token_start = loc->start; BEGIN SC_ESCAPED_CHARACTER; variable
1778 token_start = loc->start; BEGIN SC_ESCAPED_STRING; variable
1989 unexpected_eof (token_start, "*/"); BEGIN context_state;
2005 unexpected_eof (token_start, "*/"); BEGIN context_state;
2042 unexpected_newline (token_start, "\"");
2044 loc->start = token_start;
2053 unexpected_eof (token_start, "\"");
2055 loc->start = token_start;
[all …]
/external/chromium/net/base/
Dcookie_monster.cc1722 std::string::const_iterator* token_start, in ParseToken() argument
1724 DCHECK(it && token_start && token_end); in ParseToken()
1731 *token_start = *it; in ParseToken()
1742 if (*it != *token_start) { // We could have an empty token name. in ParseToken()
1745 SeekBackPast(it, *token_start, kWhitespace); in ParseToken()
1828 std::string::const_iterator token_start, token_end; in ParseTokenString() local
1829 if (ParseToken(&it, end, &token_start, &token_end)) in ParseTokenString()
1830 return std::string(token_start, token_end); in ParseTokenString()
1861 std::string::const_iterator token_start, token_end; in ParseTokenValuePairs() local
1862 if (!ParseToken(&it, end, &token_start, &token_end)) in ParseTokenValuePairs()
[all …]
Dcookie_monster.h733 std::string::const_iterator* token_start,
/external/bison/
DChangeLog-201213298 (id_loc, token_start): Use (IF_LINTed) initial values that do not
14250 (id_loc, code_start, token_start): New local vars.
14256 (<INITIAL>"'", "\""): Save token_start.