Home
last modified time | relevance | path

Searched refs:depth (Results 251 – 271 of 271) sorted by path

1...<<11

/plugin/webdav/vendor/sabre/dav/lib/CalDAV/
H A DPlugin.php513 $depth = $this->server->getHTTPDepth(0);
541 if ($depth == 0 && $node instanceof ICalendarObject) {
603 if ($node instanceof ICalendarObjectContainer && $depth === 0) {
613 $depth = 1;
622 if ($node instanceof ICalendarObjectContainer && $depth == 1) {
/plugin/webdav/vendor/sabre/dav/lib/CardDAV/
H A DPlugin.php432 $depth = $this->server->getHTTPDepth(0);
434 if ($depth == 0) {
481 if ($depth == 0) {
/plugin/webdav/vendor/sabre/dav/lib/DAV/
H A DCorePlugin.php332 $depth = $this->server->getHTTPDepth(1);
334 if (!$this->server->enablePropfindDepthInfinity && $depth != 0) $depth = 1;
336 …wProperties = $this->server->getPropertiesIteratorForPath($path, $propFindXml->properties, $depth);
H A DPropFind.php40 * @param int $depth
43 function __construct($path, array $properties, $depth = 0, $requestType = self::NORMAL) { argument
47 $this->depth = $depth;
200 return $this->depth;
207 * @param int $depth
210 function setDepth($depth) { argument
212 $this->depth = $depth;
307 protected $depth = 0; variable in Sabre\\DAV\\PropFind
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/webdav/vendor/sabre/dav/lib/DAV/Locks/Backend/
H A DFile.php63 ($lock->depth != 0 && strpos($uri, $lock->uri . '/') === 0) ||
H A DPDO.php104 $lockInfo->depth = $row['depth'];
140 $lockInfo->depth,
151 $lockInfo->depth,
/plugin/webdav/vendor/sabre/dav/lib/DAV/Locks/
H A DLockInfo.php70 public $depth = 0; variable in Sabre\\DAV\\Locks\\LockInfo
H A DPlugin.php189 $lockInfo->depth = $this->server->getHTTPDepth();
/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/webdav/vendor/sabre/dav/lib/DAVACL/
H A DPlugin.php1261 $depth = $this->server->getHTTPDepth(0);
1262 if ($depth !== 0) {
1368 $depth = $this->server->getHTTPDepth(0);
1370 $result = $this->expandProperties($path, $report->properties, $depth);
1389 * @param int $depth
1392 protected function expandProperties($path, array $requestedProperties, $depth) { argument
1394 …dProperties = $this->server->getPropertiesForPath($path, array_keys($requestedProperties), $depth);
/plugin/webdav/vendor/sabre/xml/
H A DCHANGELOG.md210 * Changed: Reader::parse returns an array with 1 level less depth.
/plugin/webdav/vendor/sabre/xml/lib/Deserializer/
H A Dfunctions.php171 $currentDepth = $reader->depth;
185 } while ($reader->depth >= $currentDepth && $reader->next());
/plugin/webdav/vendor/sabre/xml/lib/Element/
H A DXmlFragment.php73 if ($reader->depth < 1) {
/plugin/webdav/vendor/sabre/xml/lib/
H A DReader.php214 $previousDepth = $this->depth;
216 while ($this->read() && $this->depth != $previousDepth) {
/plugin/webdavclient/
H A Dhelper.php1112 * @param string $depth (Optional) The Depth parameter
1117 private function setupClient($conn, $cl = null, $depth = null, argument
1134 if(!is_null($depth))
1135 $this->client->headers['Depth'] = $depth;
/plugin/xcom/lang/en/
H A Dfunctions.txt6depth'' or ''hash'' enclosed in parentheses. If not set, it defaults to ''hash''. If ''hash'' is s…
/plugin/xcom/
H A Dscript.js397 case 'dokuwiki.getPagelist': //(hash),(depth:n)
/plugin/xlsx2dw/packages/exceljs/
H A Dexceljs.js64541 zero(this.depth);
69080 function smaller(tree, n, m, depth) {
69093 && depth[n] <= depth[m];
69119 if (smaller(tree, v, s.heap[j], s.depth)) {
69250 s.depth[n] = 0;
69269 s.depth[node] = 0;
69332 s.depth[node] = (s.depth[n] >= s.depth[m] ? s.depth[n] : s.depth[m]) + 1;
74139 depth: 0,
81996 if (arguments.length >= 3) ctx.depth = arguments[2];
82009 if (isUndefined(ctx.depth)) ctx.depth = 2;
[all …]
/plugin/xlsx2dw/packages/jszip/
H A Djszip.js7115 this.depth = new utils.Buf16(2 * L_CODES + 1); //uch depth[2*L_CODES+1];
7116 zero(this.depth);
10684 function smaller(tree, n, m, depth) { argument
10688 (tree[_n2]/*.Freq*/ === tree[_m2]/*.Freq*/ && depth[n] <= depth[m]));
10707 smaller(tree, s.heap[j + 1], s.heap[j], s.depth)) {
10711 if (smaller(tree, v, s.heap[j], s.depth)) { break; }
10812 s.depth[n] = 0;
10827 s.depth[node] = 0;
10861 s.depth[node] = (s.depth[n] >= s.depth[m] ? s.depth[n] : s.depth[m]) + 1;
/plugin/zip/pear/File/
H A DArchive.php875 * @param int $depth Maximal number of directories in path of the files
878 function predMaxDepth($depth) argument
881 return new File_Archive_Predicate_MaxDepth($depth);

1...<<11