Searched defs:getSize (Results 26 - 50 of 94) sorted by path

1234

/frameworks/base/core/java/android/os/health/
H A DHealthKeys.java148 public int getSize(int type) { method in class:HealthKeys.Constants
/frameworks/base/core/java/android/print/
H A DPageRange.java106 public int getSize() { method in class:PageRange
/frameworks/base/core/java/android/text/
H A DAutoText.java120 public static int getSize(View view) { method in class:AutoText
122 return getInstance(view).getSize();
128 private int getSize() { method in class:AutoText
/frameworks/base/core/java/android/text/style/
H A DAbsoluteSizeSpan.java74 public int getSize() { method in class:AbsoluteSizeSpan
H A DDynamicDrawableSpan.java74 public int getSize(Paint paint, CharSequence text, method in class:DynamicDrawableSpan
H A DReplacementSpan.java42 public abstract int getSize(@NonNull Paint paint, CharSequence text, method in class:ReplacementSpan
/frameworks/base/core/java/android/view/
H A DDisplay.java50 * application display area: {@link #getSize}, {@link #getRectSize} and {@link #getMetrics}.</li>
87 // Applications should now be using getSize() instead.
484 public void getSize(Point outSize) { method in class:Display
497 * @see #getSize(Point)
560 * @deprecated Use {@link #getSize(Point)} instead.
571 * @deprecated Use {@link #getSize(Point)} instead.
H A DMotionEvent.java567 * @see #getSize(int)
1848 * and {@link #getSize(int)} to get information about the pointer that has
1988 * {@link #getSize(int)} for the first pointer index (may be an
1993 public final float getSize() { method in class:MotionEvent
2171 public final float getSize(int pointerIndex) { method in class:MotionEvent
2523 * @see #getSize()
2677 * Returns a historical size coordinate, as per {@link #getSize(int)}, that
2687 * @see #getSize(int)
H A DView.java4986 int size = scrollBar.getSize(true);
5008 int size = scrollBar.getSize(false);
19716 final boolean matchesSpecSize = getMeasuredWidth() == MeasureSpec.getSize(widthMeasureSpec)
19717 && getMeasuredHeight() == MeasureSpec.getSize(heightMeasureSpec);
19802 * @see android.view.View.MeasureSpec#getSize(int)
19891 final int specSize = MeasureSpec.getSize(measureSpec);
19923 int specSize = MeasureSpec.getSize(measureSpec);
22172 public static int getSize(int measureSpec) { method in class:View.MeasureSpec
22178 int size = getSize(measureSpec);
22201 int size = getSize(measureSpe
[all...]
/frameworks/base/core/java/android/webkit/
H A DWebBackForwardList.java52 public abstract int getSize(); method in class:WebBackForwardList
/frameworks/base/core/java/android/widget/
H A DScrollBarDrawable.java282 public int getSize(boolean vertical) { method in class:ScrollBarDrawable
/frameworks/base/core/tests/coretests/src/android/text/method/
H A DEditorState.java66 public int getSize(Paint paint, CharSequence text, int start, int end, method in class:EditorState.MockReplacementSpan
/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 DFboCache.cpp41 uint32_t FboCache::getSize() { function in class:android::uirenderer::FboCache
H A DGradientCache.cpp84 uint32_t GradientCache::getSize() { function in class:android::uirenderer::GradientCache
158 while (getSize() + size > mMaxSize) {
160 "Ran out of things to remove from the cache? getSize() = %" PRIu32
162 getSize(), size, mMaxSize, info.width);
H A DLayerCache.cpp49 uint32_t LayerCache::getSize() { function in class:android::uirenderer::LayerCache
H A DPatch.cpp34 uint32_t Patch::getSize() const { function in class:android::uirenderer::Patch
H A DPatchCache.h63 uint32_t getSize() const { function in class:android::uirenderer::PatchCache
H A DPathCache.cpp203 uint32_t PathCache::getSize() { function in class:android::uirenderer::PathCache
H A DPixelBuffer.h143 uint32_t getSize() const { function in class:android::uirenderer::PixelBuffer
H A DRenderBuffer.h118 uint32_t getSize() const { function in struct:android::uirenderer::RenderBuffer
H A DRenderBufferCache.cpp55 uint32_t RenderBufferCache::getSize() { function in class:android::uirenderer::RenderBufferCache
85 mSize -= buffer->getSize();
108 mSize -= buffer->getSize();
128 const uint32_t size = buffer->getSize();
H A DTessellationCache.cpp163 unsigned int getSize() { function in class:android::uirenderer::TessellationCache::Buffer
165 return mBuffer->getSize();
310 uint32_t TessellationCache::getSize() { function in class:android::uirenderer::TessellationCache
314 size += iter.value()->getSize();
329 uint32_t size = getSize();
331 size -= mCache.peekOldestValue()->getSize();
H A DTextDropShadowCache.cpp115 uint32_t TextDropShadowCache::getSize() { function in class:android::uirenderer::TextDropShadowCache
H A DTextureCache.cpp57 uint32_t TextureCache::getSize() { function in class:android::uirenderer::TextureCache

Completed in 6036 milliseconds

1234