OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:input_symbol
(Results
1 - 10
of
10
) sorted by null
/external/chromium_org/third_party/pexpect/
FSM.py
14
(
input_symbol
, current_state) --> (action, next_state)
25
input_symbol
or state. You use the set_default_transition() method to set the
29
action function may then access attributes of the FSM such as
input_symbol
,
35
input_symbol
to process. The FSM will search the table of transitions that
38
(
input_symbol
, current_state) --> (action, next_state)
40
If the pair (
input_symbol
, current_state) is found then process() will call the
43
If the FSM cannot find a match for (
input_symbol
, current_state) it will then
50
Notice that this table lacks an
input_symbol
. It lets you define transitions
51
for a current_state and ANY
input_symbol
. Hence, it is called the "any" table.
53
(
input_symbol
, current_state)
[
all
...]
ANSI.py
40
screen.write_ch(fsm.
input_symbol
)
44
fsm.memory.append (fsm.
input_symbol
)
49
ns = ns + fsm.
input_symbol
180
fout.write (fsm.
input_symbol
+ ',' + fsm.current_state + '\n')
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/debug/
rule-tracer.rb
33
input_symbol
= @input.look || :EOF
34
@device.puts( " look = %p" %
input_symbol
)
48
input_symbol
= ( @input.look || :EOF )
49
@device.puts( " look = %p" %
input_symbol
)
/external/chromium_org/chrome/tools/build/win/
syzygy_instrument.py
97
options.
input_symbol
,
105
options.
input_symbol
,
114
option_parser.add_option('--
input_symbol
',
134
if not options.
input_symbol
:
syzygy_reorder.py
82
options.
input_symbol
,
90
option_parser.add_option('--
input_symbol
',
101
if not options.
input_symbol
:
/external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
Lexer.pm
312
my $
input_symbol
= $self->input->LT(1) . ' line=' . $self->get_line() . ':' . $self->get_char_position_in_line();
313
$self->SUPER::trace_in($rule_name, $rule_index, $
input_symbol
);
319
my $
input_symbol
= $self->input->LT(1) . ' line=' . $self->get_line() . ':' . $self->get_char_position_in_line();
320
$self->SUPER::trace_out($rule_name, $rule_index, $
input_symbol
);
BaseRecognizer.pm
574
Readonly my $usage => 'void trace_in(String rule_name, int rule_index,
input_symbol
)';
576
my ($self, $rule_name, $rule_index, $
input_symbol
) = @_;
578
print "enter $rule_name $
input_symbol
";
589
Readonly my $usage => 'void trace_out(String rule_name, int rule_index,
input_symbol
)';
591
my ($self, $rule_name, $rule_index, $
input_symbol
) = @_;
593
print "exit $rule_name $
input_symbol
";
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
recognizers.rb
883
def trace_in( rule_name, rule_index,
input_symbol
)
884
@error_output.printf( "--> enter %s on %s", rule_name,
input_symbol
)
891
def trace_out( rule_name, rule_index,
input_symbol
)
892
@error_output.printf( "<-- exit %s on %s", rule_name,
input_symbol
)
[
all
...]
/external/v8/src/
heap.h
192
V(
input_symbol
, "input") \
[
all
...]
bootstrapper.cc
[
all
...]
Completed in 851 milliseconds