Home
last modified time | relevance | path

Searched refs:yacc (Results 251 – 275 of 9288) sorted by relevance

1...<<11121314151617181920>>...372

/dports/shells/ast-ksh/ast-ksh93v/src/cmd/nmake/
H A Dyacc.mk2 * yacc %include file support
6 * %include in *.yy produces yacc output file *.y
7 * %include suffix .yacc
12 .SOURCE.%.yacc : $$(*.SOURCE.%.LCL.INCLUDE)
/dports/devel/emscripten/emscripten-2.0.3/third_party/ply/test/
H A Dyacc_unused.py9 import ply.yacc as yacc namespace
73 yacc.yacc()
H A Dyacc_rr.py9 import ply.yacc as yacc namespace
68 yacc.yacc()
H A Dyacc_unused_rule.py9 import ply.yacc as yacc namespace
68 yacc.yacc()
/dports/lang/spidermonkey78/firefox-78.9.0/third_party/python/ply/test/
H A Dyacc_unused.py9 import ply.yacc as yacc namespace
73 yacc.yacc()
H A Dyacc_unused_rule.py9 import ply.yacc as yacc namespace
68 yacc.yacc()
H A Dyacc_rr.py9 import ply.yacc as yacc namespace
68 yacc.yacc()
H A Dyacc_error6.py9 import ply.yacc as yacc namespace
66 parser = yacc.yacc()
/dports/devel/py-ply/ply-3.11/test/
H A Dyacc_unused.py9 import ply.yacc as yacc namespace
73 yacc.yacc()
H A Dyacc_rr.py9 import ply.yacc as yacc namespace
68 yacc.yacc()
H A Dyacc_unused_rule.py9 import ply.yacc as yacc namespace
68 yacc.yacc()
H A Dyacc_error6.py9 import ply.yacc as yacc namespace
66 parser = yacc.yacc()
/dports/shells/xonsh/xonsh-0.7.9/xonsh/ply/test/
H A Dyacc_error6.py9 import ply.yacc as yacc namespace
66 parser = yacc.yacc()
/dports/devel/emscripten/emscripten-2.0.3/third_party/ply/
H A DCHANGES52 yacc(picklefile="parsetab.p")
115 instead of yacc.SyntaxError.
224 parser = yacc.yacc(tabmodule="foo.bar.parsetab",outputdir="foo/bar")
237 parser = yacc.yacc(tabmodule=parsetab)
548 The last Parser object built by yacc() can be found in yacc.parser.
592 yacc.yacc(method="SLR"). Note: there is no performance impact
707 import ply.yacc as yacc
872 yacc.yacc(method="LALR")
971 yacc.yacc(optimize=1)
1066 yacc.yacc(check_recursion = 0)
[all …]
/dports/devel/byaccj/byaccj1.15/
H A Dpackme.sh11 cp src/yacc.exe ${VER}
12 cp src/yacc.irix ${VER}
13 cp src/yacc.linux ${VER}
14 cp src/yacc.solaris ${VER}
/dports/misc/lifelines/lifelines-3.1.1/src/interp/
H A DMakefile.am12 symtab.c write.c yacc.y
27 EXTRA_DIST = yacc.h yacc.c interpi.h parse.h rptui.h
29 lex.o: yacc.h parse.h
/dports/math/aamath/aamath/
H A DMakefile12 yacc: parser.y target
13 yacc -d parser.y
15 parser.cc: yacc
18 parser.h: yacc
/dports/devel/qbs/qbs-src-1.21.0/doc/reference/modules/
H A Dlexyacc-module.qdoc33 \brief Provides support for the \c lex and \c yacc tools.
36 and \c yacc, respectively. These tools are closely related and share a number of properties,
54 \li \c{"yacc.input"}
57 \li Source files with this tag serve as inputs to the \c yacc tool.
67 Because \c lex and \c yacc are known to produce files that will trigger
117 file provided as input to \c lex and \c yacc, respectively.
132 The file path of the \c yacc tool.
134 \defaultvalue \c{"yacc"}
140 Additional command-line options for the \c yacc tool.
148 Main output file for the \c yacc tool.
/dports/devel/automake/automake-1.16.5/t/
H A Dyacc-dist-nobuild.sh61 cat > bin/yacc <<'END'
66 cp bin/yacc bin/bison
67 chmod a+x bin/yacc bin/bison
70 YACC=yacc BISON=bison
/dports/emulators/stella/stella-6.6/src/yacc/
H A Dmodule.mk1 MODULE := src/yacc
4 src/yacc/YaccParser.o
7 src/yacc
/dports/www/py-djangoql/djangoql-0.14.4/djangoql/
H A Dparser.py6 import ply.yacc as yacc namespace
41 self.yacc = yacc.yacc(module=self, **kwargs)
45 return self.yacc.parse(input=input, lexer=lexer, **kwargs)
/dports/shells/xonsh/xonsh-0.7.9/xonsh/ply/
H A DREADME.md36 and yacc. Here are a few highlights:
38 - PLY is very closely modeled after traditional lex/yacc.
55 algorithm used in yacc.
73 PLY consists of two files : lex.py and yacc.py. These are contained
76 lex and yacc from the associated 'ply' package. For example:
79 import ply.yacc as yacc
81 Alternatively, you can copy just the files lex.py and yacc.py
85 import yacc
242 import ply.yacc as yacc
243 yacc.yacc()
[all …]
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/ply/
H A DREADME.md38 and yacc. Here are a few highlights:
40 - PLY is very closely modeled after traditional lex/yacc.
57 algorithm used in yacc.
75 PLY consists of two files : lex.py and yacc.py. These are contained
78 lex and yacc from the associated 'ply' package. For example:
81 import ply.yacc as yacc
83 Alternatively, you can copy just the files lex.py and yacc.py
87 import yacc
244 import ply.yacc as yacc
245 yacc.yacc()
[all …]
/dports/www/firefox/firefox-99.0/third_party/python/ply/
H A DREADME.md36 and yacc. Here are a few highlights:
38 - PLY is very closely modeled after traditional lex/yacc.
55 algorithm used in yacc.
73 PLY consists of two files : lex.py and yacc.py. These are contained
76 lex and yacc from the associated 'ply' package. For example:
79 import ply.yacc as yacc
81 Alternatively, you can copy just the files lex.py and yacc.py
85 import yacc
242 import ply.yacc as yacc
243 yacc.yacc()
[all …]
/dports/mail/thunderbird/thunderbird-91.8.0/third_party/python/ply/
H A DREADME.md36 and yacc. Here are a few highlights:
38 - PLY is very closely modeled after traditional lex/yacc.
55 algorithm used in yacc.
73 PLY consists of two files : lex.py and yacc.py. These are contained
76 lex and yacc from the associated 'ply' package. For example:
79 import ply.yacc as yacc
81 Alternatively, you can copy just the files lex.py and yacc.py
85 import yacc
242 import ply.yacc as yacc
243 yacc.yacc()
[all …]

1...<<11121314151617181920>>...372