| /plugin/jplayer/vendor/james-heinrich/getid3/getid3/ |
| D | module.audio-video.asf.php | 93 $offset = 0; 98 $NextObjectGUID = substr($ASFHeaderData, $offset, 16); 99 $offset += 16; 101 $NextObjectSize = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 8)); 102 $offset += 8; 129 $thisfile_asf_filepropertiesobject['offset'] = $NextObjectOffset + $offset; 133 $thisfile_asf_filepropertiesobject['fileid'] = substr($ASFHeaderData, $offset, 16); 134 $offset += 16; 136 …iesobject['filesize'] = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 8)); 137 $offset += 8; [all …]
|
| D | module.audio-video.nsv.php | 75 $offset = 0; 77 $info['nsv']['NSVs']['identifier'] = substr($NSVsheader, $offset, 4); 78 $offset += 4; 88 …o['nsv']['NSVs']['video_codec'] = substr($NSVsheader, $offset, 4); 89 $offset += 4; 90 …o['nsv']['NSVs']['audio_codec'] = substr($NSVsheader, $offset, 4); 91 $offset += 4; 92 …['nsv']['NSVs']['resolution_x'] = getid3_lib::LittleEndian2Int(substr($NSVsheader, $offset, 2)); 93 $offset += 2; 94 …['nsv']['NSVs']['resolution_y'] = getid3_lib::LittleEndian2Int(substr($NSVsheader, $offset, 2)); [all …]
|
| D | module.audio.la.php | 30 $offset = 0; 34 switch (substr($rawdata, $offset, 4)) { 42 $info['la']['version_major'] = (int) substr($rawdata, $offset + 2, 1); 43 $info['la']['version_minor'] = (int) substr($rawdata, $offset + 3, 1); 45 $offset += 4; 47 $info['la']['uncompressed_size'] = getid3_lib::LittleEndian2Int(substr($rawdata, $offset, 4)); 48 $offset += 4; 54 $WAVEchunk = substr($rawdata, $offset, 4); 56 …$this->error('Expected "WAVE" ('.getid3_lib::PrintHexBytes('WAVE').') at offset '.$offset.', found… 59 $offset += 4; [all …]
|
| D | module.graphic.bmp.php | 47 $offset = 0; 50 $thisfile_bmp_header_raw['identifier'] = substr($BMPheader, $offset, 2); 51 $offset += 2; 61 …$thisfile_bmp_header_raw['filesize'] = getid3_lib::LittleEndian2Int(substr($BMPheader, $offset,… 62 $offset += 4; 63 …$thisfile_bmp_header_raw['reserved1'] = getid3_lib::LittleEndian2Int(substr($BMPheader, $offset,… 64 $offset += 2; 65 …$thisfile_bmp_header_raw['reserved2'] = getid3_lib::LittleEndian2Int(substr($BMPheader, $offset,… 66 $offset += 2; 67 …$thisfile_bmp_header_raw['data_offset'] = getid3_lib::LittleEndian2Int(substr($BMPheader, $offset,… [all …]
|
| D | module.audio-video.real.php | 89 $offset = 8; 94 …_chunks_currentchunk['object_version'] = getid3_lib::BigEndian2Int(substr($ChunkData, $offset, 2)); 95 $offset += 2; 99 …l_chunks_currentchunk['file_version'] = getid3_lib::BigEndian2Int(substr($ChunkData, $offset, 4)); 100 $offset += 4; 101 …l_chunks_currentchunk['headers_count'] = getid3_lib::BigEndian2Int(substr($ChunkData, $offset, 4)); 102 $offset += 4; 114 …ks_currentchunk['object_version'] = getid3_lib::BigEndian2Int(substr($ChunkData, $offset, 2)); 115 $offset += 2; 117 …chunks_currentchunk['max_bit_rate'] = getid3_lib::BigEndian2Int(substr($ChunkData, $offset, 4)); [all …]
|
| D | module.audio.monkey.php | 64 $offset = 8; 66 $offset = 8; 68 …_raw['nDescriptorBytes'] = getid3_lib::LittleEndian2Int(substr($MACheaderData, $offset, 4)); 69 $offset += 4; 70 …_raw['nHeaderBytes'] = getid3_lib::LittleEndian2Int(substr($MACheaderData, $offset, 4)); 71 $offset += 4; 72 …_raw['nSeekTableBytes'] = getid3_lib::LittleEndian2Int(substr($MACheaderData, $offset, 4)); 73 $offset += 4; 74 …_raw['nHeaderDataBytes'] = getid3_lib::LittleEndian2Int(substr($MACheaderData, $offset, 4)); 75 $offset += 4; [all …]
|
| /plugin/html2pdf/html2pdf/html2ps/ |
| D | xhtml.tables.inc.php | 4 function process_cell(&$sample_html, $offset) { argument 5 $r = autoclose_tag($sample_html, $offset, 12 function process_header_cell(&$sample_html, $offset) { argument 13 return autoclose_tag($sample_html, $offset, 19 function process_cell_without_row(&$html, $offset) { argument 23 preg_match("#<[^>]+>$#",substr($html,0,$offset),$matches); 28 …$html = substr_replace($html, "<tr>".$matches[0], $offset - strlen($matches[0]), strlen($matches[0… 33 $r = process_row($html, $offset - strlen($matches[0]) + strlen("<tr>")); 38 function process_row(&$sample_html, $offset) { argument 39 return autoclose_tag_cleanup($sample_html, $offset, [all …]
|
| D | xhtml.autoclose.inc.php | 4 function autoclose_tag(&$sample_html, $offset, $tags, $nested, $close) { argument 7 while (preg_match("#^(.*?)({$tags})#is", substr($sample_html, $offset),$matches)) { 11 $tag_start = $offset + strlen($matches[1]); 18 $offset = $nested[$tag]($sample_html, $tag_end); 27 return $offset; 34 function skip_to(&$html, $offset, $tag) { argument 35 $prefix = substr($html,0,$offset); 36 $suffix = substr($html,$offset); 45 function autoclose_tag_cleanup(&$sample_html, $offset, $tags_raw, $nested, $close) { argument 47 skip_to($sample_html, $offset, $tags_raw); [all …]
|
| /plugin/authgooglesheets/vendor/guzzlehttp/psr7/src/ |
| D | LimitStream.php | 17 private $offset; variable in GuzzleHttp\\Psr7\\LimitStream 26 * @param int $offset Position to seek to before reading (only 32 $offset = 0 argument 36 $this->setOffset($offset); 51 return $this->stream->tell() >= $this->offset + $this->limit; 63 return $length - $this->offset; 65 return min($this->limit, $length - $this->offset); 73 public function seek($offset, $whence = SEEK_SET) argument 75 if ($whence !== SEEK_SET || $offset < 0) { 78 $offset, [all …]
|
| /plugin/elasticsearch/vendor/ezimuel/guzzlestreams/src/ |
| D | LimitStream.php | 14 private $offset; variable in GuzzleHttp\\Stream\\LimitStream 23 * @param int|null $offset Position to seek to before reading (only 29 $offset = 0 argument 33 $this->setOffset($offset); 53 return $tell >= $this->offset + $this->limit; 65 return $length - $this->offset; 67 return min($this->limit, $length - $this->offset); 75 public function seek($offset, $whence = SEEK_SET) argument 77 if ($whence !== SEEK_SET || $offset < 0) { 81 $offset += $this->offset; [all …]
|
| /plugin/matrixnotifierwas/vendor/guzzlehttp/psr7/src/ |
| D | LimitStream.php | 17 private $offset; variable in GuzzleHttp\\Psr7\\LimitStream 29 * @param int $offset Position to seek to before reading (only 35 int $offset = 0 argument 39 $this->setOffset($offset); 54 return $this->stream->tell() >= $this->offset + $this->limit; 65 return $length - $this->offset; 67 return min($this->limit, $length - $this->offset); 74 public function seek($offset, $whence = SEEK_SET): void argument 76 if ($whence !== SEEK_SET || $offset < 0) { 79 $offset, [all …]
|
| /plugin/combo/ComboStrap/ |
| H A D | ArrayCaseInsensitive.php | 53 public function offsetSet($offset, $value): void argument 56 if (is_null($offset)) { 59 if (is_string($offset)) { 60 $lowerCaseOffset = strtolower($offset); 61 $this->_keyMapping[$lowerCaseOffset] = $offset; 62 $this->sourceArray[$offset] = $value; 70 public function offsetExists($offset): bool argument 72 if (is_string($offset)) $offset = strtolower($offset); 73 return isset($this->_keyMapping[$offset]); 76 public function offsetUnset($offset): void argument [all …]
|
| /plugin/dw2pdf/vendor/setasign/fpdi/src/PdfParser/ |
| D | StreamReader.php | 73 protected $offset; variable in setasign\\Fpdi\\PdfParser\\StreamReader 152 return $this->bufferLength - $this->offset; 177 $string = \substr($this->buffer, $this->offset); 194 $position = (int) ($position !== null ? $position : $this->offset); 221 $offset = $this->offset; 223 $offset = $position - $this->position; 226 $offset = $this->offset; 229 if ($offset >= $this->bufferLength && 230 ((!$this->increaseLength()) || $offset >= $this->bufferLength) 235 $this->offset = $offset + 1; [all …]
|
| /plugin/authgooglesheets/vendor/google/apiclient/src/ |
| D | Collection.php | 70 public function offsetExists($offset) argument 72 if (!is_numeric($offset)) { 73 return parent::offsetExists($offset); 75 return isset($this->{$this->collection_key}[$offset]); 79 public function offsetGet($offset) argument 81 if (!is_numeric($offset)) { 82 return parent::offsetGet($offset); 84 $this->coerceType($offset); 85 return $this->{$this->collection_key}[$offset]; 89 public function offsetSet($offset, $value) argument [all …]
|
| /plugin/photogallery/phpThumb/ |
| D | phpthumb.bmp.php | 98 $offset = 0; 103 $thisfile_bmp_header_raw['identifier'] = substr($BMPheader, $offset, 2); 104 $offset += 2; 113 $thisfile_bmp_header_raw['filesize'] = $this->LittleEndian2Int(substr($BMPheader, $offset, 4)); 114 $offset += 4; 115 $thisfile_bmp_header_raw['reserved1'] = $this->LittleEndian2Int(substr($BMPheader, $offset, 2)); 116 $offset += 2; 117 $thisfile_bmp_header_raw['reserved2'] = $this->LittleEndian2Int(substr($BMPheader, $offset, 2)); 118 $offset += 2; 119 $thisfile_bmp_header_raw['data_offset'] = $this->LittleEndian2Int(substr($BMPheader, $offset, 4)); [all …]
|
| /plugin/quickstats/GEOIP/vendor/maxmind-db/reader/src/MaxMind/Db/Reader/ |
| D | Decoder.php | 71 public function decode($offset) argument 75 Util::read($this->fileStream, $offset, 1) 77 ++$offset; 85 list($pointer, $offset) = $this->decodePointer($ctrlByte, $offset); 94 return [$result, $offset]; 100 Util::read($this->fileStream, $offset, 1) 114 ++$offset; 117 list($size, $offset) = $this->sizeFromCtrlByte($ctrlByte, $offset); 119 return $this->decodeByType($type, $offset, $size); 122 private function decodeByType($type, $offset, $size) argument [all …]
|
| /plugin/freechat/phpfreechat/misc/ |
| D | generate-doc.inc.php | 16 $offset = 0; 17 if (preg_match('/class pfcGlobalConfig/',$data,$matches, PREG_OFFSET_CAPTURE, $offset)) 21 if (preg_match('/function pfcGlobalConfig/', $data, $matches, PREG_OFFSET_CAPTURE, $offset)) 26 $offset = $offset_start; 29 while ($offset < $offset_end) 34 if (preg_match('/\/\*\*/', $data, $matches1, PREG_OFFSET_CAPTURE, $offset)) 37 $offset = $offset_end; 41 preg_match('/\*\//', $data, $matches3, PREG_OFFSET_CAPTURE, $offset)) 46 $offset2 = $offset; 50 if (preg_match('/\s+\*\s+(.*)/', $data, $matches2, PREG_OFFSET_CAPTURE, $offset)) [all …]
|
| /plugin/elasticsearch/vendor/patrickschur/language-detection/src/LanguageDetection/ |
| D | LanguageResult.php | 34 * @param mixed $offset 37 public function offsetExists($offset): bool argument 39 return isset($this->result[$offset]); 43 * @param mixed $offset 46 public function offsetGet($offset): ?float argument 48 return $this->result[$offset] ?? null; 52 * @param mixed $offset 56 public function offsetSet($offset, $value): void argument 58 if (null === $offset) { 61 $this->result[$offset] = $value; [all …]
|
| /plugin/combo/vendor/carica/phpcss/src/PhpCss/Scanner/ |
| H A D | Status.php | 21 * @param integer $offset 24 abstract public function getToken(string $buffer, int $offset): ?Token; argument 46 * @param integer $offset 50 protected function matchPattern(string $buffer, int $offset, string $pattern): ?string { argument 52 $pattern, $buffer, $match, PREG_OFFSET_CAPTURE, $offset 57 $match[0][1] === $offset 64 protected function matchPatterns(string $buffer, int $offset, array $patterns): ?Token { argument 67 $buffer, $offset, $pattern 71 $type, $tokenString, $offset 78 protected function matchCharacters(string $buffer, int $offset, array $chars): ?Token { argument [all …]
|
| /plugin/scrape/vendor/scotteh/php-dom-wrapper/src/Collections/ |
| D | NodeCollection.php | 41 * @param mixed $offset 45 public function offsetExists($offset): bool { argument 46 return isset($this->nodes[$offset]); 52 * @param mixed $offset 57 public function offsetGet($offset) { argument 58 return isset($this->nodes[$offset]) ? $this->nodes[$offset] : null; 64 * @param mixed $offset 67 public function offsetSet($offset, $value): void { argument 68 if (is_null($offset)) { 71 $this->nodes[$offset] = $value; [all …]
|
| /plugin/diagramsnet/lib/img/lib/mscae/ |
| D | Virtual_Machines_Linux.svg | 1 …offset="0" stop-color="#ffeed7"/><stop offset="1" stop-color="#bdbfc2"/></linearGradient><path d="…
|
| /plugin/findologicxmlexport/vendor/phpunit/phpunit/tests/_files/ |
| D | SampleArrayAccess.php | 16 public function offsetSet($offset, $value) argument 18 if (is_null($offset)) { 21 $this->container[$offset] = $value; 24 public function offsetExists($offset) argument 26 return isset($this->container[$offset]); 28 public function offsetUnset($offset) argument 30 unset($this->container[$offset]); 32 public function offsetGet($offset) argument 34 return isset($this->container[$offset]) ? $this->container[$offset] : null;
|
| /plugin/davcard/vendor/sabre/vobject/lib/ |
| D | Node.php | 159 * @param int $offset 162 public function offsetExists($offset) { argument 165 return $iterator->offsetExists($offset); 174 * @param int $offset 177 public function offsetGet($offset) { argument 180 return $iterator->offsetGet($offset); 189 * @param int $offset 193 public function offsetSet($offset, $value) { argument 196 $iterator->offsetSet($offset,$value); 210 * @param int $offset [all …]
|
| /plugin/webdavclient/vendor/sabre/vobject/lib/ |
| D | Node.php | 159 * @param int $offset 162 public function offsetExists($offset) { argument 165 return $iterator->offsetExists($offset); 174 * @param int $offset 177 public function offsetGet($offset) { argument 180 return $iterator->offsetGet($offset); 189 * @param int $offset 193 public function offsetSet($offset, $value) { argument 196 $iterator->offsetSet($offset,$value); 210 * @param int $offset [all …]
|
| /plugin/davcal/vendor/sabre/vobject/lib/ |
| H A D | Node.php | 159 * @param int $offset 162 public function offsetExists($offset) { argument 165 return $iterator->offsetExists($offset); 174 * @param int $offset 177 public function offsetGet($offset) { argument 180 return $iterator->offsetGet($offset); 189 * @param int $offset 193 public function offsetSet($offset, $value) { argument 196 $iterator->offsetSet($offset,$value); 210 * @param int $offset [all …]
|