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

1234567891011>>

/frameworks/base/core/java/android/webkit/
H A DWebBackForwardList.java52 public abstract int getSize(); method in class:WebBackForwardList
/frameworks/base/media/java/android/media/
H A DMediaDataSource.java60 public abstract long getSize() throws IOException; method in class:MediaDataSource
H A DIMediaHTTPConnection.aidl30 long getSize();
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/
H A DNativeFrame.java38 int capacity = format.getSize();
111 if (ints.length * nativeIntSize() > getFormat().getSize()) {
114 (getFormat().getSize() / nativeIntSize()) + " integers).");
122 return getNativeInts(getFormat().getSize());
128 if (floats.length * nativeFloatSize() > getFormat().getSize()) {
131 (getFormat().getSize() / nativeFloatSize()) + " floats).");
139 return getNativeFloats(getFormat().getSize());
152 } else if (getFormat().getSize() != length) {
154 "Frame size is " + getFormat().getSize() + " bytes, but " +
163 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/base/core/java/android/app/backup/
H A DFullBackupDataOutput.java37 public long getSize() { return mSize; } method in class:FullBackupDataOutput
/frameworks/base/libs/hwui/
H A DCaches.cpp180 textureCache.getSize(), textureCache.getMaxSize());
182 layerCache.getSize(), layerCache.getMaxSize(), layerCache.getCount());
199 renderBufferCache.getSize(), renderBufferCache.getMaxSize());
201 gradientCache.getSize(), gradientCache.getMaxSize());
203 pathCache.getSize(), pathCache.getMaxSize());
205 tessellationCache.getSize(), tessellationCache.getMaxSize());
206 log.appendFormat(" TextDropShadowCache %8d / %8d\n", dropShadowCache.getSize(),
209 patchCache.getSize(), patchCache.getMaxSize());
220 fboCache.getSize(), fboCache.getMaxSize());
222 total += textureCache.getSize();
[all...]
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/av/include/media/
H A DIMediaHTTPConnection.h39 virtual off64_t getSize() = 0;
H A DIDataSource.h40 virtual status_t getSize(off64_t* size) = 0;
/frameworks/av/include/media/stagefright/
H A DDataURISource.h33 virtual status_t getSize(off64_t *size);
/frameworks/av/media/img_utils/include/img_utils/
H A DByteArrayOutput.h67 virtual size_t getSize() const;
H A DTiffWritable.h53 virtual size_t getSize() const = 0;
/frameworks/av/media/img_utils/src/
H A DByteArrayOutput.cpp45 size_t ByteArrayOutput::getSize() const { function in class:android::img_utils::ByteArrayOutput
/frameworks/base/core/java/android/text/style/
H A DReplacementSpan.java25 public abstract int getSize(Paint paint, CharSequence text, method in class:ReplacementSpan
/frameworks/compile/mclinker/lib/Target/
H A DELFAttributeValue.cpp18 size_t ELFAttributeValue::getSize() const { function in class:mcld::ELFAttributeValue
/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 DCallbackDataSource.h38 virtual status_t getSize(off64_t *size);
58 virtual status_t getSize(off64_t* size);
H A DThrottledSource.h45 virtual status_t getSize(off64_t *size) { function in struct:android::ThrottledSource
46 return mSource->getSize(size);
/frameworks/base/core/java/com/android/internal/widget/
H A DPreferenceImageView.java49 final int widthSize = MeasureSpec.getSize(widthMeasureSpec);
59 final int heightSize = MeasureSpec.getSize(heightMeasureSpec);
/frameworks/av/media/libstagefright/
H A DCallbackDataSource.cpp85 status_t CallbackDataSource::getSize(off64_t *size) { function in class:android::CallbackDataSource
86 status_t err = mIDataSource->getSize(size);
152 status_t TinyCacheSource::getSize(off64_t *size) { function in class:android::TinyCacheSource
153 return mSource->getSize(size);

Completed in 676 milliseconds

1234567891011>>