Home
last modified time | relevance | path

Searched refs:offset (Results 226 – 250 of 852) sorted by last modified time

12345678910>>...35

/plugin/authgooglesheets/vendor/google/apiclient-services/src/Dfareporting/
H A DCreativeAsset.php615 public function setOffset(OffsetPosition $offset) argument
617 $this->offset = $offset;
624 return $this->offset;
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Net/SFTP/
H A DStream.php404 * @param int $offset
409 private function _stream_seek($offset, $whence) argument
413 if ($offset < 0) {
418 $offset += $this->pos;
421 $offset += $this->size;
424 $this->pos = $offset;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/PubsubLite/
H A DCursor.php25 public $offset; variable in Google\\Service\\PubsubLite\\Cursor
30 public function setOffset($offset) argument
32 $this->offset = $offset;
39 return $this->offset;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/CloudRetail/
H A DGoogleCloudRetailV2SearchRequest.php48 public $offset; variable in Google\\Service\\CloudRetail\\GoogleCloudRetailV2SearchRequest
189 public function setOffset($offset) argument
191 $this->offset = $offset;
198 return $this->offset;
H A DGoogleCloudRetailV2UserEvent.php54 public $offset; variable in Google\\Service\\CloudRetail\\GoogleCloudRetailV2UserEvent
209 public function setOffset($offset) argument
211 $this->offset = $offset;
218 return $this->offset;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/HangoutsChat/
H A DTimeZone.php29 public $offset; variable in Google\\Service\\HangoutsChat\\TimeZone
48 public function setOffset($offset) argument
50 $this->offset = $offset;
57 return $this->offset;
/plugin/authgooglesheets/vendor/guzzlehttp/psr7/src/
H A DAppendStream.php153 public function seek($offset, $whence = SEEK_SET) argument
174 while ($this->pos < $offset && !$this->eof()) {
175 $result = $this->read(min(8096, $offset - $this->pos));
H A DNoSeekStream.php16 public function seek($offset, $whence = SEEK_SET) argument
H A DPumpStream.php101 public function seek($offset, $whence = SEEK_SET) argument
H A DStreamDecoratorTrait.php126 public function seek($offset, $whence = SEEK_SET) argument
128 $this->stream->seek($offset, $whence);
H A DStreamWrapper.php106 public function stream_seek($offset, $whence) argument
108 $this->stream->seek($offset, $whence);
H A DLimitStream.php17 private $offset; variable in GuzzleHttp\\Psr7\\LimitStream
32 $offset = 0 argument
36 $this->setOffset($offset);
78 $offset,
83 $offset += $this->offset;
86 if ($offset > $this->offset + $this->limit) {
87 $offset = $this->offset + $this->limit;
91 $this->stream->seek($offset);
110 public function setOffset($offset) argument
114 if ($current !== $offset) {
[all …]
/plugin/authgooglesheets/vendor/google/apiclient/src/
H A DModel.php258 public function offsetExists($offset) argument
260 return isset($this->$offset) || isset($this->modelData[$offset]);
265 public function offsetGet($offset) argument
267 return isset($this->$offset) ?
268 $this->$offset :
269 $this->__get($offset);
277 $this->$offset = $value;
279 $this->modelData[$offset] = $value;
280 $this->processed[$offset] = true;
286 public function offsetUnset($offset) argument
[all …]
/plugin/authgooglesheets/vendor/google/apiclient-services/src/
H A DApigee.php2498 'offset' => [
2897 'offset' => [
3191 'offset' => [
3577 'offset' => [
H A DFactCheckTools.php78 'offset' => [
137 'offset' => [
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/Common/Formats/Keys/
H A DPuTTY.php231 $offset = $publicLength + 4;
237 … $flavour = trim(preg_replace('#Key-Derivation: (.*)#', '$1', $key[$offset++]));
238 … $memory = trim(preg_replace('#Argon2-Memory: (\d+)#', '$1', $key[$offset++]));
239 … $passes = trim(preg_replace('#Argon2-Passes: (\d+)#', '$1', $key[$offset++]));
240 … $parallelism = trim(preg_replace('#Argon2-Parallelism: (\d+)#', '$1', $key[$offset++]));
241 … $salt = Hex::decode(trim(preg_replace('#Argon2-Salt: ([0-9a-f]+)#', '$1', $key[$offset++])));
263 $privateLength = trim(preg_replace('#Private-Lines: (\d+)#', '$1', $key[$offset++]));
264 …$private = Base64::decode(implode('', array_map('trim', array_slice($key, $offset, $privateLength)…
275 $hmac = trim(preg_replace('#Private-MAC: (.+)#', '$1', $key[$offset + $privateLength]));
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/
H A DHash.php733 $offset = self::$offset128;
737 $offset = self::$offset64;
757 $y = $k->multiply($y)->add($m->subtract($offset));
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/RSA/
H A DPrivateKey.php409 $offset = 0;
413 $offset += $patternMatch ? 0 : 1;
424 return substr($m, $offset + 1);
/plugin/authgooglesheets/vendor/guzzlehttp/guzzle/
H A DCHANGELOG.md34 * Fix: Prevent undefined offset when using array for ssl_key options. [#2348](https://github.com/gu…
69 * Bug fix: Undefined offset when a cookie has no first key-value pair [#1998](https://github.com/gu…
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Networkconnectivity/
H A DLinearBuckets.php23 public $offset; variable in Google\\Service\\Networkconnectivity\\LinearBuckets
34 public function setOffset($offset) argument
36 $this->offset = $offset;
40 return $this->offset;
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/File/
H A DASN1.php443 $offset = 0;
450 $length = $offset + 2; // +2 for the EOC
459 $offset += $temp['length'];
763 $offset = ord($decoded['content'][0]);
764 $size = (strlen($decoded['content']) - 1) * 8 - $offset;
776 for ($j = $offset; $j < 8; $j++) {
779 $offset = 0;
1052 $offset = 8 - (($size + 1) & 7);
1053 $offset = $offset !== 8 ? $offset : 0;
1055 $value = chr($offset);
[all …]
/plugin/authgooglesheets/vendor/google/apiclient-services/src/CloudTalentSolution/
H A DSearchJobsRequest.php56 public $offset; variable in Google\\Service\\CloudTalentSolution\\SearchJobsRequest
201 public function setOffset($offset) argument
203 $this->offset = $offset;
210 return $this->offset;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/AnalyticsData/
H A DRunReportRequest.php54 public $offset; variable in Google\\Service\\AnalyticsData\\RunReportRequest
209 public function setOffset($offset) argument
211 $this->offset = $offset;
218 return $this->offset;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Logging/
H A DLinear.php26 public $offset; variable in Google\\Service\\Logging\\Linear
43 public function setOffset($offset) argument
45 $this->offset = $offset;
49 return $this->offset;
/plugin/authgooglesheets/vendor/psr/http-message/src/
H A DStreamInterface.php79 * @param int $offset Stream offset
87 public function seek($offset, $whence = SEEK_SET); argument

12345678910>>...35