Searched defs:getSize (Results 51 - 75 of 104) sorted by relevance

12345

/frameworks/base/libs/hwui/renderstate/
H A DOffscreenBufferPool.h113 uint32_t getSize() { return mSize; } function in class:android::uirenderer::OffscreenBufferPool
/frameworks/opt/chips/src/com/android/ex/chips/recipientchip/
H A DInvisibleRecipientChip.java102 public int getSize(final Paint paint, final CharSequence text, final int start, final int end, method in class:InvisibleRecipientChip
H A DReplacementDrawableSpan.java45 public int getSize(Paint paint, CharSequence text, int i, int i2, Paint.FontMetricsInt fm) { method in class:ReplacementDrawableSpan
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DStaggeredGrid.java92 public final int getSize() { method in class:StaggeredGrid
/frameworks/support/v17/leanback/tests/java/android/support/v17/leanback/widget/
H A DGridTest.java69 public int getSize(int index) { method in class:GridTest.Provider
/frameworks/base/core/java/android/nfc/tech/
H A DMifareClassic.java223 public int getSize() { method in class:MifareClassic
/frameworks/base/core/java/android/os/
H A DMemoryFile.java257 public static int getSize(FileDescriptor fd) throws IOException { method in class:MemoryFile
/frameworks/base/core/java/android/widget/
H A DScrollBarDrawable.java282 public int getSize(boolean vertical) { method in class:ScrollBarDrawable
/frameworks/base/libs/androidfw/
H A DZipUtils.cpp100 unsigned long getSize; local
104 getSize = (compRemaining > kReadBufSize) ?
107 getSize, compRemaining);
110 const unsigned long nextSize = reader.read(&nextBuffer, getSize);
112 if (nextSize < getSize || nextBuffer == NULL) {
113 ALOGD("inflate read failed (%ld vs %ld)\n", nextSize, getSize);
/frameworks/base/libs/hwui/
H A DGradientCache.cpp85 uint32_t GradientCache::getSize() { function in class:android::uirenderer::GradientCache
159 while (getSize() + size > mMaxSize) {
161 "Ran out of things to remove from the cache? getSize() = %" PRIu32
163 getSize(), size, mMaxSize, info.width);
H A DPatch.cpp34 uint32_t Patch::getSize() const { function in class:android::uirenderer::Patch
H A DPatchCache.h60 uint32_t getSize() const { function in class:android::uirenderer::PatchCache
H A DVertexBuffer.h129 unsigned int getSize() const { return mByteCount; } function in class:android::uirenderer::VertexBuffer
H A DPathCache.cpp200 uint32_t PathCache::getSize() { function in class:android::uirenderer::PathCache
/frameworks/base/media/java/android/media/
H A DMediaHTTPConnection.java369 public long getSize() { method in class:MediaHTTPConnection
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/
H A DSerializedFrame.java79 public final int getSize() { method in class:SerializedFrame.DirectByteOutputStream
H A DFrameFormat.java150 public int getSize() { method in class:FrameFormat
190 return 4211 ^ mBaseType ^ mBytesPerSample ^ getSize();
436 && getSize() == format.getSize()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DDeadZone.java97 private float getSize(long now) { method in class:DeadZone
135 int size = (int) getSize(event.getEventTime());
165 Slog.v(TAG, "poked! size=" + getSize(mLastPokeTime));
184 final int size = (int) getSize(SystemClock.uptimeMillis());
/frameworks/native/opengl/libs/EGL/
H A DBlobCache.cpp111 size_t newTotalSize = mTotalSize + valueSize - oldValueBlob->getSize();
151 size_t valueBlobSize = valueBlob->getSize();
171 size += align4(sizeof(EntryHeader) + keyBlob->getSize() + valueBlob->getSize());
197 size_t keySize = keyBlob->getSize();
198 size_t valueSize = valueBlob->getSize();
297 mTotalSize -= entry.getKey()->getSize() + entry.getValue()->getSize();
333 size_t BlobCache::Blob::getSize() const { function in class:android::BlobCache::Blob
/frameworks/opt/bluetooth/src/android/bluetooth/client/map/
H A DBluetoothMapMessage.java279 public int getSize() { method in class:BluetoothMapMessage
/frameworks/av/media/img_utils/src/
H A DTiffIfd.cpp120 valueOffset += mEntries[i]->getSize();
124 uint32_t footer = (mNextIfd != NULL) ? offset + getSize() : 0;
136 if (mEntries[i]->getSize() > OFFSET_SIZE) {
141 size_t actual = mEntries[i]->getSize();
148 assert(out->getCurrentOffset() == offset + getSize());
153 size_t TiffIfd::getSize() const { function in class:android::img_utils::TiffIfd
158 total += mEntries[i]->getSize();
/frameworks/av/media/libstagefright/
H A DHevcUtils.cpp137 size_t HevcParameterSets::getSize(size_t index) { function in class:android::HevcParameterSets
393 size += 2 + getSize(j);
467 header[0] = (getSize(j) >> 8) & 0xff;
468 header[1] = getSize(j) & 0xff;
472 header += (2 + getSize(j));
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
H A DFrameManager.java127 public int getSize() { method in class:FrameManager.BackingCache
149 public int getSize() { method in class:FrameManager.BackingCacheNone
182 mSize -= backing.getSize();
193 if (reserve(backing.getSize())) {
225 mSize -= dropped.getSize();
303 return mCache.getSize();
/frameworks/compile/mclinker/lib/Target/AArch64/
H A DAArch64Relocator.cpp89 Relocator::Size AArch64Relocator::getSize(Relocation::Type pType) const { function in class:mcld::AArch64Relocator
515 A += pReloc.target() & get_mask(pParent.getSize(pReloc.type()));
535 helper_check_signed_overflow(X, pParent.getSize(pReloc.type())))
/frameworks/native/libs/binder/
H A DIMemory.cpp88 virtual size_t getSize() const;
196 size_t heapSize = mHeap->getSize();
363 size_t BpMemoryHeap::getSize() const { function in class:android::BpMemoryHeap
395 reply->writeInt32(getSize());

Completed in 413 milliseconds

12345