Searched refs:last_token (Results 1 – 7 of 7) sorted by relevance
/external/python/cpython3/Lib/test/dtracedata/ |
D | call_stack.stp | 5 last_token = token = tokenize(path, "/"); 7 last_token = token; 10 return last_token;
|
/external/googletest/googlemock/scripts/generator/cpp/ |
D | ast.py | 756 temp_tokens, last_token = \ 759 if last_token.name == '(': 765 temp_tokens.append(last_token) 767 last_token = tokenize.Token(tokenize.SYNTAX, ';', 0, 0) 769 if last_token.name == '[': 773 temp_tokens.append(last_token) 777 temp_tokens2, last_token = \ 781 if last_token.name == ';': 795 if last_token.name == '{': 797 self._AddBackToken(last_token) [all …]
|
/external/google-breakpad/src/testing/scripts/generator/cpp/ |
D | ast.py | 755 temp_tokens, last_token = \ 758 if last_token.name == '(': 764 temp_tokens.append(last_token) 766 last_token = tokenize.Token(tokenize.SYNTAX, ';', 0, 0) 768 if last_token.name == '[': 772 temp_tokens.append(last_token) 776 temp_tokens2, last_token = \ 780 if last_token.name == ';': 794 if last_token.name == '{': 796 self._AddBackToken(last_token) [all …]
|
/external/v8/src/torque/ |
D | earley-parser.cc | 201 MatchedInput last_token = tokens.token_contents[pos]; in RunEarleyAlgorithm() local 202 CurrentSourcePosition::Get() = last_token.pos; in RunEarleyAlgorithm()
|
/external/yapf/yapf/yapflib/ |
D | format_decision_state.py | 216 last_token = bracket.matching_bracket 218 last_token = _LastTokenInLine(bracket.matching_bracket) 220 if not self._FitsOnLine(bracket, last_token):
|
/external/libtextclassifier/annotator/ |
D | annotator.cc | 1144 const int64 last_token = std::min( in CopyCachedTokens() local 1150 tokens.reserve(last_token - first_token); in CopyCachedTokens() 1151 for (int i = first_token; i < last_token; ++i) { in CopyCachedTokens()
|
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/parser/ |
D | Parser.java | 25 private Token last_token; field in Parser 128 this.last_token = this.lexer.peek(); in parse() 863 throw new ParserException(this.last_token, in parse()
|