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

1234

/frameworks/base/libs/utils/
H A DZipUtils.cpp92 unsigned long getSize; local
96 getSize = (compRemaining > kReadBufSize) ?
99 getSize, compRemaining);
101 int cc = read(fd, readBuf, getSize);
102 if (cc != (int) getSize) {
104 cc, getSize);
108 compRemaining -= getSize;
111 zstream.avail_in = getSize;
204 unsigned long getSize; local
208 getSize
[all...]
/frameworks/base/core/java/android/webkit/
H A DWebBackForwardList.java70 if (index < 0 || index >= getSize()) {
80 public synchronized int getSize() { method in class:WebBackForwardList
168 int size = getSize();
/frameworks/base/awt/org/apache/harmony/awt/state/
H A DState.java49 Dimension getSize(); method in interface:State
/frameworks/base/core/java/android/text/style/
H A DReplacementSpan.java25 public abstract int getSize(Paint paint, CharSequence text, method in class:ReplacementSpan
H A DAbsoluteSizeSpan.java64 public int getSize() { method in class:AbsoluteSizeSpan
/frameworks/base/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;
50 size_t virtualSize() const { return getSize(); }
H A DMemoryHeapBase.h62 virtual size_t getSize() const;
/frameworks/base/libs/ui/
H A DEGLUtils.cpp85 const int fbSzA = fbFormatInfo.getSize(PixelFormatInfo::INDEX_ALPHA);
86 const int fbSzR = fbFormatInfo.getSize(PixelFormatInfo::INDEX_RED);
87 const int fbSzG = fbFormatInfo.getSize(PixelFormatInfo::INDEX_GREEN);
88 const int fbSzB = fbFormatInfo.getSize(PixelFormatInfo::INDEX_BLUE);
/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(off_t *size) { function in class:android::StreamSource
H A DStreamSource.h36 virtual status_t getSize(off_t *size);
/frameworks/base/awt/org/apache/harmony/awt/gl/
H A DCommonGraphics2DFactory.java67 return getFontManager().getFontPeer(font.getName(), font.getStyle(), font.getSize());
/frameworks/base/include/media/stagefright/
H A DCachingDataSource.h36 virtual status_t getSize(off_t *size);
H A DFileSource.h38 virtual status_t getSize(off_t *size);
H A DDataSource.h54 virtual status_t getSize(off_t *size);
H A DHTTPDataSource.h46 virtual status_t getSize(off_t *size);
/frameworks/base/core/tests/coretests/src/android/widget/
H A DLabelView.java133 int specSize = MeasureSpec.getSize(measureSpec);
159 int specSize = MeasureSpec.getSize(measureSpec);
/frameworks/base/tools/aapt/
H A DZipFile.cpp797 size_t getSize; local
804 getSize = size > kBufSize ? kBufSize : size;
805 memcpy(inBuf, data, getSize);
806 data = ((const char*)data) + getSize;
807 size -= getSize;
809 getSize = fread(inBuf, 1, kBufSize, srcFp);
815 if (getSize < kBufSize) {
817 (int)getSize);
821 crc = crc32(crc, inBuf, getSize);
824 zstream.avail_in = getSize;
1059 size_t getSize = sizeof(readBuf); local
[all...]
/frameworks/base/awt/java/awt/
H A DDimension.java175 public Dimension getSize() { method in class:Dimension
/frameworks/base/awt/org/apache/harmony/awt/gl/font/
H A DFontFinder.java89 if (fonts[i].getSize() != DEFAULT_FONT_SIZE) {
/frameworks/base/include/ui/
H A DPixelFormat.h104 size_t getSize(size_t ci) const { function in struct:android::PixelFormatInfo
/frameworks/base/libs/binder/
H A DMemoryHeapPmem.cpp148 pmemHeap->getSize(),
159 pmemHeap->getSize(),
191 size_t size = getSize();
209 size_t size = getSize();
/frameworks/base/media/libdrm/mobile2/include/dcf/
H A DDrmDcfCommon.h67 uint64_t getSize(void) const;
/frameworks/base/media/libstagefright/
H A DFileSource.cpp69 status_t FileSource::getSize(off_t *size) { function in class:android::FileSource

Completed in 360 milliseconds

1234