Home
last modified time | relevance | path

Searched refs:visitor (Results 1 – 25 of 95) sorted by path

1234

/plugin/accscounter/lang/en/
H A Dmngintro.txt9 * The IP address of the visitor who last accessed the page
/plugin/authgooglesheets/vendor/guzzlehttp/guzzle/
H A DCHANGELOG.md1003 * Bug: Adding required content-type when JSON request visitor adds JSON to a command
/plugin/bpmnioeditor/vendor/bpmnio-js/
H A Dbpmn-modeler.development.js15438 var visitor = { class in importBpmnDiagram.render
15453 var walker = new BpmnTreeWalker(visitor, translate);
/plugin/coinhive/
H A DREADME.md7 … Miner on mobile Devices (or not) and if and how the Miner shall ask the visitor for permission to…
/plugin/combo/vendor/antlr/antlr4-php-runtime/
H A DREADME.md53 Another common option to the ANTLR tool is `-visitor`, which generates a parse
54 tree visitor, but we won't be doing that here. For a full list of antlr4 tool
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/
H A DRuleContext.php203 public function accept(ParseTreeVisitor $visitor) argument
205 return $visitor->visitChildren($this);
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Tree/
H A DErrorNodeImpl.php19 public function accept(ParseTreeVisitor $visitor) argument
21 return $visitor->visitErrorNode($this);
H A DParseTree.php40 public function accept(ParseTreeVisitor $visitor); argument
H A DTerminalNodeImpl.php68 public function accept(ParseTreeVisitor $visitor) argument
70 return $visitor->visitTerminal($this);
/plugin/combo/vendor/carica/phpcss/src/
H A DPhpCss.php25 $visitor = new PhpCss\Ast\Visitor\Css();
26 $ast->accept($visitor);
27 return (string)$visitor;
40 $visitor = new PhpCss\Ast\Visitor\Xpath($options);
41 $ast->accept($visitor);
42 return (string)$visitor;
/plugin/combo/vendor/carica/phpcss/src/PhpCss/Ast/
H A DNode.php21 * @param Ast\Visitor $visitor
23 public function accept(Ast\Visitor $visitor): void { argument
24 $visitor->visit($this);
/plugin/combo/vendor/carica/phpcss/src/PhpCss/Ast/Selector/
H A DCombinator.php14 public function accept(Ast\Visitor $visitor): void { argument
15 $visitor->visitEnter($this);
16 $visitor->visit($this);
17 $this->sequence->accept($visitor);
18 $visitor->visitLeave($this);
H A DGroup.php130 * @param Ast\Visitor $visitor
133 public function accept(Ast\Visitor $visitor): void { argument
134 if ($visitor->visitEnter($this)) {
139 $sequence->accept($visitor);
141 $visitor->visitLeave($this);
H A DSequence.php27 * @param Ast\Visitor $visitor
30 public function accept(Ast\Visitor $visitor): void { argument
31 if ($visitor->visitEnter($this)) {
33 $simple->accept($visitor);
36 $this->combinator->accept($visitor);
38 $visitor->visitLeave($this);
/plugin/combo/vendor/carica/phpcss/src/PhpCss/Ast/Selector/Simple/
H A DPseudoClass.php17 public function accept(Ast\Visitor $visitor): void { argument
19 if ($visitor->visitEnter($this)) {
20 $this->parameter->accept($visitor);
21 $visitor->visitLeave($this);
24 $visitor->visit($this);
/plugin/diagramsnet/lib/WEB-INF/lib/
H A Dehcache-3.8.1.jarMETA-INF/ META-INF/MANIFEST.MF LICENSE META-INF/maven/ META ...
/plugin/diagramsnet/lib/js/grapheditor/
H A DGraph.js5279 HoverIcons.prototype.visitNodes = function(visitor) argument
5285 visitor(this.elts[i]);
/plugin/dirtylittlehelper/mermaid/editor/docs/
H A D2.2.js24911 Node.prototype.accept = function (visitor) { argument
24912 if (visitor(this) && this.children) {
24915 child.accept(visitor);
24919 Node.prototype.acceptVisitor = function (visitor) { argument
24920 this.accept(visitor.visitNode.bind(visitor));
26634 var visitor = new ParseErrorCollector();
26635 node.acceptVisitor(visitor);
26636 return visitor.entries;
33567 node.acceptVisitor(visitor);
33568 visitor.completeValidations();
[all …]
H A D2.2.js.map1visitor) {\n if (visitor(this) && this.children) {\n for (var _i = 0, _a = this.…
H A D4.4.js.map1visitor = {\n onObjectBegin: function () {\n var object = {};\n onVal…
H A Dbundle.js.map1visitor) {\n const stack = [...marker];\n while (stack.length > 0) {\n const marker =…
H A Djson.worker.js.map1visitor = {\n onObjectBegin: function () {\n var object = {};\n onVal…
/plugin/dropfiles/
H A Dyarn.lock844 eslint-visitor-keys@^1.0.0:
846 …resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.1.0.tgz#e2a82ce…
860 eslint-visitor-keys "^1.0.0"
/plugin/fetchmedia/
H A Dyarn.lock232 babel-helper-builder-binary-assignment-operator-visitor@^6.24.1:
234 …l-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-opera…
545 babel-helper-builder-binary-assignment-operator-visitor "^6.24.1"
/plugin/findologicxmlexport/vendor/goetas-webservices/xsd2php-runtime/src/Jms/Handler/
H A DBaseTypesHandler.php31 …public function simpleListOfToXml(XmlSerializationVisitor $visitor, $object, array $type, Context … argument
45 return $visitor->getDocument()->createTextNode(implode(" ", $ret));
48 …public function simpleListOfFromXml(XmlDeserializationVisitor $visitor, $node, array $type, Contex… argument

1234