Home
last modified time | relevance | path

Searched refs:token_end (Results 1 – 5 of 5) 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/clang/lib/Rewrite/
DTokenRewriter.cpp56 if (I == token_end()) return TokenList.end(); in RemapIterator()