Home
last modified time | relevance | path

Searched refs:depth (Results 26 – 50 of 271) sorted by relevance

1234567891011

/plugin/pgn4web/pgn4web/
H A Dviewer-links.php33 function get_links($targetUrl, $depth) { argument
38 if ($frameDepth - $depth > $actualFrameDepth) { $actualFrameDepth = $frameDepth - $depth; }
53 if ($depth > 0) {
58 if ($url != $targetUrl) { get_links($url, $depth -1); }
64 if ($url != $targetUrl) { get_links($url, $depth -1); }
/plugin/codemirror/dist/modes/
H A Dsmarty.min.js1depth++;b.tokenize=o;j="startTag";return"tag"}}if(h>-1)a.string=c.slice(0,h);var i=g.token(a,b.bas…
H A Djsx.min.js.map1depth","prev","this","copyContext","context","copyState","defineMode","config","modeConfig","xmlMo…
/plugin/pglist/
H A Dsyntax.php71 'depth' => 1,
106 if(preg_match('/\b(\d+)\b/i',$params,$m)) $conf['depth'] = $m[1];
125 'depth' => $data['depth'],
/plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/Formatter/
H A DNormalizerFormatter.php130 protected function normalize($data, int $depth = 0) argument
132 if ($depth > $this->maxNormalizeDepth) {
159 $normalized[$key] = $this->normalize($value, $depth + 1);
171 return $this->normalizeException($data, $depth);
199 protected function normalizeException(Throwable $e, int $depth = 0) argument
238 $data['previous'] = $this->normalizeException($previous, $depth + 1);
/plugin/findologicxmlexport/vendor/jms/serializer/src/
H A DJsonDeserializationVisitor.php24 private $depth = 512; variable in JMS\\Serializer\\JsonDeserializationVisitor
38 int $depth = 512 argument
42 $this->depth = $depth;
227 $decoded = json_decode($str, true, $this->depth, $this->options);
/plugin/commonmark/vendor/league/commonmark/src/Node/
H A DNode.php28 protected int $depth = 0;
70 $this->depth = $node === null ? 0 : $node->depth + 1;
139 $this->depth = 0;
222 return $this->depth;
22 protected $depth = 0; global() variable in League\\CommonMark\\Node\\Node
/plugin/indexmenu/scripts/
H A Dtoolbarindexwizard.js272 let sel, ns, depth, syntax, eo;
283 depth = parseInt(jQuery('#nsdepth').val());
284 depth = depth ? '#' + depth : '';
286 syntax = '{{indexmenu>' + ns + depth + options + '}}';
287 eo = depth.length + options.length + 2;
/plugin/pgn4web/pgn4web/libs/garbochess/
H A Dgarbochess.js622 value += depth;
624 value -= depth;
699 this.depth = depth;
841 if (minEval + depth >= beta)
856 hashValue -= depth;
921 var movePicker = new MovePicker(hashMove, depth, g_killers[depth][0], g_killers[depth][1]);
995 g_killers[depth][1] = g_killers[depth][0];
1036 alpha = alpha < minEval + depth ? alpha : minEval + depth;
1037 beta = beta > maxEval - (depth + 1) ? beta : maxEval - (depth + 1);
1053 var movePicker = new MovePicker(hashMove, depth, g_killers[depth][0], g_killers[depth][1]);
[all …]
/plugin/combo/ComboStrap/
H A DFsWikiUtility.php73 'depth' => 1,
169 * @param int $depth
172 public static function getPages($startPath, int $depth = 0): array argument
212 'depth' => $depth,
/plugin/webdav/vendor/sabre/dav/lib/DAV/
H A DServer.php606 $depth = $this->httpRequest->getHeader('Depth');
608 if (is_null($depth)) return $default;
610 if ($depth == 'infinity') return self::DEPTH_INFINITY;
614 if (!ctype_digit($depth)) return $default;
616 return (int)$depth;
932 * @param int $depth
938 function getPropertiesForPath($path, $propertyNames = [], $depth = 0) { argument
954 * @param int $depth
957 function getPropertiesIteratorForPath($path, $propertyNames = [], $depth = 0) { argument
960 if (!$this->enablePropfindDepthInfinity && $depth != 0) $depth = 1;
[all …]
/plugin/pagetitle/
H A Dhelper.php42 $depth = count($nodes);
45 for ($i = $start_depth; $i < $depth; $i++) {
64 … if ($i < $depth-1 OR ($i == $depth-1 AND !preg_match('/.*:'.$conf['start'].'$/', $id))) {
/plugin/davcal/vendor/sabre/xml/lib/Element/
H A DElements.php110 $currentDepth = $reader->depth;
119 } while ($reader->depth >= $currentDepth && $reader->next());
/plugin/davcal/vendor/sabre/dav/lib/DAV/
H A DClient.php192 * @param int $depth
195 function propFind($url, array $properties, $depth = 0) { argument
224 'Depth' => $depth,
237 if ($depth === 0) {
H A DServer.php573 $depth = $this->httpRequest->getHeader('Depth');
575 if (is_null($depth)) return $default;
577 if ($depth == 'infinity') return self::DEPTH_INFINITY;
581 if (!ctype_digit($depth)) return $default;
583 return (int)$depth;
885 * @param int $depth
888 function getPropertiesForPath($path, $propertyNames = [], $depth = 0) { argument
891 if (!$this->enablePropfindDepthInfinity && $depth != 0) $depth = 1;
896 $propFind = new PropFind($path, (array)$propertyNames, $depth, $propFindType);
905 if (($depth > 0 || $depth === self::DEPTH_INFINITY) && $parentNode instanceof ICollection) {
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/
H A DFile.php1900 $depth=1, argument
1904 echo str_repeat("\t", $depth);
1931 echo str_repeat("\t", $depth);
1956 echo str_repeat("\t", $depth);
2033 ($depth + 1),
2130 ($depth + 1),
2212 if ($depth > 50) {
2221 $oldDepth = $depth;
2229 $depth--;
2238 ($depth + 1),
[all …]
/plugin/findologicxmlexport/vendor/jms/serializer/src/Exclusion/
H A DDepthExclusionStrategy.php34 $depth = $context->getDepth();
43 $relativeDepth = $depth - $nthProperty;
/plugin/webdav/vendor/sabre/dav/lib/DAV/Locks/Backend/
H A DPDO.php104 $lockInfo->depth = $row['depth'];
140 $lockInfo->depth,
151 $lockInfo->depth,
/plugin/relativetimehelper/
H A Dhelper.php23 * @param int $depth how fine the granularity should be
27 public function getRelativeTimeString($timestamp, $depth = 2, $now = null) { argument
92 while (count($parts) > $depth) {
/plugin/davcal/vendor/sabre/dav/lib/DAV/Locks/Backend/
H A DPDO.php104 $lockInfo->depth = $row['depth'];
140 $lockInfo->depth,
151 $lockInfo->depth,
/plugin/davcal/vendor/sabre/dav/tests/Sabre/DAV/Xml/Property/
H A DLockDiscoveryTest.php18 $lock->depth = 0;
56 $lock->depth = 0;
/plugin/davcal/vendor/sabre/xml/lib/
H A DReader.php127 $previousDepth = $this->depth;
200 $previousDepth = $this->depth;
202 while ($this->read() && $this->depth != $previousDepth) {
/plugin/advanced/admin/
H A Dexport.php140 $depth = ($follow_ns ? 0 : 2);
144 $depth = ($follow_ns ? 2 : 1);
149 $options = array('depth' => $depth);
/plugin/webdav/vendor/sabre/dav/lib/DAV/Xml/Property/
H A DLockDiscovery.php92 …$writer->writeElement('{DAV:}depth', ($lock->depth == DAV\Server::DEPTH_INFINITY ? 'infinity' : $l…
/plugin/davcal/vendor/sabre/dav/lib/DAV/Xml/Property/
H A DLockDiscovery.php92 …$writer->writeElement('{DAV:}depth', ($lock->depth == DAV\Server::DEPTH_INFINITY ? 'infinity' : $l…

1234567891011