Home
last modified time | relevance | path

Searched refs:pos (Results 26 – 41 of 41) sorted by path

12

/dokuwiki/vendor/composer/
H A DClassLoader.php522 if (false !== $pos = strrpos($class, '\\')) {
524 $logicalPathPsr0 = substr($logicalPathPsr4, 0, $pos + 1)
525 . strtr(substr($logicalPathPsr4, $pos + 1), '_', DIRECTORY_SEPARATOR);
/dokuwiki/vendor/geshi/geshi/src/
H A Dgeshi.php2234 // only find the next pos if it was not already cached
2499 ($comment_regexp_cache_per_key[$comment_key]['pos'] >= $i ||
2500 $comment_regexp_cache_per_key[$comment_key]['pos'] === false)) {
2502 if ($comment_regexp_cache_per_key[$comment_key]['pos'] === false) {
2506 $match_i = $comment_regexp_cache_per_key[$comment_key]['pos'];
2513 'pos' => $match_i
2516 $comment_regexp_cache_per_key[$comment_key]['pos'] = false;
2587 //Get the regular ending pos ...
2600 ($escape_regexp_cache_per_key[$escape_key]['pos'] >= $start ||
2601 $escape_regexp_cache_per_key[$escape_key]['pos']
[all...]
/dokuwiki/vendor/marcusschwarz/lesserphp/
H A Dlessc.inc.php
/dokuwiki/vendor/openpsa/universalfeedcreator/lib/Creator/
H A DFeedCreator.php104 $pos = strrpos($string, ".");
105 if ($pos >= $length - 4) {
107 $pos = strrpos($string, ".");
109 if ($pos >= $length * 0.4) {
110 return substr($string, 0, $pos + 1)." ...";
113 $pos = strrpos($string, " ");
114 if ($pos >= $length - 4) {
116 $pos = strrpos($string, " ");
118 if ($pos >= $length * 0.4) {
119 return substr($string, 0, $pos)
[all...]
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/
H A DBase.php
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/File/
H A DASN1.php1149 $pos = 0;
1162 while ($pos < $len) {
1163 $temp = ord($content[$pos++]);
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Net/SFTP/
H A DStream.php64 private $pos;
273 $this->pos = $this->mode[0] != 'a' ? 0 : $this->size;
295 //if ($this->pos >= $this->size) {
300 $result = $this->sftp->get($this->path, false, $this->pos, $count);
314 $this->pos += strlen($result);
332 $result = $this->sftp->put($this->path, $data, SFTP::SOURCE_STRING, $this->pos);
345 $this->pos += strlen($data);
346 if ($this->pos > $this->size) {
347 $this->size = $this->pos;
360 return $this->pos;
71 var $pos; global() variable in phpseclib\\Net\\SFTP\\Stream
[all...]
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Net/
H A DSSH1.php
H A DSSH2.php3179 $pos = strlen($match) ? strpos($this->interactiveBuffer, $match) : false;
3180 if ($pos !== false) {
3181 return Strings::shift($this->interactiveBuffer, $pos + strlen($match));
/dokuwiki/vendor/simplepie/simplepie/src/Content/Type/
H A DSniffer.php97 if (($pos = strpos($this->file->headers['content-type'], ';')) !== false) {
98 $official = substr($this->file->headers['content-type'], 0, $pos);
209 $pos = strspn($this->file->body, "\x09\x0A\x0D\x20\xEF\xBB\xBF");
211 while ($pos < $len) {
212 switch ($this->file->body[$pos]) {
217 $pos += strspn($this->file->body, "\x09\x0A\x0D\x20", $pos);
221 $pos++;
228 if (substr($this->file->body, $pos, 3) === '!--') {
229 $pos
[all...]
/dokuwiki/vendor/simplepie/simplepie/src/
H A DIRI.php388 elseif (($pos = strpos($input, '/', 1)) !== false) {
389 $output .= substr($input, 0, $pos);
390 $input = substr_replace($input, '', 0, $pos);
H A DMisc.php1761 while ($position < $length && ($pos = strpos($string, '(', $position)) !== false) {
1762 $output .= substr($string, $position, $pos - $position);
1763 $position = $pos + 1;
1764 if ($string[$pos - 1] !== '\\') {
1797 if (($pos = strpos($mime, ';')) === false) {
1801 return trim(substr($mime, 0, $pos));
1985 if ($pos = strpos($data, "\x00\x00\x00\x3F\x00\x00\x00\x3E")) {
1986 $parser = $registry->create(Parser::class, [Misc::change_encoding(substr($data, 20, $pos - 20), 'UTF-32BE', 'UTF-8')]);
1995 if ($pos = strpos($data, "\x3F\x00\x00\x00\x3E\x00\x00\x00")) {
1996 $parser = $registry->create(Parser::class, [Misc::change_encoding(substr($data, 20, $pos
[all...]
H A DParser.php128 if (substr($data, 0, 5) === '<?xml' && strspn(substr($data, 5, 1), "\x09\x0A\x0D\x20") && ($pos = strpos($data, '?>')) !== false) {
129 $declaration = $this->registry->create(DeclarationParser::class, [substr($data, 5, $pos - 5)]);
131 $data = substr($data, $pos + 2);
352 if ($pos = strpos($string, $this->separator)) {
357 $namespace = substr($string, 0, $pos);
358 $local_name = substr($string, $pos + $separator_length);
/dokuwiki/vendor/simplepie/simplepie/src/Net/
H A DIPv6.php149 $pos = null;
153 $pos = $match[1];
157 $ip_parts[0] = substr_replace($ip_parts[0], '::', $pos, $max);
182 $pos = strrpos($ip, ':');
183 $ipv6_part = substr($ip, 0, $pos);
184 $ipv4_part = substr($ip, $pos + 1);
/dokuwiki/vendor/simplepie/simplepie/src/Parse/
H A DDate.php765 while ($position < $length && ($pos = strpos($string, '(', $position)) !== false) {
766 $output .= substr($string, $position, $pos - $position);
767 $position = $pos + 1;
768 if ($pos === 0 || $string[$pos - 1] !== '\\') {
/dokuwiki/vendor/splitbrain/php-archive/src/
H A DZip.php552 $pos = ftell($this->fh);
555 while ($pos < $size) {
561 $pos++;

12