HomeSort by relevance Sort by last modified time
    Searched refs:token_start (Results 1 - 9 of 9) sorted by null

  /external/chromium/chrome/browser/importer/
mork_reader.cc 182 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/
scan-gram.l 138 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...]
scan-gram.c 1326 boundary token_start PACIFY_CC (= scanner_cursor); variable
1772 token_start = loc->start; BEGIN SC_ESCAPED_CHARACTER; variable
1778 token_start = loc->start; BEGIN SC_ESCAPED_STRING; variable
    [all...]
  /external/chromium_org/net/cookies/
parsed_cookie.cc 276 std::string::const_iterator* token_start,
278 DCHECK(it && token_start && token_end);
282 // token_start should point at the first character in the token
285 *token_start = *it;
296 if (*it != *token_start) { // We could have an empty token name.
299 SeekBackPast(it, *token_start, kWhitespace);
340 std::string::const_iterator token_start, token_end; local
341 if (ParseToken(&it, end, &token_start, &token_end))
342 return std::string(token_start, token_end);
380 std::string::const_iterator token_start, token_end local
    [all...]
parsed_cookie.h 78 // returns as output arguments token_start and token_end to the start and end
84 std::string::const_iterator* token_start,
  /external/chromium_org/net/dns/
dns_hosts.cc 53 size_t token_start = pos_; local
57 token_ = StringPiece(data_ + token_start, token_end - token_start);
  /external/chromium/net/base/
cookie_monster.cc     [all...]
cookie_monster.h 727 // returns as output arguments token_start and token_end to the start and end
733 std::string::const_iterator* token_start,
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/
pep8.py 922 token_start = token[2][1]
923 if source_line[:token_start].strip() == '':
    [all...]

Completed in 625 milliseconds