Searched defs:contentSize (Results 1 - 22 of 22) sorted by relevance

/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/
H A DUserDataBox.java41 public void parse(ReadableByteChannel readableByteChannel, ByteBuffer header, long contentSize, BoxParser boxParser) throws IOException { argument
42 super.parse(readableByteChannel, header, contentSize, boxParser); //To change body of overridden methods use File | Settings | File Templates.
H A DBox.java50 void parse(ReadableByteChannel readableByteChannel, ByteBuffer header, long contentSize, BoxParser boxParser) throws IOException; argument
H A DFreeBox.java95 public void parse(ReadableByteChannel readableByteChannel, ByteBuffer header, long contentSize, BoxParser boxParser) throws IOException { argument
96 if (readableByteChannel instanceof FileChannel && contentSize > 1024 * 1024) {
98 data = ((FileChannel) readableByteChannel).map(FileChannel.MapMode.READ_ONLY, ((FileChannel) readableByteChannel).position(), contentSize);
99 ((FileChannel) readableByteChannel).position(((FileChannel) readableByteChannel).position() + contentSize);
101 assert contentSize < Integer.MAX_VALUE;
102 data = ChannelHelper.readFully(readableByteChannel, contentSize);
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/
H A DIsoFile.java76 public void parse(ReadableByteChannel inFC, ByteBuffer header, long contentSize, AbstractBoxParser abstractBoxParser) throws IOException { argument
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/mdat/
H A DMediaDataBox.java61 private long contentSize; field in class:MediaDataBox
99 transfer(fileChannel, startPosition - header.limit(), contentSize + header.limit(), writableByteChannel);
134 size += contentSize;
138 public void parse(ReadableByteChannel readableByteChannel, ByteBuffer header, long contentSize, BoxParser boxParser) throws IOException { argument
140 this.contentSize = contentSize;
142 if (readableByteChannel instanceof FileChannel && (contentSize > AbstractBox.MEM_MAP_THRESHOLD)) {
145 ((FileChannel) readableByteChannel).position(((FileChannel) readableByteChannel).position() + contentSize);
147 content = ChannelHelper.readFully(readableByteChannel, l2i(contentSize));
170 cacheEntry = fileChannel.map(FileChannel.MapMode.READ_ONLY, startPosition + offset, Math.min(BUFFER_SIZE, contentSize
[all...]
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/sampleentry/
H A DSampleEntry.java109 public void parse(ReadableByteChannel readableByteChannel, ByteBuffer header, long contentSize, BoxParser boxParser) throws IOException { argument
111 super.parse(readableByteChannel, header, contentSize, boxParser);
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/
H A DAbstractBox.java98 * @param contentSize expected contentSize of the box
103 public void parse(ReadableByteChannel readableByteChannel, ByteBuffer header, long contentSize, BoxParser boxParser) throws IOException { argument
104 if (readableByteChannel instanceof FileChannel && contentSize > MEM_MAP_THRESHOLD) {
109 content = ((FileChannel) readableByteChannel).map(FileChannel.MapMode.READ_ONLY, ((FileChannel) readableByteChannel).position(), contentSize);
110 ((FileChannel) readableByteChannel).position(((FileChannel) readableByteChannel).position() + contentSize);
112 assert contentSize < Integer.MAX_VALUE;
113 content = ChannelHelper.readFully(readableByteChannel, contentSize);
H A DAbstractContainerBox.java46 long contentSize = 0;
48 contentSize += boxe.getSize();
50 return contentSize;
104 public void parse(ReadableByteChannel readableByteChannel, ByteBuffer header, long contentSize, BoxParser boxParser) throws IOException { argument
106 super.parse(readableByteChannel, header, contentSize, boxParser);
H A DFullContainerBox.java68 long contentSize = 4; // flags and version
70 contentSize += boxe.getSize();
72 return contentSize;
94 public void parse(ReadableByteChannel readableByteChannel, ByteBuffer header, long contentSize, BoxParser boxParser) throws IOException { argument
96 super.parse(readableByteChannel, header, contentSize, boxParser);
/external/webkit/Source/WebKit/android/WebCoreSupport/
H A DCacheResult.cpp68 int64 CacheResult::contentSize() const function in class:android::CacheResult
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/builder/
H A DDefaultMp4Builder.java380 long contentSize = 0; field in class:DefaultMp4Builder.InterleaveChunkMdat
390 public void parse(ReadableByteChannel readableByteChannel, ByteBuffer header, long contentSize, BoxParser boxParser) throws IOException { argument
413 contentSize += s.limit();
444 return 16 + contentSize;
447 private boolean isSmallBox(long contentSize) { argument
448 return (contentSize + 8) < 4294967296L;
/external/webkit/Source/WebCore/platform/graphics/texmap/
H A DTextureMapper.h77 inline IntSize contentSize() const { return m_contentSize; } function in class:WebCore::BitmapTexture
106 drawTexture(texture, IntRect(0, 0, texture.contentSize().width(), texture.contentSize().height()), matrix, opacity, 0);
/external/skia/src/images/
H A DSkImageDecoder_libwebp.cpp65 const uint32_t contentSize = stream->getLength(); local
67 const uint32_t read_bytes = (contentSize < WEBP_VP8_HEADER_SIZE) ?
68 contentSize : WEBP_VP8_HEADER_SIZE;
175 const uint32_t contentSize = stream->getLength(); local
176 const uint32_t read_buffer_size = (contentSize < WEBP_IDECODE_BUFFER_SZ) ?
177 contentSize : WEBP_IDECODE_BUFFER_SZ;
186 uint32_t bytes_remaining = contentSize;
/external/webkit/Source/WebKit/qt/declarative/
H A Dqdeclarativewebview.cpp484 QSize contentSize = webPage->preferredContentsSize(); local
486 contentSize.setWidth(width());
488 contentSize.setHeight(height());
489 if (contentSize != webPage->preferredContentsSize())
490 webPage->setPreferredContentsSize(contentSize);
/external/skia/src/pdf/
H A DSkPDFDevice.cpp484 static inline SkBitmap makeContentBitmap(const SkISize& contentSize, argument
491 drawingSize.set(SkIntToScalar(contentSize.fWidth),
492 SkIntToScalar(contentSize.fHeight));
499 bitmap.setConfig(SkBitmap::kNo_Config, abs(contentSize.fWidth),
500 abs(contentSize.fHeight));
507 SkPDFDevice::SkPDFDevice(const SkISize& pageSize, const SkISize& contentSize, argument
509 : SkDevice(makeContentBitmap(contentSize, &initialTransform)),
511 fContentSize(contentSize),
/external/webkit/Source/WebCore/platform/qt/
H A DRenderThemeQt.cpp498 QSize contentSize = fm.size(Qt::TextShowMnemonic, QString::fromLatin1("X")); local
500 &styleOption, contentSize, 0);
/external/webkit/Source/WebKit2/WebProcess/WebPage/
H A DWebPage.cpp611 IntSize contentSize = frame->view()->contentsSize(); local
612 if (contentSize == m_viewSize)
615 m_viewSize = contentSize;
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.ui.forms_3.5.2.r36_v20100702.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.jface_3.6.1.M20100825-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.ui.workbench_3.6.1.M20101117-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.swt.gtk.linux.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.swt.win32.win32.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 1986 milliseconds