Home
last modified time | relevance | path

Searched refs:visitor (Results 26 – 50 of 95) sorted by last modified time

1234

/plugin/nobadbrowser/
H A DREADME5 Its function is to display a warning to an user or visitor who is
/plugin/accscounter/lang/en/
H A Dmngintro.txt9 * The IP address of the visitor who last accessed the page
/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/pdfjs/pdfjs/build/
H A Dpdf.worker.js20589 if (callbackName in visitor) {
20590 visitor[callbackName].apply(visitor, args);
20606 processSegments(segments, visitor);
20609 return visitor.buffer;
20632 processSegments(segments, visitor);
20636 var bitPacked = visitor.buffer;
53846 visitor.visitArgument(this);
53859 visitor.visitLiteral(this);
53874 visitor.visitBinaryOperation(this);
53887 visitor.visitMin(this);
[all …]
H A Dpdf.worker.js.map1visitor","processSegment","readSegments","processSegments","bitPacked","imgData","mask","SimpleSeg…
/plugin/sequencediagram/bower_components/lodash/
H A Dyarn.lock193 babel-helper-builder-binary-assignment-operator-visitor@^6.8.0:
195 …l-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-opera…
587 babel-helper-builder-binary-assignment-operator-visitor "^6.8.0"
/plugin/findologicxmlexport/vendor/hoa/visitor/
H A DElement.php57 public function accept(Visit $visitor, &$handle = null, $eldnah = null); argument
H A DREADME.md8 …<a href="https://travis-ci.org/hoaproject/visitor"><img src="https://img.shields.io/travis/hoaproj…
9 …://coveralls.io/github/hoaproject/visitor?branch=master"><img src="https://img.shields.io/coverall…
10 …a href="https://packagist.org/packages/hoa/visitor"><img src="https://img.shields.io/packagist/dt/…
11 …oa-project.net/LICENSE"><img src="https://img.shields.io/packagist/l/hoa/visitor.svg" alt="License…
24 …(https://img.shields.io/badge/organisation-board-ff0066.svg)](https://waffle.io/hoaproject/visitor)
26 This library provides interfaces to apply the visitor pattern.
34 require [`hoa/visitor`](https://packagist.org/packages/hoa/visitor):
37 $ composer require hoa/visitor '~2.0'
63 element to visit and a visitor, for example a node of a tree and a dumper. The
65 visitor will implement the `Hoa\Visitor\Visit` interface. The first one will ask
[all …]
/plugin/findologicxmlexport/vendor/jms/serializer/src/
H A DSerializer.php162 $result = $this->visit($navigator, $visitor, $context, $data, $format, $type);
163 return $visitor->getResult($result);
178 $result = $this->visit($navigator, $visitor, $context, $data, $format, $type);
180 return $visitor->getResult($result);
192 $visitor = $this->getVisitor(GraphNavigatorInterface::DIRECTION_SERIALIZATION, 'json');
196 $result = $this->visit($navigator, $visitor, $context, $data, 'json', $type);
222 return $this->visit($navigator, $visitor, $context, $data, 'json', $type, false);
234 $visitor,
239 $visitor->setNavigator($navigator);
240 $navigator->initialize($visitor, $context);
[all …]
/plugin/findologicxmlexport/vendor/goetas-webservices/xsd2php-runtime/tests/
H A DXmlSchemaDateHandlerDeserializationTest.php32 protected $visitor; variable in GoetasWebservices\\Xsd\\XsdToPhpRuntime\\Tests\\Jms\\Handler\\XmlSchemaDateHandlerDeserializationTest
50 $this->visitor->setNavigator($navigator);
56 $this->visitor = new XmlDeserializationVisitor();
63 $this->visitor = new XmlDeserializationVisitor($naming);
76 … $deserialized = $this->handler->deserializeDate($this->visitor, $element, [], $this->context);
96 $this->handler->deserializeDate($this->visitor, $element, [], $this->context);
H A DXmlSchemaDateHandlerSerializationTest.php31 protected $visitor; variable in GoetasWebservices\\Xsd\\XsdToPhpRuntime\\Tests\\Jms\\Handler\\XmlSchemaDateHandlerSerializationTest
48 $this->visitor->setNavigator($navigator);
54 $this->visitor = new XmlSerializationVisitor();
61 $this->visitor = new XmlSerializationVisitor($naming);
72 $ret = $this->handler->serializeDateTime($this->visitor, $date, [], $this->context);
73 $actual = $ret ? $ret->nodeValue : $this->visitor->getCurrentNode()->nodeValue;
97 $ret = $this->handler->serializeDate($this->visitor, $date, [], $this->context);
99 $actual = $ret ? $ret->nodeValue : $this->visitor->getCurrentNode()->nodeValue;
/plugin/findologicxmlexport/vendor/hoa/math/Test/Unit/
H A DIssue.php59 $visitor = new CUT(),
62 ->exception(function () use ($visitor, $ast) {
63 $visitor->visit($ast);
73 $visitor = new CUT(),
76 ->exception(function () use ($visitor, $ast) {
77 $visitor->visit($ast);
87 $visitor = new CUT()
/plugin/findologicxmlexport/vendor/hoa/math/Test/Unit/Visitor/
H A DArithmetic.php73 $visitor = new CUT()
81 $x = (float) $visitor->visit(
108 $visitor = new CUT(),
125 $visitor = new CUT(),
142 $visitor = new CUT(),
159 $visitor = new CUT(),
174 $visitor = new CUT(),
191 $visitor = new CUT(),
208 $visitor = new CUT(),
215 ->object($visitor->setContext($context))
[all …]
/plugin/findologicxmlexport/vendor/twig/twig/src/Extension/
H A DStagingExtension.php63 public function addNodeVisitor(NodeVisitorInterface $visitor) argument
65 $this->visitors[] = $visitor;
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/
H A DEnvironmentTest.php349 foreach ($visitors as $visitor) {
350 if ($visitor instanceof Twig_Tests_EnvironmentTest_NodeVisitor) {
/plugin/findologicxmlexport/vendor/jms/serializer/
H A DUPGRADING.md16 - Most of the visor configurations and options have been move to visitor factories
/plugin/findologicxmlexport/vendor/jms/serializer/doc/
H A Dconfiguration.rst55 function($visitor, MyObject $obj, array $type) {
/plugin/findologicxmlexport/vendor/jms/serializer/src/Construction/
H A DDoctrineObjectConstructor.php51 …public function construct(DeserializationVisitorInterface $visitor, ClassMetadata $metadata, $data… argument
58 … return $this->fallbackConstructor->construct($visitor, $metadata, $data, $type, $context);
66 … return $this->fallbackConstructor->construct($visitor, $metadata, $data, $type, $context);
87 … return $this->fallbackConstructor->construct($visitor, $metadata, $data, $type, $context);
102 … return $this->fallbackConstructor->construct($visitor, $metadata, $data, $type, $context);
H A DObjectConstructorInterface.php27 …public function construct(DeserializationVisitorInterface $visitor, ClassMetadata $metadata, $data… argument
/plugin/findologicxmlexport/vendor/jms/serializer/src/GraphNavigator/
H A DDeserializationGraphNavigator.php41 protected $visitor; variable in JMS\\Serializer\\GraphNavigator\\DeserializationGraphNavigator
112 …if ($this->visitor instanceof NullAwareVisitorInterface && true === $this->visitor->isNull($data))…
118 return $this->visitor->visitNull($data, $type);
121 return $this->visitor->visitString($data, $type);
125 return $this->visitor->visitInteger($data, $type);
129 return $this->visitor->visitBoolean($data, $type);
133 return $this->visitor->visitDouble($data, $type);
136 return $this->visitor->visitArray($data, $type);
183 $this->visitor->startVisitingObject($metadata, $object, $type);
199 $v = $this->visitor->visitProperty($propertyMetadata, $data);
[all …]
/plugin/findologicxmlexport/vendor/jms/serializer/src/Handler/
H A DConstraintViolationHandler.php39 …public function serializeListToXml(XmlSerializationVisitor $visitor, ConstraintViolationList $list… argument
41 $currentNode = $visitor->getCurrentNode();
43 $visitor->createRoot();
47 $this->serializeViolationToXml($visitor, $violation);
56 return $visitor->visitArray(iterator_to_array($list), $type);
59 …public function serializeViolationToXml(XmlSerializationVisitor $visitor, ConstraintViolation $vio… argument
61 $violationNode = $visitor->getDocument()->createElement('violation');
63 $parent = $visitor->getCurrentNode();
65 $visitor->setCurrentAndRootNode($violationNode);
71 … $violationNode->appendChild($messageNode = $visitor->getDocument()->createElement('message'));
[all …]
H A DDateHandler.php74 SerializationVisitorInterface $visitor, argument
79 if ($visitor instanceof XmlSerializationVisitor && false === $this->xmlCData) {
80 return $visitor->visitSimpleString($date->format($this->getFormat($type)), $type);
85 return $visitor->visitInteger((int) $date->format($format), $type);
88 return $visitor->visitString($date->format($this->getFormat($type)), $type);
98 return $this->serializeDateTimeInterface($visitor, $date, $type, $context);
107 SerializationVisitorInterface $visitor, argument
112 return $this->serializeDateTimeInterface($visitor, $date, $type, $context);
124 if ($visitor instanceof XmlSerializationVisitor && false === $this->xmlCData) {
125 return $visitor->visitSimpleString($iso8601DateIntervalString, $type);
[all …]
H A DFormErrorHandler.php59 …public function serializeFormToXml(XmlSerializationVisitor $visitor, Form $form, array $type): \DO… argument
61 $formNode = $visitor->getDocument()->createElement('form');
65 $formNode->appendChild($errorsNode = $visitor->getDocument()->createElement('errors'));
67 $errorNode = $visitor->getDocument()->createElement('entry');
68 $errorNode->appendChild($this->serializeFormErrorToXml($visitor, $error, []));
74 if (null !== $node = $this->serializeFormToXml($visitor, $child, [])) {
86 …public function serializeFormToJson(JsonSerializationVisitor $visitor, Form $form, array $type): \… argument
88 return $this->convertFormToArray($visitor, $form);
96 return $visitor->getDocument()->createCDATASection($this->getErrorMessage($formError));
120 …private function convertFormToArray(SerializationVisitorInterface $visitor, Form $data): \ArrayObj… argument
[all …]
/plugin/findologicxmlexport/vendor/jms/serializer/tests/Handler/
H A DArrayCollectionHandlerTest.php25 $visitor = $this->getMockBuilder(SerializationVisitorInterface::class)->getMock();
26 $visitor->method('visitArray')->with(['foo'])->willReturn(['foo']);
33 $handler->serializeCollection($visitor, $collection, $type, $context);
43 $visitor = $this->getMockBuilder(SerializationVisitorInterface::class)->getMock();
44 $visitor->method('visitArray')->with([])->willReturn([]);
58 $handler->serializeCollection($visitor, $collection, $type, $context);
H A DFormErrorHandlerTest.php36 protected $visitor; variable in JMS\\Serializer\\Tests\\Handler\\FormErrorHandlerTest
53 $this->visitor = (new JsonSerializationVisitorFactory())->getVisitor($navigator, $context);
61 $this->visitor = null;
69 $json = json_encode($this->handler->serializeFormToJson($this->visitor, $form, []));
79 $json = json_encode($this->handler->serializeFormToJson($this->visitor, $form, []));
90 $json = json_encode($this->handler->serializeFormToJson($this->visitor, $form, []));
119 $data = json_encode($this->handler->serializeFormToJson($this->visitor, $form, []));
134 $json = json_encode($this->handler->serializeFormToJson($this->visitor, $form, []));

1234