Searched defs:token_end (Results 1 - 7 of 7) sorted by relevance

/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/tools/gn/
H A Dtokenizer.cc106 size_t token_end = cur_; local
109 token_end - token_begin);
/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/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/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...]
/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/bison/src/
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...]

Completed in 174 milliseconds