HomeSort by relevance Sort by last modified time
    Searched refs:token_type (Results 26 - 50 of 51) sorted by null

12 3

  /external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/
javascripttokenizer.py 350 def _CreateToken(self, string, token_type, line, line_number, values=None):
355 token_type: The type of token.
362 return javascripttokens.JavaScriptToken(string, token_type, line,
  /external/chromium_org/mojo/public/tools/bindings/pylib/mojom_tests/parse/
lexer_unittest.py 45 def _MakeLexToken(token_type, value, lineno=1, lexpos=0):
49 rv.type, rv.value, rv.lineno, rv.lexpos = token_type, value, lineno, lexpos
  /external/chromium_org/sandbox/win/src/
restricted_token_utils.cc 25 TokenType token_type) {
124 switch (token_type) {
  /external/chromium_org/third_party/closure_linter/closure_linter/
javascripttokenizer.py 350 def _CreateToken(self, string, token_type, line, line_number, values=None):
355 token_type: The type of token.
362 return javascripttokens.JavaScriptToken(string, token_type, line,
  /external/chromium_org/third_party/jinja2/
parser.py 431 token_type = self.stream.current.type
432 if token_type in _compare_operators:
434 ops.append(nodes.Operand(token_type, self.parse_add()))
529 token_type = self.stream.current.type
531 if token_type == 'sub':
534 elif token_type == 'add':
662 token_type = self.stream.current.type
663 if token_type == 'dot' or token_type == 'lbracket':
667 elif token_type == 'lparen'
    [all...]
lexer.py 145 def _describe_token_type(token_type):
146 if token_type in reverse_operators:
147 return reverse_operators[token_type]
161 }.get(token_type, token_type)
242 token type or ``'token_type:token_value'``. This can only test
ext.py 531 for _, token_type, token_value in \
533 if token_type in ('comment', 'linecomment'):
  /external/chromium_org/v8/src/
token.h 182 return token_type[tok] == 'K';
287 static const char token_type[NUM_TOKENS];
  /external/protobuf/src/google/protobuf/compiler/
parser.h 145 inline bool LookingAtType(io::Tokenizer::TokenType token_type);
parser.cc 114 inline bool Parser::LookingAtType(io::Tokenizer::TokenType token_type) {
115 return input_->current().type == token_type;
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/examples/apps/hello-php/lib/oauth/
OAuth.php 616 private function get_token($request, $consumer, $token_type="access") {
622 $consumer, $token_type, $token_field
625 throw new OAuthException("Invalid $token_type token: $token_field");
707 function lookup_token($consumer, $token_type, $token) {
  /external/chromium_org/chrome/browser/sync/glue/
sync_backend_host_impl.h 241 syncer::BootstrapTokenType token_type);
sync_backend_host_impl.cc 719 syncer::BootstrapTokenType token_type) {
722 if (token_type == syncer::PASSPHRASE_BOOTSTRAP_TOKEN)
  /external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/
parser.h 150 inline bool LookingAtType(io::Tokenizer::TokenType token_type);
parser.cc 114 inline bool Parser::LookingAtType(io::Tokenizer::TokenType token_type) {
115 return input_->current().type == token_type;
    [all...]
  /external/chromium_org/sync/tools/testserver/
chromiumsync.py     [all...]
sync_testserver.py 483 token_type = ''
493 if 'token_type' in query_params:
494 token_type = query_params['token_type'][0]
498 response_code, request_token, access_token, expires_in, token_type))
  /external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
BaseRecognizer.pm 418 Readonly my $usage => 'void consume_until(IntStream input, (int token_type | BitSet set))';
430 my ($self, $input, $token_type) = @_;
433 while ($ttype != ANTLR::Runtime::Token->EOF && $ttype != $token_type) {
  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/ast-output/
hetero-nodes.rb 470 def initialize(token_type, x)
471 super(token_type)
  /external/chromium_org/tools/gn/
parser.cc 108 bool Parser::IsStatementBreak(Token::Type token_type) const {
109 switch (token_type) {
  /external/bison/data/
lalr1.cc 85 typedef token::yytokentype token_type;
    [all...]
glr.cc 277 typedef token::yytokentype token_type;
  /external/protobuf/src/google/protobuf/
text_format.cc 451 bool LookingAtType(io::Tokenizer::TokenType token_type) {
452 return tokenizer_.current().type == token_type;
    [all...]
  /external/chromium_org/third_party/protobuf/src/google/protobuf/
text_format.cc 713 bool LookingAtType(io::Tokenizer::TokenType token_type) {
714 return tokenizer_.current().type == token_type;
    [all...]
  /external/bison/examples/calc++/
calc++-scanner.cc 562 /* By default yylex returns int, we use token_type.
564 not of token_type. */
941 return yy::calcxx_parser::token_type (yytext[0]);
    [all...]

Completed in 1711 milliseconds

12 3