Home
last modified time | relevance | path

Searched refs:token_end (Results 1 – 8 of 8) sorted by relevance

/external/bison/src/
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);
Dscan-gram.c3680 unexpected_end (boundary start, char const *msgid, char const *token_end) in unexpected_end() argument
3685 token_end = quote (token_end); in unexpected_end()
3687 if (!strcmp (token_end, "'\\''")) in unexpected_end()
3688 token_end = "\"'\""; in unexpected_end()
3689 complain_at (loc, _(msgid), token_end); in unexpected_end()
3699 unexpected_eof (boundary start, char const *token_end) in unexpected_eof() argument
3701 unexpected_end (start, N_("missing %s at end of file"), token_end); in unexpected_eof()
3710 unexpected_newline (boundary start, char const *token_end) in unexpected_newline() argument
3712 unexpected_end (start, N_("missing %s at end of line"), token_end); in unexpected_newline()
/external/clang/lib/Frontend/Rewrite/
DRewriteTest.cpp27 E = Rewriter.token_end(); I != E; ++I) { in DoRewriteTest()
37 E = Rewriter.token_end(); I != E; ++I) in DoRewriteTest()
/external/clang/include/clang/Rewrite/Core/
DTokenRewriter.h56 token_iterator token_end() const { return TokenList.end(); } in token_end() function
61 assert(I != token_end() && "Cannot insert after token_end()!"); in AddTokenAfter()
/external/libchrome/base/
Dsys_info_chromeos.cc134 StringToInt(StringPiece(tokenizer.token_begin(), tokenizer.token_end()), in ParseLsbRelease()
138 StringToInt(StringPiece(tokenizer.token_begin(), tokenizer.token_end()), in ParseLsbRelease()
142 StringToInt(StringPiece(tokenizer.token_begin(), tokenizer.token_end()), in ParseLsbRelease()
/external/chromium-trace/catapult/third_party/closure_linter/closure_linter/
Dtypeannotation.py276 def Parse(token, token_end, error_handler): argument
278 return TypeAnnotationParser(error_handler).Parse(token.next, token_end)
289 def Parse(self, token, token_end): argument
296 while token and token != token_end:
/external/clang/lib/Rewrite/
DTokenRewriter.cpp56 if (I == token_end()) return TokenList.end(); in RemapIterator()
/external/libchrome/base/strings/
Dstring_tokenizer.h148 const_iterator token_end() const { return token_end_; } in token_end() function