HomeSort by relevance Sort by last modified time
    Searched defs:token_end (Results 1 - 6 of 6) sorted by null

  /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_org/tools/gn/
tokenizer.cc 106 size_t token_end = cur_; local
109 token_end - token_begin);
  /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/dns/
dns_hosts.cc 64 size_t token_end = (pos_ == std::string::npos) ? end_ : pos_; local
66 token_ = StringPiece(data_ + token_start, token_end - token_start);
  /external/chromium_org/net/cookies/
parsed_cookie.cc 264 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);
    [all...]
  /external/chromium_org/tools/clang/plugins/
FindBadConstructsConsumer.cpp 325 SourceLocation token_end = local
327 diagnostic().Report(token_end, diag_method_requires_override_)
328 << FixItHint::CreateInsertion(token_end, " OVERRIDE");

Completed in 1417 milliseconds