Lines Matching full:foo*
190 lexer = lex.lex(optimize=True, lextab="ltab", outputdir="foo/bar")
200 parser = yacc.yacc(tabmodule="foo.bar.parsetab",outputdir="foo/bar")
202 yacc would create a file "foo.bar.parsetab.py" in the given directory.
212 import foo.bar.spam.parsetab as parsetab
379 '''foo: a b c d e'''
440 ('foo','exclusive'),
450 t_foo_NUM = '\d+' # Rule defined in foo state
453 t_foo_bar_NUM = '\d+' # Rule defined in both foo and bar
459 t_foo_ignore = " " # Ignored characters for foo state
466 t.lexer.begin('foo') # Begin state 'foo'
467 t.lexer.push_state('foo') # Begin state 'foo', push old state
698 "foo: A B C D"
704 p[0] = some_val # Sets the value of the 'foo' grammer symbol
1010 # module foo.py
1022 lex.lex(lextab="footab")
1024 (this creates a file footab.py)