Home
last modified time | relevance | path

Searched refs:components (Results 26 – 50 of 617) sorted by relevance

12345678910>>...25

/plugin/geophp/vendor/funiq/geophp/src/Adapter/
H A DKML.php169 $components = [];
179 $components[] = $this->parseLineString($outerRingElement);
181 if (count($components) != 1) {
190 $components[] = $this->parseLineString($innerRingElement);
194 return new Polygon($components);
199 $components = [];
210 $components[] = $this->$function($child);
213 return new GeometryCollection($components);
333 $components = $geometry->getComponents();
335 if (!empty($components)) {
[all...]
H A DWKB.php212 $components = [];
216 $components[] = $point;
219 return new LineString($components);
227 $components = [];
232 $components[] = $ring;
237 return new Polygon($components);
245 $components = [];
249 $components[] = $component;
253 return new MultiPoint($components);
255 return new MultiLineString($components);
[all...]
H A DGeoRSS.php137 $components = $this->getPointsFromCoordinates(trim($line->firstChild->nodeValue));
138 $lines[] = new LineString($components);
168 $components = [
175 $exteriorRing = new LineString($components);
271 $components = $geometry->getComponents();
272 foreach ($components as $component) {
/plugin/highlightjs/highlight/
H A Dwp_highlight.js.php12 $components = explode(DIRECTORY_SEPARATOR, dirname(__FILE__)); variable
13 $l = sizeof($components);
14 …cript_path = get_settings('home') . '/' . $components[$l - 3] . '/' . $components[$l - 2] . '/' . …
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/RSA/Formats/Keys/
H A DPuTTY.php62 $components = parent::load($key, $password);
63 if (!isset($components['private'])) {
64 return $components;
66 extract($components);
67 unset($components['public'], $components['private']);
/plugin/geophp/vendor/funiq/geophp/src/Geometry/
H A DMultiPolygon.php11 * @property Polygon[] $components
16 public function __construct($components = []) argument
18 parent::__construct($components, true, Polygon::class);
65 foreach ($this->components as $component) {
75 $rings = array_merge($rings, $component->components);
H A DCurve.php13 * @property Point[] $components A curve consists of sequence of Points
18 public function __construct($components = [], $allowEmptyComponents = false, $allowedComponentType = Point::class) argument
20 if (is_array($components) && count($components) == 1) {
23 parent::__construct($components, $allowEmptyComponents, $allowedComponentType);
H A DGeometryCollection.php14 * @param Geometry[] $components Array of geometries. Components of GeometryCollection can be
19 public function __construct($components = []) argument
21 parent::__construct($components, true);
30 * @return int Returns the highest spatial dimension of components
115 'components' => $component->asArray(),
127 foreach ($this->components as $component) {
H A DPolygon.php14 * @property LineString[] $components
20 * @param LineString[] $components
24 public function __construct($components = [], $forceCreate = false) argument
26 parent::__construct($components, null, LineString::class);
37 $this->components[$i] = new LineString(
84 $exteriorRing = $this->components[0];
102 foreach ($this->components as $delta => $component) {
207 return $this->components[0];
H A DMultiSurface.php14 public function __construct($components = [], $allowEmptyComponents = true, $allowedComponentType = Surface::class) argument
16 parent::__construct($components, $allowEmptyComponents, $allowedComponentType);
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/Common/
H A DAsymmetricKey.php169 $components = false;
177 $components = false;
179 if ($components !== false) {
184 if ($components === false) {
188 $components['format'] = $format;
189 $comment = isset($components['comment']) ? $components['comment'] : null;
190 $new = static::onLoad($components);
259 $components = false;
266 if ($components === false) {
270 $components['format'] = $format;
[all …]
/plugin/jplayer/vendor/robloach/component-installer/
H A DREADME.md26 composer require components/jquery
33 "components/jquery": "2.*",
85 "components/jquery": "*"
93 Defaults to `components`.
107 "components/jquery": "*"
116 Defaults to `components`.
123 "components/jquery": "*"
146 "name": "components/bootstrap",
179 jQuery to *components/myownjquery* rather than *components/jquery*:
183 "name": "components/jquery",
[all …]
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/Formats/Keys/
H A Dlibsodium.php74 $components = ['curve' => $curve];
76 $components['dA'] = $curve->extractSecret($private);
78 $components['QA'] = isset($public) ?
80 $curve->multiplyPoint($curve->getBasePoint(), $components['dA']);
82 return $components;
H A DMontgomeryPublic.php60 $components = ['curve' => $curve];
61 … $components['QA'] = [$components['curve']->convertInteger(new BigInteger(strrev($key), 256))];
63 return $components;
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/
H A DEC.php211 * @param array $components
213 protected static function onLoad($components) argument
219 if (!isset($components['dA']) && !isset($components['QA'])) {
221 $new->curve = $components['curve'];
225 $new = isset($components['dA']) ?
228 $new->curve = $components['curve'];
229 $new->QA = $components['QA'];
231 if (isset($components['dA'])) {
232 $new->dA = $components['dA'];
236 return $new->withHash($components['curve']::HASH);
/plugin/components/lib/
H A Dajax_manager.php35 $components = explode('.', $call);
36 if (count($components) <= 1) return FALSE;
37 $plugin = array_shift($components);
38 $call = implode('.', $components);
H A Daction_manager.php92 $components = explode('.', $action);
93 if (count($components) <= 1) return FALSE;
94 $plugin = array_shift($components);
95 $action = implode('.', $components);
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/DSA/Formats/Keys/
H A DPKCS8.php98 $components = ASN1::asn1map($decoded[0], Maps\DSAParams::MAP);
99 if (!is_array($components)) {
109 $components[$var] = ASN1::asn1map($decoded[0], Maps\DSAPublicKey::MAP);
110 if (!$components[$var] instanceof BigInteger) {
115 $components['meta'] = $key['meta'];
118 return $components;
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/Common/Formats/Keys/
H A DPuTTY.php180 $components = call_user_func([static::PUBLIC_HANDLER, 'load'], $data);
181 if ($components === false) {
184 $components += $values;
187 return $components;
190 $components = [];
200 $components['type'] = $type = rtrim($key[0]);
208 $components['comment'] = trim(preg_replace('#Comment: (.+)#', '$1', $key[2]));
213 $source = Strings::packSSH2('ssss', $type, $encryption, $components['comment'], $public);
221 $components['public'] = $public;
282 $components['private'] = $private;
[all …]
/plugin/jcapture/src/com/hammurapi/jcapture/
H A DComponentMover.java71 public ComponentMover(Class destinationClass, Component... components) { in ComponentMover() argument
73 registerComponent(components); in ComponentMover()
87 Component... components) { in ComponentMover() argument
89 registerComponent(components); in ComponentMover()
179 public void deregisterComponent(Component... components) { in deregisterComponent() argument
180 for (Component component : components) in deregisterComponent()
190 public void registerComponent(Component... components) { in registerComponent() argument
191 for (Component component : components) in registerComponent()
H A DComponentResizer.java76 public ComponentResizer(Component... components) { in ComponentResizer() argument
77 this(new Insets(5, 5, 5, 5), new Dimension(1, 1), components); in ComponentResizer()
90 public ComponentResizer(Insets dragInsets, Component... components) { in ComponentResizer() argument
91 this(dragInsets, new Dimension(1, 1), components); in ComponentResizer()
106 Component... components) { in ComponentResizer() argument
109 registerComponent(components); in ComponentResizer()
185 public void deregisterComponent(Component... components) { in deregisterComponent() argument
186 for (Component component : components) { in deregisterComponent()
198 public void registerComponent(Component... components) { in registerComponent() argument
199 for (Component component : components) { in registerComponent()
/plugin/issuelinks/classes/
H A DIssue.php23 private $components = []; variable in dokuwiki\\plugin\\issuelinks\\classes\\Issue
283 return $this->components;
287 * @param array|string $components
291 public function setComponents($components) argument
293 if (is_string($components)) {
294 $components = array_filter(array_map('trim', explode(',', $components)));
296 if (!empty($components[0]['name'])) {
297 $components = array_column($components, 'name');
299 $this->components = $components;
600 $components = $this->getComponents();
[all …]
/plugin/calendoku/syntax/
H A Dshowtable.php108 if (count($object->components) > 0) {
109 foreach ($object->components as $component) {
113 if (isset($components[$component->dtstartint]))
114 … array_push($components[$component->dtstartint], array($component, $pagename));
116 … $components[$component->dtstartint] = array(array($component, $pagename));
125 ksort($components, SORT_NUMERIC);
127 foreach ($components as $mcomponent) {
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/DH/Formats/Keys/
H A DPKCS1.php57 $components = ASN1::asn1map($decoded[0], Maps\DHParameter::MAP);
58 if (!is_array($components)) {
62 return $components;
H A DPKCS8.php94 $components = ASN1::asn1map($decoded[0], Maps\DHParameter::MAP);
95 if (!is_array($components)) {
107 $components[$type] = $decoded[0]['content'];
109 return $components;

12345678910>>...25