Home
last modified time | relevance | path

Searched refs:component (Results 1 – 25 of 848) sorted by relevance

12345678910>>...34

/plugin/geophp/vendor/funiq/geophp/src/Geometry/
DMultiGeometry.php33 foreach ($this->components as $component) {
34 if (!$component->isSimple()) {
57 foreach ($this->components as $component) {
58 $componentsBoundaries[] = $component->boundary();
73 foreach ($this->components as $component) {
74 $area += $component->area();
87 foreach ($this->components as $component) {
88 $length += $component->length();
96 foreach ($this->components as $component) {
97 $length += $component->length3D();
[all …]
DCollection.php106 foreach ($this->components as $component) {
107 $component->invertXY();
142 foreach ($this->components as $i => $component) {
143 $componentBoundingBox = $component->getBBox();
179 foreach ($this->components as $component) {
180 $array[] = $component->asArray();
211 foreach ($this->components as $component) {
212 if (!$component->isEmpty()) {
225 foreach ($this->components as $component) {
226 $num += $component->numPoints();
[all …]
DGeometryCollection.php35 foreach ($this->getComponents() as $component) {
36 if ($component->dimension() > $dimension) {
37 $dimension = $component->dimension();
112 foreach ($this->getComponents() as $component) {
114 'type' => $component->geometryType(),
115 'components' => $component->asArray(),
127 foreach ($this->components as $component) {
128 if ($component->geometryType() === Geometry::GEOMETRY_COLLECTION) {
130 $geometries = array_merge($geometries, $component->explodeGeometries());
132 $geometries[] = $component;
DMultiPolygon.php42 foreach ($this->getComponents() as $component) {
43 if ($component->isEmpty()) {
46 $componentArea = $component->area();
48 $componentCentroid = $component->centroid();
65 foreach ($this->components as $component) {
66 $area += $component->area();
74 foreach ($this->getComponents() as $component) {
75 $rings = array_merge($rings, $component->components);
/plugin/asciidocjs/node_modules/clean-css/lib/optimizer/level-2/
Drestore.js22 function restoreValue(component) { argument
23 Array.prototype.unshift.apply(restored, component.value);
26 function isDefaultValue(component) { argument
27 var descriptor = compactable[component.name];
30 …return component.value[0][1] == descriptor.defaultValue[0] && (component.value[1] ? component.valu…
32 …return component.value[0][1] == descriptor.defaultValue[0] && (component.value[1] ? component.valu…
34 return component.value[0][1] == descriptor.defaultValue;
39 var component = components[i];
40 var isDefault = isDefaultValue(component);
42 if (component.name == 'background-clip') {
[all …]
/plugin/asciidocjs/node_modules/clean-css/lib/optimizer/level-2/properties/
Dmerge-into-shorthands.js144 var component;
151 component = components[descriptor.components[i]];
152 mayOverride = compactable[component.name].canOverride;
154 if (!everyValuesPair(mayOverride.bind(null, validator), newProperty.components[i], component)) {
166 var component;
171 component = components[componentName];
178 restoreFromOptimizing([component.all[component.position]], restoreWithComponents);
179 values = descriptor.restore(component, compactable);
262 var component;
271 component = components[descriptor.components[i]];
[all …]
Doverride-properties.js23 var component = property.components[i];
24 var descriptor = compactable[component.name];
27 var _component = shallowClone(component);
30 if (!everyValuesPair(canOverride.bind(null, validator), _component, component)) {
84 var component;
88 component = property.components[i];
90 if (!component.multiplex) {
91 turnLonghandValueIntoMultiplex(component, size);
119 function multiplexSize(component) { argument
122 for (var i = 0, l = component.value.length; i < l; i++) {
[all …]
/plugin/icalevents/vendor/sabre/vobject/lib/
DWriter.php22 * @param Component $component
26 static function write(Component $component) { argument
28 return $component->serialize();
35 * @param Component $component
40 static function writeJson(Component $component, $options = 0) { argument
42 return json_encode($component, $options);
49 * @param Component $component
53 static function writeXml(Component $component) { argument
61 if ($component instanceof Component\VCalendar) {
73 $component->xmlSerialize($writer);
/plugin/webdav/vendor/sabre/vobject/lib/
DWriter.php22 * @param Component $component
26 public static function write(Component $component) argument
28 return $component->serialize();
34 * @param Component $component
39 public static function writeJson(Component $component, $options = 0) argument
41 return json_encode($component, $options);
47 * @param Component $component
51 public static function writeXml(Component $component) argument
59 if ($component instanceof Component\VCalendar) {
67 $component->xmlSerialize($writer);
/plugin/jplayer/vendor/robloach/component-installer/
DREADME.md1 …ttps://secure.travis-ci.org/RobLoach/component-installer.png?branch=master)](http://travis-ci.org/…
8 composer require robloach/component-installer
14 "robloach/component-installer": "*"
35 "robloach/component-installer": "*"
79 `component-dir` option in your root *composer.json*'s `config`. The following
88 "component-dir": "public"
97 While `component-dir` depicts where the Components will be installed,
98 `component-baseurl` tells RequireJS the base path that will use when attempting
100 `component-baseurl` points to the `component-dir` when loaded externally. See
110 "component-dir": "public/assets",
[all …]
/plugin/icalevents/vendor/sabre/vobject/lib/Splitter/
DICalendar.php54 foreach ($data->children() as $component) {
55 if (!$component instanceof VObject\Component) {
60 if ($component->name === 'VTIMEZONE') {
61 $this->vtimezones[(string)$component->TZID] = $component;
66 if (!$component->UID) {
67 $component->UID = sha1(microtime()) . '-vobjectimport';
69 $uid = (string)$component->UID;
76 $this->objects[$uid]->add(clone $component);
/plugin/webdav/vendor/sabre/vobject/lib/Splitter/
DICalendar.php54 foreach ($data->children() as $component) {
55 if (!$component instanceof VObject\Component) {
60 if ('VTIMEZONE' === $component->name) {
61 $this->vtimezones[(string) $component->TZID] = $component;
66 if (!$component->UID) {
67 $component->UID = sha1(microtime()).'-vobjectimport';
69 $uid = (string) $component->UID;
76 $this->objects[$uid]->add(clone $component);
/plugin/webdavclient/vendor/sabre/vobject/lib/Splitter/
DICalendar.php57 foreach($data->children() as $component) {
58 if (!$component instanceof VObject\Component) {
63 if ($component->name === 'VTIMEZONE') {
64 $this->vtimezones[(string)$component->TZID] = $component;
69 if(!$component->UID) {
70 $component->UID = sha1(microtime()) . '-vobjectimport';
72 $uid = (string)$component->UID;
79 $this->objects[$uid]->add(clone $component);
/plugin/davcard/vendor/sabre/vobject/lib/Splitter/
DICalendar.php57 foreach($data->children() as $component) {
58 if (!$component instanceof VObject\Component) {
63 if ($component->name === 'VTIMEZONE') {
64 $this->vtimezones[(string)$component->TZID] = $component;
69 if(!$component->UID) {
70 $component->UID = sha1(microtime()) . '-vobjectimport';
72 $uid = (string)$component->UID;
79 $this->objects[$uid]->add(clone $component);
/plugin/davcal/vendor/sabre/vobject/lib/Splitter/
H A DICalendar.php57 foreach($data->children() as $component) {
58 if (!$component instanceof VObject\Component) {
63 if ($component->name === 'VTIMEZONE') {
64 $this->vtimezones[(string)$component->TZID] = $component;
69 if(!$component->UID) {
70 $component->UID = sha1(microtime()) . '-vobjectimport';
72 $uid = (string)$component->UID;
79 $this->objects[$uid]->add(clone $component);
/plugin/davcal/vendor/sabre/dav/bin/
H A Dmigrateto17.php229 $component = null;
232 foreach($vObject->getComponents() as $component) {
233 if ($component->name!=='VTIMEZONE') {
234 $componentType = $component->name;
242 $firstOccurence = $component->DTSTART->getDateTime()->getTimeStamp();
244 if (!isset($component->RRULE)) {
245 if (isset($component->DTEND)) {
246 $lastOccurence = $component->DTEND->getDateTime()->getTimeStamp();
247 } elseif (isset($component->DURATION)) {
248 $endDate = clone $component->DTSTART->getDateTime();
[all …]
/plugin/calendoku/syntax/
Dshowtable.php109 foreach ($object->components as $component) {
110 if ($component->invalid)
112 if ($component->isWithinTime($startdate, $enddate)) {
113 if (isset($components[$component->dtstartint]))
114 … array_push($components[$component->dtstartint], array($component, $pagename));
116 … $components[$component->dtstartint] = array(array($component, $pagename));
128 foreach ($mcomponent as $component) {
129 $this->addEntryCalendar($component[0], $component[1], $pos, $handler);
153 function addEntryCalendar($component, $pagename, $pos, &$handler) { argument
163 else if (isset($component->renderfields[$sfield]))
[all …]
/plugin/davcard/vendor/sabre/vobject/lib/
DFreeBusyGenerator.php185 foreach($object->getBaseComponents() as $component) {
187 switch($component->name) {
192 … if (isset($component->TRANSP) && (strtoupper($component->TRANSP) === 'TRANSPARENT')) {
195 if (isset($component->STATUS)) {
196 $status = strtoupper($component->STATUS);
207 if ($component->RRULE) {
209 … $iterator = new EventIterator($object, (string)$component->uid, $this->timeZone);
241 $startTime = $component->DTSTART->getDateTime($this->timeZone);
246 if (isset($component->DTEND)) {
247 $endTime = $component->DTEND->getDateTime($this->timeZone);
[all …]
/plugin/webdavclient/vendor/sabre/vobject/lib/
DFreeBusyGenerator.php185 foreach($object->getBaseComponents() as $component) {
187 switch($component->name) {
192 … if (isset($component->TRANSP) && (strtoupper($component->TRANSP) === 'TRANSPARENT')) {
195 if (isset($component->STATUS)) {
196 $status = strtoupper($component->STATUS);
207 if ($component->RRULE) {
209 … $iterator = new EventIterator($object, (string)$component->uid, $this->timeZone);
241 $startTime = $component->DTSTART->getDateTime($this->timeZone);
246 if (isset($component->DTEND)) {
247 $endTime = $component->DTEND->getDateTime($this->timeZone);
[all …]
/plugin/davcal/vendor/sabre/vobject/lib/
H A DFreeBusyGenerator.php185 foreach($object->getBaseComponents() as $component) {
187 switch($component->name) {
192 … if (isset($component->TRANSP) && (strtoupper($component->TRANSP) === 'TRANSPARENT')) {
195 if (isset($component->STATUS)) {
196 $status = strtoupper($component->STATUS);
207 if ($component->RRULE) {
209 … $iterator = new EventIterator($object, (string)$component->uid, $this->timeZone);
241 $startTime = $component->DTSTART->getDateTime($this->timeZone);
246 if (isset($component->DTEND)) {
247 $endTime = $component->DTEND->getDateTime($this->timeZone);
[all …]
/plugin/webdav/vendor/sabre/dav/lib/CalDAV/
DCalendarQueryValidator.php276 protected function validateTimeRange(VObject\Node $component, $start, $end) { argument
285 switch ($component->name) {
291 return $component->isInTimeRange($start, $end);
301 if ($component->parent->name === 'VEVENT' && $component->parent->RRULE) {
304 …$it = new VObject\Recur\EventIterator($component->parent->parent, (string)$component->parent->UID);
351 return $component->isInTimeRange($start, $end);
355 …\NotImplemented('time-range filters are currently not supported on ' . $component->name . ' compon…
364 return ($start <= $component->getDateTime() && $end >= $component->getDateTime());
369 …V\Exception\BadRequest('You cannot create a time-range filter on a ' . $component->name . ' compon…
/plugin/webdavclient/vendor/sabre/vobject/lib/Component/
DVCalendar.php177 foreach($this->children as $component) {
179 if (!$component instanceof VObject\Component)
182 if (isset($component->{'RECURRENCE-ID'}))
185 if ($componentName && $component->name !== strtoupper($componentName))
188 if ($component->name === 'VTIMEZONE')
191 $components[] = $component;
210 foreach($this->children as $component) {
212 if (!$component instanceof VObject\Component)
215 if (isset($component->{'RECURRENCE-ID'}))
218 if ($componentName && $component->name !== strtoupper($componentName))
[all …]
/plugin/davcard/vendor/sabre/vobject/lib/Component/
DVCalendar.php177 foreach($this->children as $component) {
179 if (!$component instanceof VObject\Component)
182 if (isset($component->{'RECURRENCE-ID'}))
185 if ($componentName && $component->name !== strtoupper($componentName))
188 if ($component->name === 'VTIMEZONE')
191 $components[] = $component;
210 foreach($this->children as $component) {
212 if (!$component instanceof VObject\Component)
215 if (isset($component->{'RECURRENCE-ID'}))
218 if ($componentName && $component->name !== strtoupper($componentName))
[all …]
/plugin/davcal/vendor/sabre/dav/lib/CalDAV/
H A DCalendarQueryValidator.php280 protected function validateTimeRange(VObject\Node $component, $start, $end) { argument
289 switch ($component->name) {
295 return $component->isInTimeRange($start, $end);
305 if ($component->parent->name === 'VEVENT' && $component->parent->RRULE) {
308 …$it = new VObject\Recur\EventIterator($component->parent->parent, (string)$component->parent->UID);
355 return $component->isInTimeRange($start, $end);
359 …\NotImplemented('time-range filters are currently not supported on ' . $component->name . ' compon…
368 return ($start <= $component->getDateTime() && $end >= $component->getDateTime());
373 …V\Exception\BadRequest('You cannot create a time-range filter on a ' . $component->name . ' compon…
/plugin/davcal/vendor/sabre/vobject/lib/Component/
H A DVCalendar.php177 foreach($this->children as $component) {
179 if (!$component instanceof VObject\Component)
182 if (isset($component->{'RECURRENCE-ID'}))
185 if ($componentName && $component->name !== strtoupper($componentName))
188 if ($component->name === 'VTIMEZONE')
191 $components[] = $component;
210 foreach($this->children as $component) {
212 if (!$component instanceof VObject\Component)
215 if (isset($component->{'RECURRENCE-ID'}))
218 if ($componentName && $component->name !== strtoupper($componentName))
[all …]

12345678910>>...34