HomeSort by relevance Sort by last modified time
    Searched full:"$ token" (Results 1 - 25 of 57) sorted by null

1 2 3

  /external/antlr/antlr-3.4/runtime/Perl5/examples/id/
id.pl 16 my $token = $lexer->next_token();
17 last if $token->get_type() == IDLexer->EOF;
19 print "text: ", $token->get_text(), "\n";
20 print "type: ", $token->get_type(), "\n";
21 print "pos: ", $token->get_line(), ':', $token->get_char_position_in_line(), "\n";
22 print "channel: ", $token->get_channel(), "\n";
23 print "token index: ", $token->get_token_index(), "\n";
  /external/antlr/antlr-3.4/runtime/Perl5/examples/zero-one/
t-error.pl 16 my $token = eval { $lexer->next_token(); };
22 last if $token->get_type() == $TLexer::EOF;
24 print "type: ", $token->get_type(), "\n";
25 print "text: ", $token->get_text(), "\n";
t.pl 16 my $token = $lexer->next_token();
17 last if $token->get_type() == $TLexer::EOF;
19 print "type: ", $token->get_type(), "\n";
20 print "text: ", $token->get_text(), "\n";
  /external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
MissingTokenException.pm 23 if (defined (my $inserted = $self->inserted) && defined (my $token = $self->token)) {
24 return "MissingTokenException(inserted $inserted at " . $token->get_text() . ")";
RecognitionException.pm 69 my $token = $input->LT(1);
70 $new_args->{token} = $token;
71 $new_args->{line} = $token->get_line();
72 $new_args->{char_position_in_line} = $token->get_char_position_in_line();
CommonToken.pm 75 my $token = $arg_ref->{token};
76 $self->text($token->get_text());
77 $self->type($token->get_type());
78 $self->line($token->get_line());
79 $self->index($token->get_token_index());
80 $self->char_position_in_line($token->get_char_position_in_line());
81 $self->channel($token->get_channel());
Lexer.pm 150 my ($self, $token) = @_;
155 $self->state->token($token);
  /external/antlr/antlr-3.4/runtime/Perl5/t/
lexer.t 66 my $token = $lexer->next_token();
67 last if $token->get_type() == IDLexer->EOF;
69 print "text: '", $token->get_text(), "'\n";
70 print "type: ", $token->get_type(), "\n";
71 print "pos: ", $token->get_line(), ':', $token->get_char_position_in_line(), "\n";
72 print "channel: ", $token->get_channel(), "\n";
73 print "token index: ", $token->get_token_index(), "\n";
  /external/antlr/antlr-3.4/runtime/Perl5/t/classes/Test/ANTLR/Runtime/
CommonToken.pm 12 my $token = ANTLR::Runtime::CommonToken->new({
19 is $token->get_start_index(), 0;
  /external/syslinux/utils/
ppmtolss16 57 my($token, $ch);
69 } while ( $ch =~ /^[ \t\n\v\f\r]$/ );
70
71 $token
= $ch;
74 last if ( $ch =~ /^[ \t\n\v\f\r\#]$/ );
75 $token
.= $ch;
82 return $token;
87 my($token) = get_token();
89 if ( $token !~ /^[0-9]+$/ ) {
94 return $token + 0;
  /developers/build/
github.sh 258 if ! [ -n "$token" ]
269 -H "Authorization: token $token" \
292 git remote set-url origin "https://$token@github.com/googlesamples/android-$i.git"
320 CREATE="curl -H 'Authorization: token '$TOKEN \
327 -H 'Authorization: token '$TOKEN \
333 URL="https://$token@github.com/$repoName"
  /external/antlr/antlr-3.4/gunit/src/main/antlr3/org/antlr/gunit/
gUnit.g 164 $token = $STRING;
166 | ML_STRING {$token = $ML_STRING;}
167 | AST {$token = $AST;}
168 | ACTION {$token = $ACTION;}
  /external/dagger2/lib/
google-java-format-0.1-20151017.042846-2.jar 
  /prebuilts/tools/common/google-java-format/
google-java-format-1.0-all-deps.jar 
  /external/robolectric/v3/runtime/
android-all-5.0.0_r2-robolectric-1.jar 
android-all-5.1.1_r9-robolectric-1.jar 
android-all-4.4_r1-robolectric-1.jar 
  /prebuilts/misc/common/robolectric/lib/
android-all-5.0.0_r2-robolectric-1.jar 
android-all-6.0.0_r1-robolectric-0.jar 
android-all-4.4_r1-robolectric-1.jar 
  /external/mockito/lib/
byte-buddy-1.6.9.jar 
  /prebuilts/tools/common/m2/repository/net/bytebuddy/byte-buddy/1.6.5/
byte-buddy-1.6.5.jar 
  /prebuilts/sdk/current/support/media-compat/
android-support-media-compat.jar 
  /prebuilts/devtools/tools/lib/
emma_device.jar 
  /external/boringssl/src/crypto/perlasm/
x86_64-xlate.pl 606 foreach my $token (split(/,\s*/,$line)) {
607 if ($token =~ /^%r/) {
608 push @ret,reg($token);
609 } elsif ($token =~ /((?:0x)?[0-9a-f]+)\((%r\w+)\)/) {
611 } elsif ($token =~ /(\w+):(\-?(?:0x)?[0-9a-f]+)(U?)/i) {
614 } elsif (my $i = 1*eval($token) or $token eq "0") {
615 if ($token =~ /^\+/) {
621 push @ret,$DW_OP_simple{$token};
    [all...]

Completed in 2449 milliseconds

1 2 3