Home
last modified time | relevance | path

Searched refs:container (Results 426 – 450 of 601) sorted by last modified time

1...<<11121314151617181920>>...25

/plugin/sequencediagram/bower_components/js-sequence-diagrams/src/
H A Dtheme-raphael.js63 setupPaper: function(container) { argument
64 this.paper_ = new Raphael(container, 320, 200);
68 draw: function(container) { argument
69 BaseTheme.prototype.draw.call(this, container); argument
171 setupPaper: function(container) { argument
172 RaphaelTheme.prototype.setupPaper.call(this, container); argument
/plugin/sequencediagram/bower_components/js-sequence-diagrams/dist/
H A Dsequence-diagram-min.js6container){},draw:function(container){this.setupPaper(container),this.layout();var titleHeight=thi… argument
8container,options){var defaultOptions={theme:"hand"};if(options=_.defaults(options||{},defaultOpti… argument
H A Dsequence-diagram-min.js.map1 …seTheme","init","actorsHeight_","signalsHeight_","title_","setupPaper","container","draw","layout"…
H A Dsequence-diagram-raphael-min.js.map1 …seTheme","init","actorsHeight_","signalsHeight_","title_","setupPaper","container","draw","layout"…
H A Dsequence-diagram-raphael.js963 setupPaper: function(container) {}, argument
965 draw: function(container) { argument
966 this.setupPaper(container);
1335 setupPaper: function(container) { argument
1336 this.paper_ = new Raphael(container, 320, 200);
1340 draw: function(container) { argument
1341 BaseTheme.prototype.draw.call(this, container); argument
1443 setupPaper: function(container) { argument
2395 Diagram.prototype.drawSVG = function(container, options) { argument
2407 var div = _.isString(container) ? document.getElementById(container) : container;
[all …]
/plugin/sequencediagram/bower_components/raphael/
H A Draphael.min.js1container:a,width:a.style.pixelWidth||a.offsetWidth,height:a.style.pixelHeight||a.offsetHeight}:{c…
/plugin/webcomponent/_test/data/pages/
H A Dcontainer.txt4 [[https://getbootstrap.com/docs/4.3/layout/overview/#containers|container]] implementation of Boots…
H A Dnavbar.txt7 * a [[container|container]] to limit the horizontal width and center the navbar
11 * a [[collapse|collapse container]] to group the element that will collapse
31 <container>
97 </container>
/plugin/findologicxmlexport/vendor/phpunit/phpunit/tests/_files/
H A DSampleArrayAccess.php10 private $container; variable in SampleArrayAccess
14 $this->container = [];
19 $this->container[] = $value;
21 $this->container[$offset] = $value;
26 return isset($this->container[$offset]);
30 unset($this->container[$offset]);
34 return isset($this->container[$offset]) ? $this->container[$offset] : null;
/plugin/findologicxmlexport/vendor/jms/serializer/tests/Serializer/EventDispatcher/
H A DLazyEventDispatcherWithPsr11ContainerTest.php18 $this->container->set($serviceId, $listener);
H A DLazyEventDispatcherTest.php11 protected $container; variable in JMS\\Serializer\\Tests\\Serializer\\EventDispatcher\\LazyEventDispatcherTest
15 $this->container = $this->createContainer();
58 return new LazyEventDispatcher($this->container);
H A DLazyEventDispatcherWithSymfonyContainerTest.php18 $this->container->set($serviceId, $listener);
/plugin/findologicxmlexport/vendor/phpunit/php-code-coverage/src/Report/Xml/
H A DTotals.php20 private $container; variable in SebastianBergmann\\CodeCoverage\\Report\\Xml\\Totals
47 public function __construct(\DOMElement $container) argument
49 $this->container = $container;
50 $dom = $container->ownerDocument;
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/use/
H A Dinheritance.test6 {{ block('container') }}
14 {% block container %}
15 <div class="container">{{ block('sub_container') }}</div>
24 <div class="container"> <div class="overridden_sub_container">overridden sub_container</div>
H A Dinheritance2.test7 {{ block('container') }}
13 {% block container %}
14 <div class="container">{{ block('sub_container') }}</div>
23 <div class="container"> <div class="overridden_sub_container">overridden sub_container</div>
/plugin/findologicxmlexport/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/js/
H A Dnv.d3.min.js2 …pdate=function(){r.beforeUpdate(),p.transition().duration(s).call(b)},b.container=this,!(k&&k.leng…
3container=this,!e||!h.call(this,e,o))return a.utils.noData(b,p),b;p.selectAll(".nv-noData").remove…
4container=this,u.disabled=k.map(function(a){return!!a.disabled}),!v){var D;v={};for(D in u)v[D]=u[…
5container=this,M.setter(R(v),b.update).getter(Q(v)).update(),M.disabled=v.map(function(a){return!!…
6container=this,t=e.stacked(),u.setter(B(j),b.update).getter(A(j)).update(),u.disabled=j.map(functi…
7container=this,l.setter(s(e),b.update).getter(r(e)).update(),l.disabled=e.map(function(a){return!!…
8container=this,!p||!p.length)return a.utils.noData(b,s),b;s.selectAll(".nv-noData").remove();var v…
/plugin/findologicxmlexport/vendor/jms/serializer/src/EventDispatcher/
H A DLazyEventDispatcher.php16 private $container; variable in JMS\\Serializer\\EventDispatcher\\LazyEventDispatcher
19 * @param PsrContainerInterface|ContainerInterface $container
21 public function __construct($container) argument
23 … if (!$container instanceof PsrContainerInterface && !$container instanceof ContainerInterface) {
24 …::class, ContainerInterface::class, \is_object($container) ? \get_class($container) : \gettype($co…
27 $this->container = $container;
42 if (!$this->container->has($listener[0][0])) {
46 $listener[0][0] = $this->container->get($listener[0][0]);
/plugin/findologicxmlexport/vendor/jms/serializer/tests/Handler/
H A DLazyHandlerRegistryTest.php12 protected $container; variable in JMS\\Serializer\\Tests\\Handler\\LazyHandlerRegistryTest
16 $this->container = $this->createContainer();
23 return new LazyHandlerRegistry($this->container);
H A DLazyHandlerRegistryWithPsr11ContainerTest.php18 $this->container->set($serviceId, $listener);
H A DLazyHandlerRegistryWithSymfonyContainerTest.php18 $this->container->set($serviceId, $listener);
/plugin/findologicxmlexport/vendor/hoa/event/
H A DCHANGELOG.md32 …* Improve readability by adding constants to registered events container. (Metalaka, 2015-11-20T19…
/plugin/findologicxmlexport/vendor/jms/metadata/src/Driver/
H A DLazyLoadingDriver.php15 private $container; variable in Metadata\\Driver\\LazyLoadingDriver
22 public function __construct(ContainerInterface $container, string $realDriverId) argument
24 $this->container = $container;
33 return $this->container->get($this->realDriverId)->loadMetadataForClass($class);
/plugin/findologicxmlexport/vendor/jms/serializer/src/Handler/
H A DLazyHandlerRegistry.php16 private $container; variable in JMS\\Serializer\\Handler\\LazyHandlerRegistry
24 * @param PsrContainerInterface|ContainerInterface $container
27 public function __construct($container, array $handlers = []) argument
29 … if (!$container instanceof PsrContainerInterface && !$container instanceof ContainerInterface) {
30 …::class, ContainerInterface::class, \is_object($container) ? \get_class($container) : \gettype($co…
34 $this->container = $container;
60 if (\is_array($handler) && \is_string($handler[0]) && $this->container->has($handler[0])) {
61 $handler[0] = $this->container->get($handler[0]);
/plugin/findologicxmlexport/vendor/twig/twig/src/RuntimeLoader/
H A DContainerRuntimeLoader.php26 private $container; variable in Twig\\RuntimeLoader\\ContainerRuntimeLoader
28 public function __construct(ContainerInterface $container) argument
30 $this->container = $container;
35 if ($this->container->has($class)) {
36 return $this->container->get($class);
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/
H A DContainerRuntimeLoaderTest.php21 $container = $this->getMockBuilder('Psr\Container\ContainerInterface')->getMock();
22 $container->expects($this->once())->method('has')->with('stdClass')->willReturn(true);
23 … $container->expects($this->once())->method('get')->with('stdClass')->willReturn(new \stdClass());
25 $loader = new ContainerRuntimeLoader($container);
35 $container = $this->getMockBuilder('Psr\Container\ContainerInterface')->getMock();
36 $container->expects($this->once())->method('has')->with('Foo');
37 $container->expects($this->never())->method('get');
39 $loader = new ContainerRuntimeLoader($container);

1...<<11121314151617181920>>...25