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

12

  /external/v8/src/parsing/
token.h 199 return token_type[tok] == 'K';
346 static const char token_type[NUM_TOKENS];
  /external/libmojo/third_party/jinja2/
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'):
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Other/Maintained/Tools/Pccts/h/
AParser.cpp 75 delete [] token_type;
99 token_type = new ANTLRTokenType[LLk];
171 for (i=1; i<=LLk; i++) token_type[i-1] =
204 * fill token_type[] fast reference cache also. NLA is the next place where
  /device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/h/
AParser.cpp 75 delete [] token_type;
99 token_type = new ANTLRTokenType[LLk];
180 for (i=1; i<=LLk; i++) token_type[i-1] =
213 * fill token_type[] fast reference cache also. NLA is the next place where
  /prebuilts/misc/darwin-x86_64/protobuf2.5/include/google/protobuf/compiler/
parser.h 150 inline bool LookingAtType(io::Tokenizer::TokenType token_type);
  /prebuilts/misc/linux-x86_64/protobuf2.5/include/google/protobuf/compiler/
parser.h 150 inline bool LookingAtType(io::Tokenizer::TokenType token_type);
  /prebuilts/misc/windows/protobuf2.5/include/google/protobuf/compiler/
parser.h 150 inline bool LookingAtType(io::Tokenizer::TokenType token_type);
  /prebuilts/tools/linux-x86_64/protoc/include/google/protobuf/compiler/
parser.h 150 inline bool LookingAtType(io::Tokenizer::TokenType 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/bison/data/
lalr1.cc 85 typedef token::yytokentype token_type;
    [all...]
glr.cc 277 typedef token::yytokentype token_type;
  /external/protobuf/src/google/protobuf/compiler/
parser.h 149 inline bool LookingAtType(io::Tokenizer::TokenType token_type);
parser.cc 141 inline bool Parser::LookingAtType(io::Tokenizer::TokenType token_type) {
142 return input_->current().type == token_type;
    [all...]
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/compiler/
parser.h 149 inline bool LookingAtType(io::Tokenizer::TokenType token_type);
  /external/robolectric/v3/libs/
vtd-xml-2.11.jar 
  /prebuilts/misc/common/robolectric/lib/
vtd-xml-2.11.jar 
  /prebuilts/tools/common/m2/repository/com/ximpleware/vtd-xml/2.11/
vtd-xml-2.11.jar 
  /external/protobuf/src/google/protobuf/
text_format.cc 812 bool LookingAtType(io::Tokenizer::TokenType token_type) {
813 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 3795 milliseconds

12