Home
last modified time | relevance | path

Searched refs:format (Results 951 – 975 of 1384) sorted by last modified time

1...<<31323334353637383940>>...56

/plugin/findologicxmlexport/vendor/goetas-webservices/xsd2php-runtime/src/Jms/Handler/
H A DXmlSchemaDateHandler.php81 $v = $date->format('Y-m-d');
102 $v = $date->format(\DateTime::W3C);
120 $v = $date->format('H:i:s');
122 $v .= $date->format('P');
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/functions/
H A Ddate.test4 {{ date().format('r') == date('now').format('r') ? 'OK' : 'KO' }}
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/autoescape/
H A Dwith_filters.test41 ( the output of |format is "<b>" ~ var ~ "</b>",
43 {{ "<b>%s</b>"|format(var) }}
46 ( the output of |format is "<b>" ~ var ~ "</b>",
49 {{ "<b>%s</b>"|raw|format(var) }}
52 ( the output of |format is "<b>" ~ var ~ "</b>",
54 {{ "<b>%s</b>"|format(var)|raw }}
57 ( the output of |format is "<b>" ~ var ~ "</b>",
60 {{ "<b>%s</b>"|format(var|raw)|raw }}
108 ( the output of |format is "<b>" ~ var ~ "</b>",
114 ( the output of |format is "<b>" ~ var ~ "</b>",
[all …]
/plugin/findologicxmlexport/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/js/
H A Dnv.d3.min.js3format(",.1f")),p.duration(0);var t=a.utils.renderWatch(r,s);return e.dispatch.on("elementMouseove…
4 …ckFormat(function(a){return a}),g.orient(o?"right":"left").tickFormat(d3.format(",.1f")),h.duratio…
6format(",.1f")),j.duration(0).valueFormatter(function(a,b){return g.tickFormat()(a,b)}).headerForm…
7format(i[b])))}),N.select(".nv-parallelCoordinates-brush").each(function(a){d3.select(this).call(g…
8format(",r"),l=d3.format(",.2f"),m=!0,n=!0,o=!1,p=null;return b.sparkline=e,b.options=a.utils.opti…
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Framework/
H A DAssert.php1696 * @param string $format
1700 public static function assertStringMatchesFormat($format, $string, $message = '') argument
1702 if (!is_string($format)) {
1710 $constraint = new PHPUnit_Framework_Constraint_StringMatches($format);
1718 * @param string $format
1722 public static function assertStringNotMatchesFormat($format, $string, $message = '') argument
1724 if (!is_string($format)) {
1733 new PHPUnit_Framework_Constraint_StringMatches($format)
/plugin/findologicxmlexport/vendor/twig/twig/doc/
H A Dadvanced_legacy.rst750 public function dateFilter($timestamp, $format = 'F j, Y H:i')
752 return '...'.twig_date_format_filter($timestamp, $format);
/plugin/findologicxmlexport/vendor/jms/serializer/src/Handler/
H A DStdClassHandler.php25 foreach ($formats as $format) {
29 'format' => $format,
H A DArrayCollectionHandler.php43 foreach ($formats as $format) {
47 'format' => $format,
54 'format' => $format,
H A DHandlerRegistry.php18 public static function getDefaultMethod(int $direction, string $type, string $format): string argument
26 return 'deserialize' . $type . 'From' . $format;
29 return 'serialize' . $type . 'To' . $format;
63 … public function registerHandler(int $direction, string $typeName, string $format, $handler): void argument
65 $this->handlers[$direction][$typeName][$format] = $handler;
71 public function getHandler(int $direction, string $typeName, string $format) argument
73 if (!isset($this->handlers[$direction][$typeName][$format])) {
77 return $this->handlers[$direction][$typeName][$format];
/plugin/findologicxmlexport/vendor/jms/serializer/src/Metadata/Driver/
H A DXmlDriver.php362 if (!isset($method->attributes()->format)) {
/plugin/findologicxmlexport/vendor/jms/serializer/src/
H A DSerializerBuilder.php299 …public function setSerializationVisitor(string $format, SerializationVisitorFactory $visitor): self argument
302 $this->serializationVisitors[$format] = $visitor;
307 …public function setDeserializationVisitor(string $format, DeserializationVisitorFactory $visitor):… argument
310 $this->deserializationVisitors[$format] = $visitor;
H A DGraphNavigator.php33 protected $format; variable in JMS\\Serializer\\GraphNavigator
45 $this->format = $context->getFormat();
H A DSerializationContext.php33 …public function initialize(string $format, VisitorInterface $visitor, GraphNavigatorInterface $nav… argument
35 parent::initialize($format, $visitor, $navigator, $factory);
H A DSerializerInterface.php19 …public function serialize($data, string $format, ?SerializationContext $context = null, ?string $t… argument
26 …public function deserialize(string $data, string $type, string $format, ?DeserializationContext $c… argument
/plugin/findologicxmlexport/vendor/doctrine/annotations/
H A DCHANGELOG.md9 Any annotation with `@name-*` format will now silently be ignored,
/plugin/findologicxmlexport/vendor/doctrine/annotations/docs/en/
H A Dannotations.rst150 or indexed format.
/plugin/findologicxmlexport/vendor/hoa/compiler/Bin/
H A DPp.php212 $format = '%' . (strlen((string) count($sequence)) + 1) . 's ' .
216 $format,
228 $format,
/plugin/findologicxmlexport/vendor/hoa/file/Link/
H A DReadWrite.php205 * @param string $format Format (see printf's formats).
208 public function readArray($format = null) argument
210 return $this->scanf($format);
237 * @param string $format Format (see printf's formats).
240 public function scanf($format) argument
242 return fscanf($this->getStream(), $format);
/plugin/findologicxmlexport/vendor/jms/serializer/src/EventDispatcher/
H A DEventDispatcher.php52 $this->listeners[$eventName][] = [$callable, $class, $format, $interface];
65 $format = $eventData['format'] ?? null;
72 public function hasListeners(string $eventName, string $class, string $format): bool argument
78 if (!isset($this->classListeners[$eventName][$class][$format])) {
79 …$this->classListeners[$eventName][$class][$format] = $this->initializeListeners($eventName, $class…
82 return !!$this->classListeners[$eventName][$class][$format];
95 if (!isset($this->classListeners[$eventName][$objectClass][$format])) {
96 …->classListeners[$eventName][$objectClass][$format] = $this->initializeListeners($eventName, $clas…
99 foreach ($this->classListeners[$eventName][$objectClass][$format] as $listener) {
104 \call_user_func($listener[0], $event, $eventName, $class, $format, $this);
[all …]
H A DEventDispatcherInterface.php12 public function hasListeners(string $eventName, string $class, string $format): bool; argument
20 public function dispatch(string $eventName, string $class, string $format, Event $event): void; argument
27 …ddListener(string $eventName, $callable, ?string $class = null, ?string $format = null, ?string $i… argument
H A DLazyEventDispatcher.php33 …protected function initializeListeners(string $eventName, string $loweredClass, string $format): a… argument
35 $listeners = parent::initializeListeners($eventName, $loweredClass, $format);
/plugin/findologicxmlexport/vendor/jms/serializer/src/EventDispatcher/Subscriber/
H A DDoctrineProxySubscriber.php78 …roxy(PreSerializeEvent $event, string $eventName, string $class, string $format, EventDispatcherIn… argument
94 $dispatcher->dispatch($eventName, $parentClassName, $format, $newEvent);
/plugin/findologicxmlexport/vendor/hoa/zformat/
H A DREADME.md26 This library provides a new format called zFormat, used to express complex
/plugin/findologicxmlexport/vendor/jms/metadata/
H A D.travis.yml31 …- if [[ $TRAVIS_PHP_VERSION = '7.2' ]]; then php ocular.phar code-coverage:upload --format=php-clo…
/plugin/findologicxmlexport/vendor/jms/serializer/src/GraphNavigator/
H A DSerializationGraphNavigator.php183 … if ($this->dispatcher->hasListeners('serializer.pre_serialize', $type['name'], $this->format)) {
184 …->dispatcher->dispatch('serializer.pre_serialize', $type['name'], $this->format, $event = new PreS…
191 …stry->getHandler(GraphNavigatorInterface::DIRECTION_SERIALIZATION, $type['name'], $this->format)) {
253 …if ($this->dispatcher->hasListeners('serializer.post_serialize', $metadata->name, $this->format)) {
254 …$this->dispatcher->dispatch('serializer.post_serialize', $metadata->name, $this->format, new Objec…

1...<<31323334353637383940>>...56