/external/chromium/testing/gmock/scripts/generator/cpp/ |
tokenize.py | 74 def __init__(self, token_type, name, start, end): 75 self.token_type = token_type 147 token_type = UNKNOWN 151 token_type = NAME 159 token_type = CONSTANT 162 token_type = CONSTANT 173 token_type = SYNTAX 183 token_type = SYNTAX 186 token_type = CONSTAN [all...] |
ast.py | 549 if parts[-1].token_type == tokenize.NAME: 579 if (type_name and type_name[-1].token_type == tokenize.NAME and 580 p.token_type == tokenize.NAME): 713 if token.token_type == _INTERNAL_TOKEN: 738 if token.token_type == tokenize.NAME: 749 if next.token_type == tokenize.SYNTAX and next.name == '(': 805 elif token.token_type == tokenize.SYNTAX: 811 if (token.token_type == tokenize.NAME and 815 elif token.token_type == tokenize.PREPROCESSOR: 854 while (last_token.token_type != expected_token_type o [all...] |
/external/chromium/testing/gtest/scripts/ |
pump.py | 140 def __init__(self, start=None, end=None, value=None, token_type=None): 150 self.token_type = token_type 154 self.start, self.value, self.token_type) 160 self.token_type) 171 for (regex, token_type) in token_table: 178 best_match_token_type = token_type 197 (start_column, length, token_type) = m 202 return MakeToken(lines, found_start, found_end, token_type) 237 def MakeToken(lines, start, end, token_type) [all...] |
/external/bison/src/ |
scan-gram.l | 136 static void handle_dollar (int token_type, char *cp, location loc); 137 static void handle_at (int token_type, char *cp, location loc); 174 int token_type IF_LINT (= 0); 224 "%destructor" token_type = PERCENT_DESTRUCTOR; BEGIN SC_PRE_CODE; 231 "%initial-action" token_type = PERCENT_INITIAL_ACTION; BEGIN SC_PRE_CODE; 234 "%lex-param" token_type = PERCENT_LEX_PARAM; BEGIN SC_PRE_CODE; 244 "%parse-param" token_type = PERCENT_PARSE_PARAM; BEGIN SC_PRE_CODE; 246 "%printer" token_type = PERCENT_PRINTER; BEGIN SC_PRE_CODE; 256 "%union" token_type = PERCENT_UNION; BEGIN SC_PRE_CODE; 298 token_type = BRACED_CODE [all...] |
scan-gram.c | 1245 int token_type IF_LINT (= 0); variable 1444 token_type = PERCENT_DESTRUCTOR; BEGIN SC_PRE_CODE; variable 1479 token_type = PERCENT_INITIAL_ACTION; BEGIN SC_PRE_CODE; variable 1494 token_type = PERCENT_LEX_PARAM; BEGIN SC_PRE_CODE; variable 1544 token_type = PERCENT_PARSE_PARAM; BEGIN SC_PRE_CODE; variable 1554 token_type = PERCENT_PRINTER; BEGIN SC_PRE_CODE; variable 1604 token_type = PERCENT_UNION; BEGIN SC_PRE_CODE; variable [all...] |
/external/v8/src/ |
token.cc | 57 const char Token::token_type[] = { member in class:v8::internal::Token
|
token.h | 199 return token_type[tok] == 'K'; 283 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/chrome/common/extensions/docs/examples/apps/hello-php/lib/oauth/ |
OAuth.php | 616 private function get_token($request, $consumer, $token_type="access") { variable 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/bison/data/ |
lalr1.cc | 129 typedef token::yytokentype token_type;
|
glr.cc | 310 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...] |