Home
last modified time | relevance | path

Searched refs:data (Results 2401 – 2425 of 5080) sorted by path

1...<<919293949596979899100>>...204

/plugin/findologicxmlexport/vendor/goetas-webservices/xsd2php-runtime/src/Jms/Handler/
H A DXmlSchemaDateHandler.php71 $attributes = $data->attributes('xsi', true);
75 return new \DateInterval((string)$data);
88 $attributes = $data->attributes('xsi', true);
96 return $this->parseDateTime($data, $type);
109 $attributes = $data->attributes('xsi', true);
114 return $this->parseDateTime($data, $type);
129 $attributes = $data->attributes('xsi', true);
134 $data = (string)$data;
136 return new \DateTime($data, $this->defaultTimezone);
139 private function parseDateTime($data, array $type) argument
[all …]
/plugin/findologicxmlexport/vendor/hoa/compiler/Bin/
H A DPp.php131 $data = $stream->readAll();
134 $ast = $compiler->parse($data);
137 $this->printTokenSequence($compiler, $data);
147 $this->printTokenSequence($compiler, $data);
205 * @param string $data Data to lex.
208 protected function printTokenSequence(Compiler\Llk\Parser $compiler, $data) argument
211 $sequence = $lexer->lexMe($data, $compiler->getTokens());
/plugin/findologicxmlexport/vendor/hoa/compiler/
H A DCHANGELOG.md19 * Documentation: Update possibly generated data. (Ivan Enderlin, 2016-08-15T14:05:42+02:00)
H A DREADME.md148 So, the data `"foo"` and `'foo'` will be valid, but also `"foo'` and `'foo"`! To
170 // 2. Parse a data.
195 This library proposes a script to parse and apply a visitor on a data with a
232 Some algorithms are available to generate data based on a grammar. We will give
244 foreach ($sampler as $i => $data) {
245 echo $i, ' => ', $data, "\n";
/plugin/findologicxmlexport/vendor/hoa/compiler/Llk/Rule/
H A DInvocation.php91 * @param mixed $data Data.
97 $data, argument
102 $this->_data = $data;
/plugin/findologicxmlexport/vendor/hoa/compiler/Llk/Sampler/
H A DUniform.php110 $data = &$this->_data[$rule->getName()][$n];
111 $computed = $data['n'];
135 $Γ = $data['Γ'];
145 $stat = &$data['xy'];
/plugin/findologicxmlexport/vendor/hoa/compiler/Test/Unit/Llk/Rule/
H A DInvocation.php57 $data = 'bar'
59 ->when($result = new SUT($rule, $data))
64 ->isEqualTo($data)
78 $data = 'bar',
86 ->isEqualTo($data)
100 $data = 'bar',
109 ->isEqualTo($data)
123 $data = 'bar',
126 $invocation = new SUT($rule, $data)
139 $data = 'bar',
[all …]
/plugin/findologicxmlexport/vendor/hoa/compiler/Visitor/
H A DDump.php87 $data = $element->getData();
89 if (!empty($data)) {
90 $out .= ' ' . $this->dumpData($data);
107 * @param mixed $data Data.
110 protected function dumpData($data) argument
114 if (!is_array($data)) {
115 return $data;
118 foreach ($data as $key => $value) {
/plugin/findologicxmlexport/vendor/hoa/consistency/
H A DREADME.md228 based on the data contained inside the event bucket. This is very handy. For
239 method will be deduced according to the data contained in the event bucket fired
/plugin/findologicxmlexport/vendor/hoa/event/
H A DBucket.php68 * @param mixed $data Data.
70 public function __construct($data = null) argument
72 $this->setData($data);
116 * @param mixed $data Data.
119 public function setData($data) argument
122 $this->_data = $data;
H A DEvent.php229 public static function notify($eventId, Source $source, Bucket $data) argument
239 $data->setSource($source);
243 $callable($data);
H A DListener.php165 public function fire($listenerId, Bucket $data) argument
175 $data->setSource($this->_source);
179 $out[] = $callable($data);
H A DREADME.md72 * It aims at a **large** diffusion of data through isolated components.
73 Wherever is the observable, we can observe its data.
110 * It aims at a **close** diffusion of data. The observers must have an access
/plugin/findologicxmlexport/vendor/hoa/event/Test/Unit/
H A DEvent.php269 $data = new LUT\Bucket()
271 ->exception(function () use ($eventId, $source, $data) {
272 SUT::notify($eventId, $source, $data);
/plugin/findologicxmlexport/vendor/hoa/protocol/
H A DREADME.md101 2. `Data`, representing data required by the application, like configuration
H A DWrapper.php349 * @param string $data Should be stored into the underlying stream.
352 public function stream_write($data) argument
354 return fwrite($this->getStream(), $data);
/plugin/findologicxmlexport/vendor/hoa/protocol/Test/Unit/
H A DWrapper.php558 $this->function->fwrite = function ($resource, $data) use (&$_resource, &$_data) {
560 $_data = $data;
562 return fwrite($resource, $data);
566 $data = 'foo'
568 ->when($result = $wrapper->stream_write($data))
571 ->isEqualTo(strlen($data))
576 ->isEqualTo($data)
579 ->isEqualTo($data);
/plugin/findologicxmlexport/vendor/hoa/stream/
H A DBucket.php177 * @param string $data Data to set.
180 public function setData($data) argument
182 $old = $this->getBucket()->data;
183 $this->getBucket()->data = $data;
184 $this->getBucket()->datalen = strlen($this->getBucket()->data);
200 return $this->getBucket()->data;
H A DREADME.md39 data on-the-fly, or for more advanced tricks like instrumentation,
341 All listener bucket data is an array containing the following pairs:
/plugin/findologicxmlexport/vendor/hoa/stream/Test/Unit/
H A DBucket.php89 ->string($bucket->data)
127 ->string($_bucket->data)
147 ->isEqualTo($this->invoke($bucket)->getBucket()->data);
/plugin/findologicxmlexport/vendor/hoa/stream/Wrapper/IWrapper/
H A DStream.php242 * @param string $data Should be stored into the underlying stream.
245 public function stream_write($data); argument
/plugin/findologicxmlexport/vendor/hoa/ustring/Test/Unit/
H A DUstring.php754 $data = [
788 ->when(function () use ($data) {
789 foreach ($data as $datum) {
/plugin/findologicxmlexport/vendor/hoa/visitor/
H A DREADME.md66 to implement the `accept` method in order to define what data it holds will be
/plugin/findologicxmlexport/vendor/jms/serializer/
H A DCHANGELOG.md152 - setSerialiseNull\(true\) + exclusion strategies still include data [\#852](https://github.com/sch…
157 - Allow data access to Property naming strategy [\#717](https://github.com/schmittjoh/serializer/is…
182 - Move data handling from graph navigator to visitor [\#920](https://github.com/schmittjoh/serializ…
413 - Add data using setData produces hashes instead of arrays [\#761](https://github.com/schmittjoh/se…
708 - Allow Post Serialize Event to overwrite existing data [\#129](https://github.com/schmittjoh/seria…
740 - No way to serialize binary data with a custom type [\#202](https://github.com/schmittjoh/serializ…
763 - Erroneous data format for unserializing... [\#283](https://github.com/schmittjoh/serializer/issue…
795 - Arrays are serialized as objects like {"0":... } when data contains empty objects [\#488](https:/…
844 - Erroneous data format for unserializing [\#430](https://github.com/schmittjoh/serializer/issues/4…
870 - Erroneous data format for unserializing \#430 [\#431](https://github.com/schmittjoh/serializer/pu…
[all …]
H A DREADME.md12 This library allows you to (de-)serialize data of any complexity. Currently, it supports XML and JS…
18 - (De-)serialize data of any complexity; circular references and complex exclusion strategies are h…

1...<<919293949596979899100>>...204