Home
last modified time | relevance | path

Searched refs:position (Results 26 – 31 of 31) sorted by path

12

/dokuwiki/vendor/simplepie/simplepie/src/HTTP/
H A DParser.php141 * Current position of the pointer
145 protected $position = 0; variable in SimplePie\\HTTP\\Parser
203 return (bool) ($this->position < $this->data_length);
213 return (bool) ($this->data[$this->position] === "\x09"
214 || $this->data[$this->position] === "\x20"
215 || ($this->data[$this->position] === "\x0A"
216 && isset($this->data[$this->position + 1])
217 && ($this->data[$this->position + 1] === "\x09" || $this->data[$this->position + 1] === "\x20")));
228 $this->position
[all...]
/dokuwiki/vendor/simplepie/simplepie/src/
H A DIRI.php421 $position = 0;
423 while (($position += strspn($string, $extra_chars, $position)) < $strlen) {
424 $value = ord($string[$position]);
427 // Start position
428 $start = $position;
460 if ($position + $length <= $strlen) {
461 for ($position++; $remaining; $position++) {
462 $value = ord($string[$position]);
[all...]
H A DMisc.php1755 $position = 0;
1761 while ($position < $length && ($pos = strpos($string, '(', $position)) !== false) {
1762 $output .= substr($string, $position, $pos - $position);
1763 $position = $pos + 1;
1766 while ($depth && $position < $length) {
1767 $position += strcspn($string, '()', $position);
1768 if ($string[$position
[all...]
H A DParser.php607 } elseif ($position = strpos($data, '<title>')) {
608 $start = $position < 200 ? 0 : $position - 200;
/dokuwiki/vendor/simplepie/simplepie/src/Parse/
H A DDate.php759 $position = 0;
765 while ($position < $length && ($pos = strpos($string, '(', $position)) !== false) {
766 $output .= substr($string, $position, $pos - $position);
767 $position = $pos + 1;
770 while ($depth && $position < $length) {
771 $position += strcspn($string, '()', $position);
772 if ($string[$position
[all...]
/dokuwiki/vendor/simplepie/simplepie/src/XML/Declaration/
H A DParser.php129 * Current position of the pointer
134 public $position = 0; variable in SimplePie\\XML\\Declaration\\Parser
179 return (bool) ($this->position < $this->data_length);
189 $whitespace = strspn($this->data, "\x09\x0A\x0D\x20", $this->position);
190 $this->position += $whitespace;
199 $quote = substr($this->data, $this->position, 1);
201 $this->position++;
202 $len = strcspn($this->data, $quote, $this->position);
204 $value = substr($this->data, $this->position, $len);
205 $this->position
[all...]

12