Searched refs:getSize (Results 276 - 300 of 349) sorted by relevance

<<11121314

/frameworks/base/core/java/android/webkit/
H A DWebViewFactory.java446 newVmSize = Math.max(newVmSize, e.getSize());
/frameworks/base/core/java/android/widget/
H A DActivityChooserView.java468 heightMeasureSpec = MeasureSpec.makeMeasureSpec(MeasureSpec.getSize(heightMeasureSpec),
H A DHorizontalScrollView.java1252 Math.max(0, MeasureSpec.getSize(parentWidthMeasureSpec) - horizontalPadding),
1271 Math.max(0, MeasureSpec.getSize(parentWidthMeasureSpec) - usedTotal),
H A DScrollView.java1273 Math.max(0, MeasureSpec.getSize(parentHeightMeasureSpec) - verticalPadding),
1290 Math.max(0, MeasureSpec.getSize(parentHeightMeasureSpec) - usedTotal),
H A DSearchView.java790 int width = MeasureSpec.getSize(widthMeasureSpec);
815 int height = MeasureSpec.getSize(heightMeasureSpec);
H A DStackView.java1176 int widthSpecSize = MeasureSpec.getSize(widthMeasureSpec);
1177 int heightSpecSize = MeasureSpec.getSize(heightMeasureSpec);
H A DLinearLayout.java1095 MeasureSpec.getSize(widthMeasureSpec), MeasureSpec.UNSPECIFIED);
1097 MeasureSpec.getSize(heightMeasureSpec), MeasureSpec.UNSPECIFIED);
/frameworks/base/core/java/com/android/internal/content/
H A DPackageHelper.java275 size += zipEntry.getSize();
/frameworks/base/core/java/com/android/internal/policy/
H A DDecorView.java629 final int widthSize = MeasureSpec.getSize(widthMeasureSpec);
657 final int heightSize = MeasureSpec.getSize(heightMeasureSpec);
673 int height = MeasureSpec.getSize(heightMeasureSpec);
681 int width = MeasureSpec.getSize(widthMeasureSpec);
/frameworks/base/libs/hwui/
H A DPathCache.cpp203 uint32_t PathCache::getSize() { function in class:android::uirenderer::PathCache
H A DPathTessellator.cpp22 for (unsigned int i = 0; i < vertexBuffer.getSize(); i++) { \
27 for (unsigned int i = 0; i < vertexBuffer.getSize(); i++) { \
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
H A DTaskStackViewTouchHandler.java125 protected float getSize(View v) {
/frameworks/base/tools/aapt/
H A DAaptAssets.h171 size_t getSize() const { return mDataSize; } function in class:AaptFile
H A DResource.cpp1397 block.setTo(it.getFile()->getData(), it.getFile()->getSize(), true);
1529 block.setTo(it.getFile()->getData(), it.getFile()->getSize(), true);
1650 err = finalResTable.add(flattenedTable->getData(), flattenedTable->getSize());
1657 err = resTable.add(flattenedTable->getData(), flattenedTable->getSize());
1759 block.setTo(outManifestFile->getData(), outManifestFile->getSize(), true);
/frameworks/opt/datetimepicker/src/com/android/datetimepicker/date/
H A DMonthView.java416 setMeasuredDimension(MeasureSpec.getSize(widthMeasureSpec), mRowHeight * mNumRows
/frameworks/rs/java/tests/ImageProcessing2/src/com/android/rs/image/
H A DImageProcessingActivity2.java718 getWindowManager().getDefaultDisplay().getSize(size);
/frameworks/rs/java/tests/ImageProcessing_jb/src/com/android/rs/image/
H A DImageProcessingActivityJB.java678 getWindowManager().getDefaultDisplay().getSize(size);
/frameworks/support/v7/appcompat/src/android/support/v7/widget/
H A DActivityChooserView.java444 heightMeasureSpec = MeasureSpec.makeMeasureSpec(MeasureSpec.getSize(heightMeasureSpec),
H A DAppCompatSpinner.java425 MeasureSpec.getSize(widthMeasureSpec)),
/frameworks/av/media/libstagefright/matroska/
H A DMatroskaExtractor.cpp66 if (mSource->getSize(&size) != OK) {
803 && mDataSource->getSize(&size) != OK;
/frameworks/base/core/java/android/view/
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)
/frameworks/base/media/java/android/media/
H A DClosedCaptionRenderer.java1310 float fontSize = MeasureSpec.getSize(heightMeasureSpec) * FONT_PADDING_RATIO;
1321 float requiredTextWidth = MeasureSpec.getSize(widthMeasureSpec);
/frameworks/ex/widget/java/com/android/ex/widget/
H A DStaggeredGridView.java617 int widthSize = MeasureSpec.getSize(widthMeasureSpec);
618 int heightSize = MeasureSpec.getSize(heightMeasureSpec);
/frameworks/support/v4/java/android/support/v4/widget/
H A DSlidingPaneLayout.java449 int widthSize = MeasureSpec.getSize(widthMeasureSpec);
451 int heightSize = MeasureSpec.getSize(heightMeasureSpec);
/frameworks/base/core/java/android/inputmethodservice/
H A DKeyboardView.java604 if (MeasureSpec.getSize(widthMeasureSpec) < width + 10) {
605 width = MeasureSpec.getSize(widthMeasureSpec);

Completed in 3164 milliseconds

<<11121314