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

1234567891011>>

/frameworks/base/media/java/android/media/
H A DDataSource.java42 public long getSize(); method in interface:DataSource
H A DIMediaHTTPConnection.aidl30 long getSize();
/frameworks/base/core/java/android/webkit/
H A DWebBackForwardList.java53 public abstract int getSize(); method in class:WebBackForwardList
/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/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/impl/
H A DELFSectionStrTab.hxx33 st->buf.resize(sh->getSize());
39 AR.prologue(sh->getSize());
40 AR.readBytes(&*st->buf.begin(), sh->getSize());
41 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);
/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/rs/cpu_ref/linkloader/include/
H A DELFSectionProgBits.h83 AR.prologue(sh->getSize());
84 AR.readBytes(chunk.getBuffer(), sh->getSize());
85 AR.epilogue(sh->getSize());
/frameworks/av/include/media/
H A DIMediaHTTPConnection.h39 virtual off64_t getSize() = 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/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/core/java/com/android/internal/widget/
H A DPreferenceImageView.java49 final int widthSize = MeasureSpec.getSize(widthMeasureSpec);
59 final int heightSize = MeasureSpec.getSize(heightMeasureSpec);

Completed in 578 milliseconds

1234567891011>>