Searched refs:token_end (Results 1 - 20 of 20) sorted by relevance

/external/clang/lib/Rewrite/Frontend/
H A DRewriteTest.cpp27 E = Rewriter.token_end(); I != E; ++I) {
37 E = Rewriter.token_end(); I != E; ++I)
/external/clang/include/clang/Rewrite/Core/
H A DTokenRewriter.h56 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_org/net/cookies/
H A Dparsed_cookie.cc264 std::string::const_iterator* token_end) {
265 DCHECK(it && token_start && token_end);
281 // token_end should point after the last interesting token character,
290 *token_end = *it;
327 std::string::const_iterator token_start, token_end; local
328 if (ParseToken(&it, end, &token_start, &token_end))
329 return std::string(token_start, token_end);
358 std::string::const_iterator token_start, token_end; local
359 if (!ParseToken(&it, end, &token_start, &token_end))
377 pair.first = std::string(token_start, token_end);
261 ParseToken(std::string::const_iterator* it, const std::string::const_iterator& end, std::string::const_iterator* token_start, std::string::const_iterator* token_end) argument
[all...]
H A Dparsed_cookie.h80 // returns as output arguments token_start and token_end to the start and end
87 std::string::const_iterator* token_end);
/external/chromium_org/base/
H A Dsys_info_chromeos.cc131 StringToInt(StringPiece(tokenizer.token_begin(), tokenizer.token_end()),
135 StringToInt(StringPiece(tokenizer.token_begin(), tokenizer.token_end()),
139 StringToInt(StringPiece(tokenizer.token_begin(), tokenizer.token_end()),
/external/chromium_org/net/http/
H A Dhttp_auth_challenge_tokenizer.cc54 scheme_end_ = tok.token_end();
H A Dhttp_util.cc108 std::find(tokenizer.token_begin(), tokenizer.token_end(), '=');
109 if (equals_sign == tokenizer.token_end())
117 std::string::const_iterator param_value_end = tokenizer.token_end();
118 DCHECK(param_value_begin <= tokenizer.token_end());
610 const char* line_end = lines.token_end();
644 disassembled_headers.append(tokenizer.token_begin(), tokenizer.token_end());
779 values_end_ = lines_.token_end();
834 value_end_ = values_.token_end();
/external/bison/src/
H A Dscan-gram.l880 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);
899 unexpected_eof (boundary start, char const *token_end)
901 unexpected_end (start, N_("missing %s at end of file"), token_end);
910 unexpected_newline (boundary start, char const *token_end)
912 unexpected_end (start, N_("missing %s at end of line"), token_end);
[all...]
H A Dscan-gram.c3680 unexpected_end (boundary start, char const *msgid, char const *token_end) argument
3685 token_end = quote (token_end);
3687 if (!strcmp (token_end, "'\\''"))
3688 token_end = "\"'\"";
3689 complain_at (loc, _(msgid), token_end);
3699 unexpected_eof (boundary start, char const *token_end) argument
3701 unexpected_end (start, N_("missing %s at end of file"), token_end);
3710 unexpected_newline (boundary start, char const *token_end) argument
3712 unexpected_end (start, N_("missing %s at end of line"), token_end);
[all...]
/external/chromium_org/content/common/android/
H A Daddress_parser.cc112 words.push_back(Word(tokenizer.token_begin(), tokenizer.token_end()));
189 tokenizer.token_end()));
H A Daddress_parser_unittest.cc23 words->push_back(Word(tokenizer.token_begin(), tokenizer.token_end()));
51 words.push_back(Word(tokenizer.token_begin(), tokenizer.token_end()));
H A Daddress_parser_internal.cc401 Word(tokenizer->token_begin(), tokenizer->token_end()));
/external/chromium_org/net/dns/
H A Ddns_hosts.cc64 size_t token_end = (pos_ == std::string::npos) ? end_ : pos_; local
66 token_ = StringPiece(data_ + token_start, token_end - token_start);
/external/clang/lib/Rewrite/Core/
H A DTokenRewriter.cpp56 if (I == token_end()) return TokenList.end();
/external/chromium_org/base/strings/
H A Dstring_tokenizer.h148 const_iterator token_end() const { return token_end_; } function in class:base::StringTokenizerT
/external/chromium_org/net/proxy/
H A Dproxy_list.cc30 str_tok.token_begin(), str_tok.token_end(), ProxyServer::SCHEME_HTTP);
117 entry_tok.token_begin(), entry_tok.token_end());
H A Dproxy_config.cc96 proxy_server_list.token_begin(), proxy_server_list.token_end(), "=");
/external/chromium_org/tools/clang/plugins/
H A DFindBadConstructsConsumer.cpp325 SourceLocation token_end = local
327 diagnostic().Report(token_end, diag_method_requires_override_)
328 << FixItHint::CreateInsertion(token_end, " OVERRIDE");
/external/chromium_org/tools/gn/
H A Dtokenizer.cc106 size_t token_end = cur_; local
109 token_end - token_begin);
/external/chromium_org/net/websockets/
H A Dwebsocket_handshake_handler.cc95 std::string::const_iterator line_end = lines.token_end();

Completed in 279 milliseconds