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

123

/frameworks/base/libs/hwui/
H A DShapeCache.h335 uint32_t getSize();
458 uint32_t ShapeCache<Entry>::getSize() { function in class:android::uirenderer::ShapeCache
H A DDisplayListRenderer.cpp309 size_t DisplayList::getSize() { function in class:android::uirenderer::DisplayList
/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...]
H A DAaptAssets.h187 size_t getSize() const { return mDataSize; } function in class:AaptFile
/frameworks/native/libs/gui/
H A DSurfaceComposerClient.cpp646 size_t ScreenshotClient::getSize() const { function in class:android::ScreenshotClient
647 return mHeap->getSize();
/frameworks/native/libs/ui/
H A DRegion.cpp584 size_t Region::getSize() const { function in class:android::Region
/frameworks/base/core/jni/android/graphics/
H A DTextLayoutCache.cpp71 size_t totalSizeToDelete = text.getSize() + desc->getSize();
122 size_t size = key.getSize() + value->getSize();
205 bytes += mCache.getKeyAt(i).getSize() + mCache.getValueAt(i)->getSize();
301 size_t TextLayoutCacheKey::getSize() const { function in class:android::TextLayoutCacheKey
316 size_t TextLayoutValue::getSize() const { function in class:android::TextLayoutValue
/frameworks/base/include/androidfw/
H A DInput.h406 inline float getSize(size_t pointerIndex) const { function in class:android::MotionEvent
/frameworks/compile/slang/
H A Dslang_rs_export_type.h182 virtual unsigned getSize() const { return 1; } function in class:slang::RSExportType
322 virtual unsigned getSize() const { return (GetSizeInBits(this) >> 3); } function in class:slang::RSExportPrimitiveType
468 virtual unsigned getSize() const { return mSize; } function in class:slang::RSExportConstantArrayType
/frameworks/base/media/jni/
H A Dandroid_media_MediaExtractor.cpp62 mGetSizeMethod = env->GetMethodID(datasourceclass, "getSize", "()J");
98 virtual status_t getSize(off64_t *size) { function in class:android::JavaDataSourceBridge
/frameworks/av/media/libstagefright/
H A DMPEG4Extractor.cpp105 virtual status_t getSize(off64_t *size);
164 status_t MPEG4DataSource::getSize(off64_t *size) { function in class:android::MPEG4DataSource
165 return mSource->getSize(size);
/frameworks/base/core/java/android/view/
H A DMotionEvent.java508 * @see #getSize(int)
1719 * and {@link #getSize(int)} to get information about the pointer that has
1845 * {@link #getSize(int)} for the first pointer index (may be an
1850 public final float getSize() { method in class:MotionEvent
2030 public final float getSize(int pointerIndex) { method in class:MotionEvent
2348 * @see #getSize()
2502 * Returns a historical size coordinate, as per {@link #getSize(int)}, that
2512 * @see #getSize(int)
H A DView.java3892 int size = scrollBar.getSize(true);
3914 int size = scrollBar.getSize(false);
11406 int size = scrollBar.getSize(false);
11427 int size = scrollBar.getSize(true);
15574 * @see android.view.View.MeasureSpec#getSize(int)
15636 int specSize = MeasureSpec.getSize(measureSpec);
15667 int specSize = MeasureSpec.getSize(measureSpec);
17281 public static int getSize(int measureSpec) { method in class:View.MeasureSpec
17294 int size = getSize(measureSpec);

Completed in 317 milliseconds

123