HomeSort by relevance Sort by last modified time
    Searched refs:token_end (Results 1 - 25 of 32) sorted by null

1 2

  /external/clang/lib/Rewrite/Frontend/
RewriteTest.cpp 27 E = Rewriter.token_end(); I != E; ++I) {
37 E = Rewriter.token_end(); I != E; ++I)
  /external/clang/include/clang/Rewrite/Core/
TokenRewriter.h 56 token_iterator token_end() const { return TokenList.end(); } function in class:clang::TokenRewriter
61 assert(I != token_end() && "Cannot insert after token_end()!");
  /external/chromium/base/
sys_info_chromeos.cc 103 tokenizer.token_end(),
108 tokenizer.token_end(),
112 tokenizer.token_end(),
string_tokenizer.h 147 const_iterator token_end() const { return token_end_; } function in class:StringTokenizerT
  /external/chromium_org/base/
sys_info_chromeos.cc 99 tokenizer.token_end()),
104 tokenizer.token_end()),
108 tokenizer.token_end()),
  /external/chromium/chrome/browser/importer/
mork_reader.cc 212 size_t token_end = std::min(idx, len); local
216 std::string(&line[token_start], token_end - token_start));
306 size_t token_end = idx; // Index of the char following the token. local
317 IDString row_id(&line[token_start], token_end - token_start);
361 size_t token_end = std::min(idx, len); local
365 column.assign(&line[token_start], token_end - token_start);
368 token_end - token_start));
394 size_t token_end = std::min(idx, len); local
399 token_end - token_start);
402 MorkUnescape(line.substr(token_start, token_end - token_start))
    [all...]
  /external/chromium_org/net/cookies/
parsed_cookie.cc 277 std::string::const_iterator* token_end) {
278 DCHECK(it && token_start && token_end);
294 // token_end should point after the last interesting token character,
303 *token_end = *it;
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
381 if (!ParseToken(&it, end, &token_start, &token_end))
399 pair.first = std::string(token_start, token_end);
    [all...]
parsed_cookie.h 78 // returns as output arguments token_start and token_end to the start and end
85 std::string::const_iterator* token_end);
  /external/chromium_org/net/dns/
dns_hosts.cc 55 size_t token_end = (pos_ == std::string::npos) ? end_ : pos_; local
57 token_ = StringPiece(data_ + token_start, token_end - token_start);
  /external/bison/src/
scan-gram.l 876 | the expected TOKEN_END. |
880 unexpected_end (boundary start, char const *msgid, char const *token_end)
885 token_end = quote (token_end);
887 if (!strcmp (token_end, "'\\''"))
888 token_end = "\"'\"";
889 complain_at (loc, _(msgid), token_end);
895 | An end of file was encountered and the expected TOKEN_END was missing. |
899 unexpected_eof (boundary start, char const *token_end)
901 unexpected_end (start, N_("missing %s at end of file"), token_end);
    [all...]
scan-gram.c     [all...]
  /external/chromium/net/proxy/
proxy_list.cc 28 str_tok.token_begin(), str_tok.token_end(), ProxyServer::SCHEME_HTTP);
94 entry_tok.token_begin(), entry_tok.token_end());
proxy_config.cc 85 proxy_server_list.token_begin(), proxy_server_list.token_end(), "=");
  /external/chromium_org/content/common/android/
address_parser.cc 111 words.push_back(Word(tokenizer.token_begin(), tokenizer.token_end()));
188 tokenizer.token_end()));
  /external/chromium_org/net/http/
http_util.cc 122 std::find(tokenizer.token_begin(), tokenizer.token_end(), '=');
123 if (equals_sign == tokenizer.token_end())
131 string::const_iterator param_value_end = tokenizer.token_end();
132 DCHECK(param_value_begin <= tokenizer.token_end());
611 const char* line_end = lines.token_end();
645 disassembled_headers.append(tokenizer.token_begin(), tokenizer.token_end());
779 values_end_ = lines_.token_end();
834 value_end_ = values_.token_end();
http_auth.cc 133 scheme_end_ = tok.token_end();
  /external/clang/lib/Rewrite/Core/
TokenRewriter.cpp 56 if (I == token_end()) return TokenList.end();
  /external/chromium_org/base/strings/
string_tokenizer.h 148 const_iterator token_end() const { return token_end_; } function in class:base::StringTokenizerT
  /external/chromium_org/net/proxy/
proxy_list.cc 31 str_tok.token_begin(), str_tok.token_end(), ProxyServer::SCHEME_HTTP);
136 entry_tok.token_begin(), entry_tok.token_end());
proxy_config.cc 96 proxy_server_list.token_begin(), proxy_server_list.token_end(), "=");
  /external/chromium_org/tools/gn/
tokenizer.cc 79 size_t token_end = cur_; local
90 token_end - token_begin)));
  /external/chromium_org/tools/clang/plugins/
FindBadConstructs.cpp 316 SourceLocation token_end = Lexer::getLocForEndOfToken( local
318 diagnostic().Report(token_end, diag_method_requires_override_)
319 << FixItHint::CreateInsertion(token_end, " OVERRIDE");
  /external/chromium/net/http/
http_auth.cc 121 scheme_end_ = tok.token_end();
  /external/chromium/net/base/
cookie_monster.cc     [all...]
  /external/chromium_org/chrome_frame/
html_utils.cc 134 if (::LowerCaseEqualsASCII(tokenizer.token_begin(), tokenizer.token_end(),
141 attribute_value->end_ = tokenizer.token_end();

Completed in 1298 milliseconds

1 2