Home
last modified time | relevance | path

Searched refs:i (Results 26 – 50 of 3519) sorted by last modified time

12345678910>>...141

/plugin/struct/types/
H A DLookup.php133 for ($i = 0; $i < $len; $i++) {
134 $val = json_encode([$pids[$i], (int)$rids[$i]], JSON_THROW_ON_ERROR);
135 $options[$val] = $result[$i][0]->getDisplayValue();
/plugin/struct/action/
H A Dbureaucracy.php114 for ($i = 0; $i < $counter; $i++) {
121 if (($pid && $pids[$i] === $pid) || ($rid && $rids[$i] === $rid)) {
123 $new_value[] = $result[$i][0]->getDisplayValue();
/plugin/struct/lang/cs/
H A Dassignments_intro.txt
H A Deditor_intro.txt
/plugin/doi/Resolver/
H A DAbstractIsbnResolver.php22 return preg_replace('/[^0-9X]/i', '', $id);
/plugin/doi/syntax/
H A Ddoi.php116 $journal .= ' <i>p' . hsc($data['page']) . '</i>';
153 for ($i = 0; $i < $len; $i++) {
155 $renderer->cdata($data['authors'][$i]);
157 if ($i < $len - 1) {
/plugin/openlayersmap/ol7/
H A Dol-layerswitcher.js
H A Dol.js.map
/plugin/openlayersmap/
H A DStaticMap.php640 for ($i = 1; $i < $geom->numGeometries() + 1; $i++) {
641 $_geom = $geom->geometryN($i);
682 for ($i = 1; $i < $extRing->numGeometries(); $i++) {
683 $p1 = $extRing->geometryN($i);
693 // print_r('points:('.($i-1).')<br />');
695 // imagepolygon ($this->image, $extPoints, $i
[all...]
/plugin/openlayersmap/lang/fr/
H A Dhelp.txt18 * **récupération d'informations** la carte peut contenir des éléments qui contiennent plus d'informations, à l'aide de la touche i vous pouvez activer un curseur qui peut être déplacé à l'aide des touches fléchées, en appuyant sur la touche entrée, une récupération d'informations s'exécutera. Appuyez sur la touche i ou la touche Échap pour retourner au mode de navigation
/plugin/openlayersmap/lang/ru/
H A Dhelp.txt16 * **получение информации** карта может содержать элементы с дополнительной информацией; по нажатию клавиши i появляется курсор, который можно перемещать между элементами клавишами со стрелками; по нажатию Enter информация о выбранном элементе показывается во всплывающем окне; по нажатию клавиш i или Esc происходит возврат в обычный режим
/plugin/openlayersmap/lang/en/
H A Dhelp.txt18 * **retrieving information** the map may contain elements that contain more information, using the i key you can activate a cursor that may be moved using the arrow keys, pressing the enter will execute an information retrieval. press the i or the escape key to return to navigation mode
/plugin/openlayersmap/lang/nl/
H A Dhelp.txt18 * **informatie opvragen** in de kaart kunnen zich elementen bevinden die meer informatie dragen, middels de i toets activeert u een cursor die met de pijltoetsen verschoven kan worden, met de enter toets voert u een opvraag actie uit. Gebruik de i of de escape toets om deze functie weer uit te schakelen en terug te keren naar navigatie modus
/plugin/geophp/vendor/funiq/geophp/src/Adapter/
H A DGeoHash.php132 $i = 0;
133 while ($i < strlen($geoHashes[0])) {
134 $char = $geoHashes[0][$i];
136 if ($hash[$i] != $char) {
141 $i++;
164 $i = 0;
184 if ((1 & $b) == (1 & $i)) {
207 $i++;
229 for ($i = 0, $c = strlen($hash); $i <
[all...]
H A DGeoJSON.php261 foreach ($geometry->getComponents() as $i => $component) {
265 'geometry' => $components[$i],
H A DKML.php310 $i = 0;
312 if ($i != 0) {
316 $i++;
H A DTWKB.php150 for ($i = 0; $i < $dimension; $i++) {
151 $bBoxMin[$i] = $this->reader->readUVarInt() / $precisions[$i];
152 $bBoxMax[$i] = $this->reader->readUVarInt() / $precisions[$i] + $bBoxMin[$i];
249 for ($i = 0; $i <
[all...]
H A DWKB.php213 for ($i = 0; $i < $lineLength; ++$i) {
228 $i = 1;
229 while ($i <= $polyLength) {
234 $i++;
246 for ($i = 0; $i < $multiLength; $i++) {
357 foreach ($line->getComponents() as $i
[all...]
/plugin/geophp/vendor/funiq/geophp/src/Geometry/
H A DMultiPoint.php60 for ($i = 0; $i < $componentCount; $i++) {
61 for ($j = $i + 1; $j < $componentCount; $j++) {
62 if ($this->components[$i]->equals($this->components[$j])) {
H A DPolygon.php28 foreach ($this->getComponents() as $i => $component) {
37 $this->components[$i] = new LineString(
130 foreach ($this->getComponents() as $i => $component) {
132 if ($i == 0) {
235 foreach ($segments as $i => $segment) {
237 if ($i != $j) {
270 for ($i = 1; $i < $verticesCount; $i++) {
271 $vertex1 = $vertices[$i
[all...]
H A DCollection.php40 for ($i = 0; $i < $componentCount; ++$i) { // foreach is too memory-intensive here in PHP 5.*
41 if ($components[$i] instanceof $allowedComponentType) {
42 if (!$allowEmptyComponents && $components[$i]->isEmpty()) {
45 $components[$i]->geometryType() . 's (' . ($i + 1) . '. component)'
48 if ($components[$i]->hasZ() && !$this->hasZ) {
51 if ($components[$i]->isMeasured() && !$this->isMeasured) {
55 $componentType = gettype($components[$i]) !
[all...]
H A DLineString.php167 for ($i = 0; $i < $numPoints; ++$i) {
169 $lat1 = $points[$i]->y() * $rad;
170 $lat2 = $points[$i + 1]->y() * $rad;
171 $lon1 = $points[$i]->x() * $rad;
172 $lon2 = $points[$i + 1]->x() * $rad;
184 if ($points[$i]->is3D()) {
187 pow($points[$i + 1]->z() - $points[$i]
[all...]
/plugin/yalist/
H A Dsyntax.php243 foreach($data['output'] as $i) {
246 $this->renderXhtmlItem($renderer, $i, $data);
249 $this->renderLatexItem($renderer, $i, $data);
252 $this->renderOdtItem($renderer, $i, $data);
/plugin/spatialhelper/helper/
H A Dindex.php158 $i = array_search($id, $knownIds);
159 Logger::debug('Unsetting:' . $knownIds [$i]);
160 unset($knownIds [$i]);
314 $i = array_search($id, $knownIds);
315 Logger::debug("removing: $knownIds[$i] from the index.");
316 unset($knownIds [$i]);
/plugin/photogallery/lightGallery/js/
H A Djquery.mousewheel.min.js8i.call(arguments,1),j=0,l=0,m=0,n=0,o=0,p=0;if(b=a.event.fix(g),b.type="mousewheel","detail"in g&&…

12345678910>>...141