Searched refs:getSize (Results 1 - 25 of 251) sorted by relevance

1234567891011

/frameworks/base/media/java/android/media/
H A DDataSource.java42 public long getSize(); method in interface:DataSource
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/
H A DNativeFrame.java40 int capacity = format.getSize();
113 if (ints.length * nativeIntSize() > getFormat().getSize()) {
116 (getFormat().getSize() / nativeIntSize()) + " integers).");
124 return getNativeInts(getFormat().getSize());
130 if (floats.length * nativeFloatSize() > getFormat().getSize()) {
133 (getFormat().getSize() / nativeFloatSize()) + " floats).");
141 return getNativeFloats(getFormat().getSize());
154 } else if (getFormat().getSize() != length) {
156 "Frame size is " + getFormat().getSize() + " bytes, but " +
165 byte[] data = getNativeData(getFormat().getSize());
[all...]
H A DVertexFrame.java36 if (getFormat().getSize() <= 0) {
39 if (!nativeAllocate(getFormat().getSize())) {
91 if (getFormat().getSize() != bytes.length) {
H A DCachedFrameManager.java101 int frameSize = frame.getFormat().getSize();
125 mStorageSize -= frame.getFormat().getSize();
146 mStorageSize -= format.getSize();
/frameworks/webview/chromium/java/com/android/webview/chromium/
H A DWebBackForwardListChromium.java49 if (getSize() == 0) {
69 if (index < 0 || index >= getSize()) {
77 * See {@link android.webkit.WebBackForwardList#getSize}.
80 public synchronized int getSize() { method in class:WebBackForwardListChromium
97 new ArrayList<WebHistoryItemChromium>(getSize());
98 for (int i = 0; i < getSize(); ++i) {
/frameworks/rs/cpu_ref/linkloader/include/
H A DELFSectionProgBits.h71 AR.prologue(sh->getSize());
72 AR.readBytes(chunk.getBuffer(), sh->getSize());
73 AR.epilogue(sh->getSize());
/frameworks/base/core/java/android/webkit/
H A DWebBackForwardList.java65 public synchronized int getSize() { method in class:WebBackForwardList
/frameworks/base/libs/androidfw/
H A DZipUtils.cpp93 unsigned long getSize; local
97 getSize = (compRemaining > kReadBufSize) ?
100 getSize, compRemaining);
102 int cc = TEMP_FAILURE_RETRY(read(fd, readBuf, getSize));
105 } else if (cc != (int) getSize) {
106 ALOGW("inflate read failed (%d vs %ld)", cc, getSize);
110 compRemaining -= getSize;
113 zstream.avail_in = getSize;
206 unsigned long getSize; local
210 getSize
[all...]
/frameworks/rs/cpu_ref/linkloader/include/impl/
H A DELFSectionStrTab.hxx34 st->buf.resize(sh->getSize());
40 AR.prologue(sh->getSize());
41 AR.readBytes(&*st->buf.begin(), sh->getSize());
42 AR.epilogue(sh->getSize());
H A DELFSectionNoBits.hxx33 if (!result->chunk.allocate(sh->getSize())) {
H A DELFSymbol.hxx102 PRINT_LINT("Size", getSize() );
116 setw(7) << getSize() <<
152 allocateSHNCommonData((size_t)getSize(), align);
178 (size_t)getSize()) != 0) {
183 (size_t)getSize());
188 memset(my_addr, '\0', getSize());
193 allocateSHNCommonData((size_t)getSize(), align);
H A DELFSectionBits.hxx44 out() << " Size : " << sh->getSize() << '\n';
/frameworks/base/libs/hwui/
H A DFboCache.h64 uint32_t getSize();
H A DRenderBufferCache.cpp62 uint32_t RenderBufferCache::getSize() { function in class:android::uirenderer::RenderBufferCache
97 mSize -= buffer->getSize();
121 mSize -= buffer->getSize();
141 const uint32_t size = buffer->getSize();
/frameworks/base/core/java/android/text/style/
H A DReplacementSpan.java25 public abstract int getSize(Paint paint, CharSequence text, method in class:ReplacementSpan
/frameworks/base/media/tests/omxjpegdecoder/
H A DSkOmxPixelRef.h34 size_t getSize() const { return mSize; } function in class:android::SkOmxPixelRef
H A DStreamSource.cpp48 status_t StreamSource::getSize(off64_t *size) { function in class:android::StreamSource
H A DStreamSource.h36 virtual status_t getSize(off64_t *size);
/frameworks/native/include/binder/
H A DMemoryBase.h38 size_t getSize() const { return mSize; } function in class:android::MemoryBase
H A DIMemory.h44 virtual size_t getSize() const = 0;
51 size_t virtualSize() const { return getSize(); }
/frameworks/wilhelm/src/android/
H A DBufferQueueSource.h42 virtual status_t getSize(off64_t *size);
/frameworks/av/media/libstagefright/include/
H A DThrottledSource.h45 virtual status_t getSize(off64_t *size) { function in struct:android::ThrottledSource
46 return mSource->getSize(size);
H A DDataUriSource.h39 virtual status_t getSize(off64_t *size) { function in class:android::DataUriSource
/frameworks/base/packages/PrintSpooler/src/com/android/printspooler/
H A DPrintDialogFrame.java47 final int receivedWidth = MeasureSpec.getSize(widthMeasureSpec);
62 final int receivedHeight = MeasureSpec.getSize(heightMeasureSpec);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DDeadZone.java88 private float getSize(long now) { method in class:DeadZone
119 int size = (int) getSize(event.getEventTime());
137 Slog.v(TAG, "poked! size=" + getSize(mLastPokeTime));
156 final int size = (int) getSize(SystemClock.uptimeMillis());

Completed in 538 milliseconds

1234567891011