Home
last modified time | relevance | path

Searched refs:compiler (Results 176 – 200 of 586) sorted by path

12345678910>>...24

/plugin/fastwiki/
H A DLICENSE162 form) with the major components (compiler, kernel, and so on) of the
/plugin/fckg/
H A DLICENSE162 form) with the major components (compiler, kernel, and so on) of the
/plugin/fckg/fckeditor/
H A Dlicense.txt191 form) with the major components (compiler, kernel, and so on) of the
637 components (compiler, kernel, and so on) of the operating system on
/plugin/fedauth/
H A DCOPYING162 form) with the major components (compiler, kernel, and so on) of the
/plugin/feed/
H A DCOPYING162 form) with the major components (compiler, kernel, and so on) of the
/plugin/feedmod/
H A DCOPYING162 form) with the major components (compiler, kernel, and so on) of the
/plugin/fetchmedia/
H A DLICENSE162 form) with the major components (compiler, kernel, and so on) of the
/plugin/filelist/
H A DCOPYING164 form) with the major components (compiler, kernel, and so on) of the
/plugin/findologicxmlexport/vendor/hoa/compiler/
H A D.Mime1 text/vnd.hoa.compiler pp
H A DREADME.md8 …<a href="https://travis-ci.org/hoaproject/compiler"><img src="https://img.shields.io/travis/hoapro…
9 …//coveralls.io/github/hoaproject/compiler?branch=master"><img src="https://img.shields.io/coverall…
10 … href="https://packagist.org/packages/hoa/compiler"><img src="https://img.shields.io/packagist/dt/…
26 This library allows to manipulate LL(1) and LL(k) compiler compilers. A
36 require [`hoa/compiler`](https://packagist.org/packages/hoa/compiler):
39 $ composer require hoa/compiler '~3.0'
65 compiler.
159 ### LL(k) compiler compiler
162 compiler. The following code will use the previous grammar to create a compiler,
171 $ast = $compiler->parse('{"foo": true, "bar": [null, 42]}');
[all …]
/plugin/findologicxmlexport/vendor/hoa/compiler/Bin/
H A DPp.php129 $compiler = Compiler\Llk::load(new File\Read($grammar));
134 $ast = $compiler->parse($data);
137 $this->printTokenSequence($compiler, $data);
147 $this->printTokenSequence($compiler, $data);
152 $this->printTrace($compiler);
170 protected function printTrace(Compiler\Llk\Parser $compiler) argument
174 foreach ($compiler->getTrace() as $element) {
177 $rule = $compiler->getRule($ruleName);
208 protected function printTokenSequence(Compiler\Llk\Parser $compiler, $data) argument
211 $sequence = $lexer->lexMe($data, $compiler->getTokens());
/plugin/findologicxmlexport/vendor/hoa/compiler/Llk/Sampler/
H A DBoundedExhaustive.php101 Compiler\Llk\Parser $compiler,
105 parent::__construct($compiler, $tokenSampler);
H A DSampler.php110 Compiler\Llk\Parser $compiler,
113 $this->_compiler = $compiler;
114 $this->_tokens = $compiler->getTokens();
115 $this->_rules = $compiler->getRules();
117 $this->_rootRuleName = $compiler->getRootRule();
H A DUniform.php80 Compiler\Llk\Parser $compiler,
84 parent::__construct($compiler, $tokenSampler);
/plugin/findologicxmlexport/vendor/hoa/compiler/Test/Integration/
H A DDocumentation.php111 $compiler = LUT\Llk::load($grammar)
113 ->when($ast = $compiler->parse('{"foo": true, "bar": [null, 42]}'))
/plugin/findologicxmlexport/vendor/hoa/compiler/Test/Integration/Llk/
H A DDocumentation.php67 $compiler = LUT\Llk::load($grammar)
69 ->when($result = $compiler->parse('"foo"', null, false))
104 $compiler = LUT\Llk::load($grammar)
116 ->exception(function () use (&$compiler) {
117 $compiler->parse('\'foo"', null, false);
121 ->exception(function () use (&$compiler) {
122 $compiler->parse('"foo\'', null, false);
140 $compiler = LUT\Llk::load($grammar)
142 ->when($result = $compiler->parse('aa', null, false))
162 ->exception(function () use (&$compiler) {
[all …]
/plugin/findologicxmlexport/vendor/hoa/math/Bin/
H A DCalc.php88 $compiler = Compiler\Llk::load(
95 $ast = $compiler->parse($expression);
165 echo $dump->visit($compiler->parse($handle)), "\n";
180 echo $visitor->visit($compiler->parse($expression)), "\n";
/plugin/findologicxmlexport/vendor/hoa/math/
H A DREADME.md74 // 1. Load the compiler.
75 $compiler = Hoa\Compiler\Llk::load(
86 $ast = $compiler->parse($expression);
141 $visitor->visit($compiler->parse($expression))
/plugin/findologicxmlexport/vendor/hoa/math/Test/Unit/
H A DIssue.php58 … $compiler = Compiler\Llk\Llk::load(new File\Read('hoa://Library/Math/Arithmetic.pp')),
60 $ast = $compiler->parse('1 / 0')
72 … $compiler = Compiler\Llk\Llk::load(new File\Read('hoa://Library/Math/Arithmetic.pp')),
74 $ast = $compiler->parse('1 / (1 / 0)')
86 … $compiler = Compiler\Llk\Llk::load(new File\Read('hoa://Library/Math/Arithmetic.pp')),
89 ->when($ast = $compiler->parse('C'))
/plugin/findologicxmlexport/vendor/hoa/math/Test/Unit/Visitor/
H A DArithmetic.php70 $compiler = Compiler\Llk\Llk::load(
78 ->when(function () use (&$sampler, &$compiler, &$visitor) {
82 $compiler->parse($expression)
112 ->object($compiler->parse($variableName . ' * 2'))
114 ->exception(function () use ($variableName, $compiler, $visitor) {
115 $visitor->visit($compiler->parse($variableName . ' * 2'));
133 ->float($visitor->visit($compiler->parse($variableName . ' * 2')))
146 ->object($compiler->parse($constantName . ' * 2'))
149 $visitor->visit($compiler->parse($constantName . ' * 2'));
178 ->object($compiler->parse($functionName . '() * 2'))
[all …]
/plugin/findologicxmlexport/vendor/hoa/regex/
H A DREADME.md78 // 2. Load the compiler.
79 $compiler = Hoa\Compiler\Llk\Llk::load($grammar);
82 $ast = $compiler->parse('ab(c|d){2,4}e?');
/plugin/findologicxmlexport/vendor/jms/serializer/
H A DCHANGELOG.md151 - Consider hoa/compiler [\#892](https://github.com/schmittjoh/serializer/issues/892)
385 - Missing features of the compiler pass [\#789](https://github.com/schmittjoh/serializer/pull/789) …
/plugin/findologicxmlexport/vendor/jms/serializer/src/Type/
H A Dregenerate-parser.php11 $compiler = Llk::load(new Read(__DIR__ . '/grammar.pp')); variable
28 . 'final ' . Llk::save($compiler, 'InnerParser')
/plugin/findologicxmlexport/vendor/twig/extensions/lib/Twig/Extensions/Node/
H A DTrans.php38 public function compile(Twig_Compiler $compiler) argument
40 $compiler->addDebugInfo($this);
61 $compiler
67 $compiler
76 $compiler->raw('), array(');
80 $compiler
87 $compiler
96 $compiler->raw("));\n");
98 $compiler
104 $compiler
[all …]
/plugin/findologicxmlexport/vendor/twig/twig/
H A DCHANGELOG561 * fixed compiler when mbstring.func_overload is set to 2
938 * added the lexer, parser, and compiler as arguments to the Twig_Environment constructor

12345678910>>...24