Searched refs:token_end (Results 1 – 8 of 8) sorted by relevance
/external/bison/src/ |
D | scan-gram.l | 880 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);
|
D | scan-gram.c | 3680 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/ |
D | RewriteTest.cpp | 27 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/ |
D | TokenRewriter.h | 56 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/ |
D | sys_info_chromeos.cc | 134 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/ |
D | typeannotation.py | 276 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/ |
D | TokenRewriter.cpp | 56 if (I == token_end()) return TokenList.end(); in RemapIterator()
|
/external/libchrome/base/strings/ |
D | string_tokenizer.h | 148 const_iterator token_end() const { return token_end_; } in token_end() function
|