Home
last modified time | relevance | path

Searched refs:getSizeInBytes (Results 1 – 18 of 18) sorted by relevance

/plugin/totext/vendor/prinsfrank/pdfparser/src/Document/CrossReference/ !
H A DCrossReferenceSourceParser.php24 …$startXrefMarkerPos = $stream->lastPos(Marker::START_XREF, $stream->getSizeInBytes() - $eofMarkerP…
26 … $startByteOffset = $stream->getStartOfNextLine($startXrefMarkerPos, $stream->getSizeInBytes())
28 $endByteOffset = $stream->getEndOfCurrentLine($startByteOffset, $stream->getSizeInBytes())
33 …stCrossReferenceSection, $stream->read($startXrefMarkerPos, $stream->getSizeInBytes() - $startXref…
37 if ($byteOffsetLastCrossReferenceSection > $stream->getSizeInBytes()) {
38getSizeInBytes(), $stream->lastPos(Marker::XREF, $stream->getSizeInBytes() - $startXrefMarkerPos) …
41 …set = $stream->getEndOfCurrentLine($byteOffsetLastCrossReferenceSection, $stream->getSizeInBytes())
46 …$lastPosXrefSection = $stream->lastPos(Marker::XREF, $stream->getSizeInBytes() - $startXrefMarkerP…
47 … $lastPosObject = $stream->lastPos(Marker::OBJ, $stream->getSizeInBytes() - $startXrefMarkerPos);
53 …efSectionPos = $stream->getEndOfCurrentLine($lastPossibleXrefSectionPos, $stream->getSizeInBytes())
[all …]
/plugin/totext/vendor/prinsfrank/pdfparser/src/Document/Object/Item/UncompressedObject/ !
H A DUncompressedObjectParser.php17 …(Marker::OBJ, $crossReferenceEntry->byteOffsetInDecodedStream, $document->stream->getSizeInBytes())
19 …dObj = $document->stream->firstPos(Marker::END_OBJ, $startObj, $document->stream->getSizeInBytes())
24 …m->firstPos(Marker::END_STREAM, $startStream + ($length ?? 0), $document->stream->getSizeInBytes())
26 …Obj = $document->stream->firstPos(Marker::END_OBJ, $endStream, $document->stream->getSizeInBytes())
H A DUncompressedObject.php50 …?? $document->stream->lastPos(Marker::END_OBJ, $document->stream->getSizeInBytes() - $this->endOff…
102 … = $document->stream->lastPos(Marker::END_STREAM, $document->stream->getSizeInBytes() - $this->end…
119 …$endObjPos = $document->stream->lastPos(Marker::END_OBJ, $document->stream->getSizeInBytes() - $th…
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Vault/ !
DExportStats.php59 public function getSizeInBytes() function in Google\\Service\\Vault\\ExportStats
/plugin/totext/vendor/prinsfrank/pdfparser/src/Stream/ !
H A DFileStream.php49 public function getSizeInBytes(): int { function in PrinsFrank\\PdfParser\\Stream\\FileStream
147 return $this->getSizeInBytes() - $offsetFromEnd + 1;
H A DStream.php11 public function getSizeInBytes(): int; function
H A DAbstractStream.php63 return $this->read(0, $this->getSizeInBytes());
H A DInMemoryStream.php18 public function getSizeInBytes(): int { function in PrinsFrank\\PdfParser\\Stream\\InMemoryStream
/plugin/totext/vendor/prinsfrank/pdfparser/src/Document/ContentStream/ !
H A DContentStreamParser.php39 $contentStreamSize = $contentStream->getSizeInBytes();
97 …usOperandIndex !== null && $startPreviousOperandIndex < $previousContentStream->getSizeInBytes()) {
98 …tentStream->read($startPreviousOperandIndex, $previousContentStream->getSizeInBytes() - $startPrev…
/plugin/totext/vendor/prinsfrank/pdfparser/src/Document/Dictionary/DictionaryValue/Array/ !
H A DDictionaryArrayValue.php39 …am = new InMemoryStream('<<' . $dictionaryValueString . '>>'), 0, $memoryStream->getSizeInBytes());
/plugin/totext/vendor/prinsfrank/pdfparser/src/Document/CrossReference/RawStream/ !
H A DObjectPositionsFromRawStreamParser.php13 foreach ($stream->chars(0, $stream->getSizeInBytes()) as $byteOffset => $char) {
/plugin/totext/vendor/prinsfrank/pdfparser/src/Document/Dictionary/ !
H A DDictionary.php58 $value = DictionaryParser::parse(null, $content, 0, $content->getSizeInBytes());
78 $value = DictionaryParser::parse(null, $content, 0, $content->getSizeInBytes());
/plugin/totext/vendor/prinsfrank/pdfparser/src/Document/CrossReference/Source/Section/SubSection/ !
H A DCrossReferenceSubSection.php62 if ($crossReferenceEntry->byteOffsetInDecodedStream > $stream->getSizeInBytes()) {
/plugin/totext/vendor/prinsfrank/pdfparser/src/Document/Object/Item/CompressedObject/ !
H A DCompressedObjectByteOffsetParser.php26 … $endStreamPos = $stream->lastPos(Marker::END_STREAM, $stream->getSizeInBytes() - $endOffsetObject)
H A DCompressedObject.php47 $content->getSizeInBytes(),
/plugin/totext/vendor/prinsfrank/pdfparser/src/Document/Image/ !
H A DRasterizedImage.php27 $streamLength = $content->getSizeInBytes();
/plugin/totext/vendor/prinsfrank/pdfparser/src/Document/CrossReference/Stream/ !
H A DCrossReferenceStreamParser.php44 …$endStream = $stream->lastPos(Marker::END_STREAM, $stream->getSizeInBytes() - $startPos + $nrOfByt…
/plugin/totext/vendor/prinsfrank/pdfparser/src/Document/Object/Decorator/ !
H A DFont.php103 … return $this->toUnicodeCMap = ToUnicodeCMapParser::parse($stream, 0, $stream->getSizeInBytes());