Searched refs:getSize (Results 151 - 175 of 308) sorted by relevance

1234567891011>>

/frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
H A DActionBarContainer.java254 Math.min(mHeight, MeasureSpec.getSize(heightMeasureSpec)), MeasureSpec.AT_MOST);
272 MeasureSpec.getSize(heightMeasureSpec) : Integer.MAX_VALUE;
H A DScrollingTabContainerView.java102 mMaxTabWidth = (int) (MeasureSpec.getSize(widthMeasureSpec) * 0.4f);
104 mMaxTabWidth = MeasureSpec.getSize(widthMeasureSpec) / 2;
118 if (mTabLayout.getMeasuredWidth() > MeasureSpec.getSize(widthMeasureSpec)) {
/frameworks/base/core/java/com/android/internal/widget/
H A DScrollingTabContainerView.java95 mMaxTabWidth = (int) (MeasureSpec.getSize(widthMeasureSpec) * 0.4f);
97 mMaxTabWidth = MeasureSpec.getSize(widthMeasureSpec) / 2;
111 if (mTabLayout.getMeasuredWidth() > MeasureSpec.getSize(widthMeasureSpec)) {
H A DActionBarContainer.java276 Math.min(mHeight, MeasureSpec.getSize(heightMeasureSpec)), MeasureSpec.AT_MOST);
295 MeasureSpec.getSize(heightMeasureSpec) : Integer.MAX_VALUE;
/frameworks/base/tools/aapt/
H A DStringPool.cpp386 if (pool->getSize() > 0) {
391 ssize_t res = pool->writeData(block->getData(), block->getSize());
549 header->header.size = htodl(pool->getSize());
H A DResourceTable.cpp107 tree.setTo(target->getData(), target->getSize());
2914 const size_t typeStringsStart = data->getSize();
2916 ssize_t amt = data->writeData(strFile->getData(), strFile->getSize());
2924 const size_t keyStringsStart = data->getSize();
2926 amt = data->writeData(strFile->getData(), strFile->getSize());
2970 const size_t typeSpecStart = data->getSize();
3060 const size_t typeStart = data->getSize();
3113 index[ei] = htodl(data->getSize()-typeStart-typeSize);
3129 tHeader->header.size = htodl(data->getSize()-typeStart);
3158 header->header.size = htodl(data->getSize());
[all...]
/frameworks/compile/mclinker/lib/Target/AArch64/
H A DAArch64Relocator.cpp90 Relocator::Size AArch64Relocator::getSize(Relocation::Type pType) const function in class:AArch64Relocator
482 A += pReloc.target() & get_mask(pParent.getSize(pReloc.type()));
502 helper_check_signed_overflow(X, pParent.getSize(pReloc.type())))
/frameworks/native/libs/input/tests/
H A DInputEvent_test.cpp387 ASSERT_EQ(213, event->getSize(0));
388 ASSERT_EQ(223, event->getSize(1));
498 ASSERT_EQ(213, event.getSize(0));
/frameworks/av/services/camera/libcameraservice/api1/client2/
H A DCallbackProcessor.cpp373 0 : (mCallbackHeap->mHeap->getSize() / kCallbackHeapCount);
378 if (mCallbackHeap->mHeap->getSize() == 0) {
/frameworks/base/packages/PrintSpooler/src/com/android/printspooler/widget/
H A DPrintContentView.java244 final int heightSize = MeasureSpec.getSize(heightMeasureSpec);
267 setMeasuredDimension(resolveSize(MeasureSpec.getSize(widthMeasureSpec), widthMeasureSpec),
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
H A DQSTileView.java240 final int w = MeasureSpec.getSize(widthMeasureSpec);
241 final int h = MeasureSpec.getSize(heightMeasureSpec);
/frameworks/compile/slang/
H A Dslang_rs_reflection.cpp960 if ((EPT->getSize() < 4) || EV->isUnsigned()) {
975 mOut.indent() << FPName << " = new FieldPacker(" << EPT->getSize()
1173 mOut.indent() << "__dimArr[0] = " << ET->getSize() << ";\n";
1269 << " < " << ECAT->getSize() << "; " << IndexVarName << "++)";
1350 << ECAT->getSize() << "];\n";
1354 mOut.indent() << "for (int $ct = 0; $ct < " << ECAT->getSize()
1815 genAddElement(ECAT->getElementType(), VarName, ECAT->getSize());
1826 ArraySize = ECAT->getSize();
/frameworks/support/v4/java/android/support/v4/view/
H A DPagerTitleStrip.java424 final int widthSize = MeasureSpec.getSize(widthMeasureSpec);
425 final int heightSize = MeasureSpec.getSize(heightMeasureSpec);
/frameworks/support/v7/mediarouter/src/android/support/v7/app/
H A DMediaRouteButton.java425 final int widthSize = MeasureSpec.getSize(widthMeasureSpec);
426 final int heightSize = MeasureSpec.getSize(heightMeasureSpec);
/frameworks/av/media/libstagefright/
H A DAMRExtractor.cpp141 if (mDataSource->getSize(&streamSize) == OK) {
H A DDataSource.cpp103 status_t DataSource::getSize(off64_t *size) { function in class:android::DataSource
/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/text/
H A DMeasuredText.java206 wid = replacement.getSize(workPaint, mText, mTextStart + mPos,
/frameworks/base/core/java/android/view/
H A DDisplay.java40 * application display area: {@link #getSize}, {@link #getRectSize} and {@link #getMetrics}.</li>
77 // Applications should now be using getSize() instead.
449 public void getSize(Point outSize) { method in class:Display
462 * @see #getSize(Point)
525 * @deprecated Use {@link #getSize(Point)} instead.
536 * @deprecated Use {@link #getSize(Point)} instead.
/frameworks/base/core/java/android/widget/
H A DScrollBarDrawable.java233 public int getSize(boolean vertical) { method in class:ScrollBarDrawable
/frameworks/base/core/jni/android/graphics/
H A DBitmap.cpp601 size_t size = bitmap->getSize();
654 size_t size = bitmap->getSize();
789 memcpy(abp.pointer(), src, bitmap->getSize());
802 memcpy(dst, abp.pointer(), bitmap->getSize());
/frameworks/base/libs/hwui/
H A DPatch.cpp46 uint32_t Patch::getSize() const { function in class:android::uirenderer::Patch
H A DPathCache.h187 uint32_t getSize();
H A DTextDropShadowCache.cpp131 uint32_t TextDropShadowCache::getSize() { function in class:android::uirenderer::TextDropShadowCache

Completed in 1633 milliseconds

1234567891011>>