Home
last modified time | relevance | path

Searched refs:components (Results 1 – 25 of 617) sorted by last modified time

12345678910>>...25

/plugin/pagelist/
H A DCOPYING164 form) with the major components (compiler, kernel, and so on) of the
/plugin/twofactoremail/
H A DLICENSE162 form) with the major components (compiler, kernel, and so on) of the
/plugin/twofactor/
H A DLICENSE162 form) with the major components (compiler, kernel, and so on) of the
/plugin/attribute/
H A DLICENSE162 form) with the major components (compiler, kernel, and so on) of the
/plugin/nspages/
H A DLICENSE162 form) with the major components (compiler, kernel, and so on) of the
/plugin/dbquery/
H A DLICENSE162 form) with the major components (compiler, kernel, and so on) of the
/plugin/siteexport/
H A DLICENSE162 form) with the major components (compiler, kernel, and so on) of the
/plugin/linkback/
H A DCOPYING164 form) with the major components (compiler, kernel, and so on) of the
/plugin/structpublish/
H A DLICENSE162 form) with the major components (compiler, kernel, and so on) of the
/plugin/diagrams/
H A DLICENSE162 form) with the major components (compiler, kernel, and so on) of the
/plugin/struct/meta/
H A DInlineConfigParser.php17 * Any component can be placed in double quotes (needed to allow space, dot or question mark in components).
35 // Extract components
38 $components = str_getcsv(trim($parts[0]), '.');
82 if (count($components) == 3) {
84 $lines[] = 'schema: ' . trim($components[1]);
85 $lines[] = 'field: ' . trim($components[2]);
86 $lines[] = 'filter: %pageid% = ' . trim($components[0]);
87 } elseif (count($components) == 2) {
89 $lines[] = 'schema: ' . trim($components[0]);
90 $lines[] = 'field: ' . trim($components[
[all...]
/plugin/struct/
H A DLICENSE162 form) with the major components (compiler, kernel, and so on) of the
/plugin/mermaid/
H A DLICENSE162 form) with the major components (compiler, kernel, and so on) of the
/plugin/doi/
H A DLICENSE162 form) with the major components (compiler, kernel, and so on) of the
/plugin/openlayersmap/ol7/
H A Dol.js.map
/plugin/shell/
H A DLICENSE162 form) with the major components (compiler, kernel, and so on) of the
/plugin/geophp/vendor/funiq/geophp/src/Geometry/
H A DMultiLineString.php11 * @property LineString[] $components
16 public function __construct($components = []) argument
18 parent::__construct($components, true, LineString::class);
24 protected $components = []; variable in geoPHP\\Geometry\\MultiLineString
48 $components = $this->getComponents();
49 foreach ($components as $line) {
72 foreach ($this->components as $line) {
H A DMultiPoint.php15 * @property Point[] $components The elements of a MultiPoint are Points
20 public function __construct($components = []) argument
22 parent::__construct($components, true, Point::class);
59 $componentCount = count($this->components);
62 if ($this->components[$i]->equals($this->components[$j])) {
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 DMultiSurface.php14 public function __construct($components = [], $allowEmptyComponents = true, $allowedComponentType = Surface::class) argument
16 parent::__construct($components, $allowEmptyComponents, $allowedComponentType);
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 DSurface.php19 public function __construct($components = [], $allowEmptyComponents = true, $allowedComponentType = Curve::class) argument
21 parent::__construct($components, $allowEmptyComponents, $allowedComponentType);
/plugin/geophp/vendor/funiq/geophp/src/
H A DgeoPHP.php206 $components = $geometries->getComponents();
207 if (count($components) == 1) {
208 return $components[0];
/plugin/geophp/vendor/funiq/geophp/src/Adapter/
H A DGeoJSON.php246 $components = [];
252 $components[] = $this->getArray($component, false);
257 'geometries' => $components
265 'geometry' => $components[$i],
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) {

12345678910>>...25