Home
last modified time | relevance | path

Searched refs:token_type (Results 1 – 5 of 5) sorted by relevance

/frameworks/compile/mclinker/lib/Script/
DScriptScanner.ll20 typedef mcld::ScriptParser::token_type token_type;
184 <LDSCRIPT,EXPRESSION>"," { return static_cast<token_type>(*yytext); }
185 <LDSCRIPT,EXPRESSION>"=" { return static_cast<token_type>(*yytext); }
186 <LDSCRIPT,EXPRESSION>"?" { return static_cast<token_type>(*yytext); }
187 <LDSCRIPT,EXPRESSION>":" { return static_cast<token_type>(*yytext); }
188 <LDSCRIPT,EXPRESSION>"|" { return static_cast<token_type>(*yytext); }
189 <LDSCRIPT,EXPRESSION>"^" { return static_cast<token_type>(*yytext); }
190 <LDSCRIPT,EXPRESSION>"&" { return static_cast<token_type>(*yytext); }
191 <LDSCRIPT,EXPRESSION>"<" { return static_cast<token_type>(*yytext); }
192 <LDSCRIPT,EXPRESSION>">" { return static_cast<token_type>(*yytext); }
[all …]
/frameworks/compile/mclinker/include/mcld/Script/
DScriptScanner.h22 mcld::ScriptParser::token_type mcld::ScriptScanner::lex( \
43 virtual ScriptParser::token_type lex(ScriptParser::semantic_type* yylval,
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/src/google/protobuf/compiler/
Dparser.h149 inline bool LookingAtType(io::Tokenizer::TokenType token_type);
Dparser.cc141 inline bool Parser::LookingAtType(io::Tokenizer::TokenType token_type) { in LookingAtType() argument
142 return input_->current().type == token_type; in LookingAtType()
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/src/google/protobuf/
Dtext_format.cc829 bool LookingAtType(io::Tokenizer::TokenType token_type) { in LookingAtType() argument
830 return tokenizer_.current().type == token_type; in LookingAtType()