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/chromium_org/skia/ext/
H A Dvector_platform_device_skia.cc24 const SkISize& contentSize,
26 : SkPDFDevice(pageSize, contentSize, initialTransform) {
22 VectorPlatformDeviceSkia( const SkISize& pageSize, const SkISize& contentSize, const SkMatrix& initialTransform) argument
/external/chromium_org/third_party/WebKit/Source/web/
H A DColorChooserPopupUIController.cpp78 IntSize ColorChooserPopupUIController::contentSize() function in class:blink::ColorChooserPopupUIController
H A DDateTimeChooserImpl.cpp79 WebCore::IntSize DateTimeChooserImpl::contentSize() function in class:blink::DateTimeChooserImpl
/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/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/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLPlugInElement.cpp449 IntSize contentSize = roundedIntSize(LayoutSize(renderer->contentWidth(), renderer->contentHeight())); local
451 RefPtr<Widget> widget = frame->loader().client()->createPlugin(contentSize, this, url, paramNames, paramValues, mimeType, loadManually);
/external/chromium_org/third_party/skia/src/pdf/
H A DSkPDFDevice.cpp712 static inline SkBitmap makeContentBitmap(const SkISize& contentSize, argument
719 drawingSize.set(SkIntToScalar(contentSize.fWidth),
720 SkIntToScalar(contentSize.fHeight));
731 bitmap.setConfig(SkBitmap::kNo_Config, abs(contentSize.fWidth),
732 abs(contentSize.fHeight));
739 SkPDFDevice::SkPDFDevice(const SkISize& pageSize, const SkISize& contentSize, argument
741 : SkBitmapDevice(makeContentBitmap(contentSize, &initialTransform)),
743 fContentSize(contentSize),
/external/skia/gm/
H A Dgmmain.cpp658 SkISize contentSize = local
661 dev = new SkPDFDevice(pageSize, contentSize, initialTransform);
/external/skia/src/pdf/
H A DSkPDFDevice.cpp712 static inline SkBitmap makeContentBitmap(const SkISize& contentSize, argument
719 drawingSize.set(SkIntToScalar(contentSize.fWidth),
720 SkIntToScalar(contentSize.fHeight));
731 bitmap.setConfig(SkBitmap::kNo_Config, abs(contentSize.fWidth),
732 abs(contentSize.fHeight));
739 SkPDFDevice::SkPDFDevice(const SkISize& pageSize, const SkISize& contentSize, argument
741 : SkBitmapDevice(makeContentBitmap(contentSize, &initialTransform)),
743 fContentSize(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 340 milliseconds