Home
last modified time | relevance | path

Searched refs:expected_tokens (Results 1 – 3 of 3) sorted by relevance

/external/mesa3d/src/gallium/tools/trace/
Dparse.py249expected_tokens = ('null', 'bool', 'int', 'uint', 'float', 'string', 'enum', 'array', 'struct', 'p…
251 if self.token.name_or_data in expected_tokens:
254 raise TokenMismatch(" or " .join(expected_tokens), self.token)
/external/google-breakpad/src/testing/scripts/generator/cpp/
Dast.py851 def _GetVarTokensUpTo(self, expected_token_type, *expected_tokens): argument
855 last_token.name not in expected_tokens):
/external/v8/test/cctest/
Dtest-parsing.cc747 i::Token::Value* expected_tokens, in TestStreamScanner() argument
755 i::Token::Value expected = expected_tokens[i]; in TestStreamScanner()
762 } while (expected_tokens[i] != i::Token::ILLEGAL); in TestStreamScanner()